From 1849c38dd72c4713799a9d94178626932570a63e Mon Sep 17 00:00:00 2001 From: Dapeng Zhang Date: Tue, 12 Nov 2024 10:32:25 +0800 Subject: [PATCH] change the attributes in generated cases (#5150) * change the attributes * regen * regen --- .../Generation/Samples/MgmtSampleWriter.cs | 10 +- ...culateTemplateHashWithQueryParameters.json | 52 + .../specification/mockSwagger/resources.json | 42 + .../src/Generated/CodeModel.yaml | 9401 +++++++++-------- .../Extensions/MgmtMockAndSampleExtensions.cs | 20 +- ...MockableMgmtMockAndSampleTenantResource.cs | 20 +- ...eCalculateTemplateHashDeploymentOptions.cs | 69 + .../DeploymentsRestOperations.cs | 72 +- .../Sample_DeletedManagedHsmCollection.cs | 18 +- .../Sample_DeletedManagedHsmResource.cs | 13 +- .../Samples/Sample_DeletedVaultResource.cs | 8 +- .../Sample_DiskEncryptionSetCollection.cs | 57 +- .../Sample_DiskEncryptionSetResource.cs | 40 +- .../Sample_FirewallPolicyCollection.cs | 35 +- .../Samples/Sample_FirewallPolicyResource.cs | 30 +- ...wallPolicyRuleCollectionGroupCollection.cs | 115 +- ...rewallPolicyRuleCollectionGroupResource.cs | 53 +- ..._GuestConfigurationAssignmentCollection.cs | 30 +- ...le_GuestConfigurationAssignmentResource.cs | 18 +- .../Samples/Sample_ManagedHsmCollection.cs | 30 +- .../Samples/Sample_ManagedHsmResource.cs | 32 +- ...mplePrivateEndpointConnectionCollection.cs | 30 +- ...SamplePrivateEndpointConnectionResource.cs | 16 +- ...MhsmPrivateEndpointConnectionCollection.cs | 30 +- ...e_MhsmPrivateEndpointConnectionResource.cs | 16 +- .../Sample_RoleAssignmentCollection.cs | 30 +- .../Samples/Sample_RoleAssignmentResource.cs | 23 +- .../Sample_SubscriptionResourceExtensions.cs | 15 +- .../Sample_TenantResourceExtensions.cs | 79 +- .../Samples/Sample_VaultCollection.cs | 40 +- .../Generated/Samples/Sample_VaultResource.cs | 56 +- ..._VirtualMachineExtensionImageCollection.cs | 63 +- ...le_VirtualMachineExtensionImageResource.cs | 11 +- .../Generated/Samples/Sample_FooCollection.cs | 23 +- .../Generated/Samples/Sample_FooResource.cs | 11 +- 35 files changed, 5506 insertions(+), 5102 deletions(-) create mode 100644 test/TestProjects/MgmtMockAndSample/specification/mockSwagger/examples/resources/CalculateTemplateHashWithQueryParameters.json create mode 100644 test/TestProjects/MgmtMockAndSample/src/Generated/Models/TenantResourceCalculateTemplateHashDeploymentOptions.cs diff --git a/src/AutoRest.CSharp/MgmtTest/Generation/Samples/MgmtSampleWriter.cs b/src/AutoRest.CSharp/MgmtTest/Generation/Samples/MgmtSampleWriter.cs index 815252414db..0b78ee6cb11 100644 --- a/src/AutoRest.CSharp/MgmtTest/Generation/Samples/MgmtSampleWriter.cs +++ b/src/AutoRest.CSharp/MgmtTest/Generation/Samples/MgmtSampleWriter.cs @@ -67,9 +67,9 @@ private void WriteSample(Sample sample) } // write the attributes - _writer.Line($"// {sample.Name}"); - _writer.Line($"[NUnit.Framework.Test]"); - _writer.Line($"[NUnit.Framework.Ignore(\"Only verifying that the sample builds\")]"); + _writer.UseNamespace("NUnit.Framework"); + _writer.Line($"[Test]"); + _writer.Line($"[Ignore(\"Only validating compilation of examples\")]"); using (_writer.WriteMethodDeclaration(signature)) { WriteSampleSteps(sample); @@ -107,7 +107,7 @@ private void WriteResultHandling(CodeWriterVariableDeclaration? result, bool new if (result == null) { - _writer.Line($"{typeof(Console)}.WriteLine($\"Succeeded\");"); + _writer.Line($"{typeof(Console)}.WriteLine(\"Succeeded\");"); } else { @@ -115,7 +115,7 @@ private void WriteResultHandling(CodeWriterVariableDeclaration? result, bool new { using (_writer.Scope($"if({result.Declaration} == null)")) { - _writer.Line($"{typeof(Console)}.WriteLine($\"Succeeded with null as result\");"); + _writer.Line($"{typeof(Console)}.WriteLine(\"Succeeded with null as result\");"); } using (_writer.Scope($"else")) { diff --git a/test/TestProjects/MgmtMockAndSample/specification/mockSwagger/examples/resources/CalculateTemplateHashWithQueryParameters.json b/test/TestProjects/MgmtMockAndSample/specification/mockSwagger/examples/resources/CalculateTemplateHashWithQueryParameters.json new file mode 100644 index 00000000000..8da8b5ebdf2 --- /dev/null +++ b/test/TestProjects/MgmtMockAndSample/specification/mockSwagger/examples/resources/CalculateTemplateHashWithQueryParameters.json @@ -0,0 +1,52 @@ +{ + "parameters": { + "api-version": "2021-04-01", + "template": { + "$schema": "http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview", + "contentVersion": "1.0.0.0", + "parameters": { + "string": { + "type": "string" + } + }, + "variables": { + "string": "string", + "int": 42, + "bool": true, + "array": [ + 1, + 2, + 3, + 4 + ], + "object": { + "object": { + "vmSize": "Large", + "location": "West US" + } + } + }, + "resources": [], + "outputs": { + "string": { + "type": "string", + "value": "myvalue" + } + } + }, + "q1": "first", + "q2": 42, + "q3": 422222222222222222222222222222222222, + "q4": 3.14, + "q5": 3.14159265358, + "q6": true + }, + "responses": { + "200": { + "body": { + "minifiedTemplate": "{\"$SCHEMA\":\"HTTP://SCHEMAS.MANAGEMENT.AZURE.COM/DEPLOYMENTTEMPLATE?API-VERSION=2014-04-01-PREVIEW\",\"CONTENTVERSION\":\"1.0.0.0\",\"PARAMETERS\":{\"STRING\":{\"TYPE\":\"STRING\"}},\"VARIABLES\":{\"STRING\":\"STRING\",\"INT\":42,\"BOOL\":TRUE,\"ARRAY\":[1,2,3,4],\"OBJECT\":{\"OBJECT\":{\"VMSIZE\":\"LARGE\",\"LOCATION\":\"WEST US\"}}},\"RESOURCES\":[],\"OUTPUTS\":{\"STRING\":{\"TYPE\":\"STRING\",\"VALUE\":\"MYVALUE\"}}}", + "templateHash": "695440707931307747" + } + } + } +} \ No newline at end of file diff --git a/test/TestProjects/MgmtMockAndSample/specification/mockSwagger/resources.json b/test/TestProjects/MgmtMockAndSample/specification/mockSwagger/resources.json index 43115c07a40..b2f53ba912e 100644 --- a/test/TestProjects/MgmtMockAndSample/specification/mockSwagger/resources.json +++ b/test/TestProjects/MgmtMockAndSample/specification/mockSwagger/resources.json @@ -43,11 +43,53 @@ "type": "object" }, "description": "The template provided to calculate hash." + }, + { + "name": "q1", + "in": "query", + "type": "string", + "description": "The first query parameter" + }, + { + "name": "q2", + "in": "query", + "type": "integer", + "description": "The second query parameter" + }, + { + "name": "q3", + "in": "query", + "type": "integer", + "format": "int64", + "description": "The third query parameter" + }, + { + "name": "q4", + "in": "query", + "type": "number", + "format": "float", + "description": "The fourth query parameter" + }, + { + "name": "q5", + "in": "query", + "type": "number", + "format": "double", + "description": "The fifth query parameter" + }, + { + "name": "q6", + "in": "query", + "type": "boolean", + "description": "The sixth query parameter" } ], "x-ms-examples": { "Calculate template hash": { "$ref": "./examples/resources/CalculateTemplateHash.json" + }, + "Calculate template hash with query parameters": { + "$ref": "./examples/resources/CalculateTemplateHashWithQueryParameters.json" } }, "responses": { diff --git a/test/TestProjects/MgmtMockAndSample/src/Generated/CodeModel.yaml b/test/TestProjects/MgmtMockAndSample/src/Generated/CodeModel.yaml index 1abf1a4abb9..796eb083af1 100644 --- a/test/TestProjects/MgmtMockAndSample/src/Generated/CodeModel.yaml +++ b/test/TestProjects/MgmtMockAndSample/src/Generated/CodeModel.yaml @@ -207,6 +207,16 @@ schemas: !Schemas name: Boolean description: The delegation flag used for creating a role assignment protocol: !Protocols {} + - !BooleanSchema &ref_671 + type: boolean + apiVersions: + - !ApiVersion + version: '2021-04-01' + language: !Languages + default: + name: Boolean + description: '' + protocol: !Protocols {} - !BooleanSchema &ref_246 type: boolean language: !Languages @@ -416,6 +426,50 @@ schemas: !Schemas name: FirewallPolicyRuleCollectionPriority description: Priority of the Firewall Policy Rule Collection resource. protocol: !Protocols {} + - !NumberSchema &ref_667 + type: integer + apiVersions: + - !ApiVersion + version: '2021-04-01' + precision: 32 + language: !Languages + default: + name: Integer + description: '' + protocol: !Protocols {} + - !NumberSchema &ref_668 + type: integer + apiVersions: + - !ApiVersion + version: '2021-04-01' + precision: 64 + language: !Languages + default: + name: Integer + description: '' + protocol: !Protocols {} + - !NumberSchema &ref_669 + type: number + apiVersions: + - !ApiVersion + version: '2021-04-01' + precision: 32 + language: !Languages + default: + name: Number + description: '' + protocol: !Protocols {} + - !NumberSchema &ref_670 + type: number + apiVersions: + - !ApiVersion + version: '2021-04-01' + precision: 64 + language: !Languages + default: + name: Number + description: '' + protocol: !Protocols {} - !NumberSchema &ref_241 type: integer apiVersions: @@ -2087,6 +2141,16 @@ schemas: !Schemas name: ErrorResponseMessage description: Error message indicating why the operation failed. protocol: !Protocols {} + - !StringSchema &ref_666 + type: string + apiVersions: + - !ApiVersion + version: '2021-04-01' + language: !Languages + default: + name: String + description: '' + protocol: !Protocols {} - !StringSchema &ref_366 type: string apiVersions: @@ -2107,7 +2171,7 @@ schemas: !Schemas name: TemplateHashResultTemplateHash description: The template hash. protocol: !Protocols {} - - !StringSchema &ref_669 + - !StringSchema &ref_681 type: string apiVersions: - !ApiVersion @@ -2117,7 +2181,7 @@ schemas: !Schemas name: String description: '' protocol: !Protocols {} - - !StringSchema &ref_670 + - !StringSchema &ref_682 type: string apiVersions: - !ApiVersion @@ -3916,7 +3980,7 @@ schemas: !Schemas name: ApiVersion20210401 description: Api Version (2021-04-01) protocol: !Protocols {} - - !ConstantSchema &ref_671 + - !ConstantSchema &ref_683 type: constant value: !ConstantValue value: '2022-01-25' @@ -4255,7 +4319,7 @@ schemas: !Schemas schema: *ref_7 required: true serializedName: location - language: !Languages &ref_692 + language: !Languages &ref_704 default: name: location description: The supported Azure location where the key vault should be created. @@ -4280,7 +4344,7 @@ schemas: !Schemas schema: *ref_9 required: false serializedName: duration - language: !Languages &ref_694 + language: !Languages &ref_706 default: name: duration description: Time elapsed for task. @@ -4289,7 +4353,7 @@ schemas: !Schemas schema: *ref_10 required: false serializedName: createOn - language: !Languages &ref_695 + language: !Languages &ref_707 default: name: createOn description: The date and time when the cluster creating. @@ -4298,7 +4362,7 @@ schemas: !Schemas schema: *ref_11 required: true serializedName: tenantId - language: !Languages &ref_696 + language: !Languages &ref_708 default: name: tenantId description: The Azure Active Directory tenant ID that should be used for authenticating requests to the key vault. @@ -4314,7 +4378,7 @@ schemas: !Schemas schema: *ref_12 required: true serializedName: family - language: !Languages &ref_698 + language: !Languages &ref_710 default: name: family description: SKU family name @@ -4323,7 +4387,7 @@ schemas: !Schemas schema: *ref_13 required: true serializedName: name - language: !Languages &ref_699 + language: !Languages &ref_711 default: name: name description: SKU name to specify whether the key vault is a standard vault or a premium vault. @@ -4341,7 +4405,7 @@ schemas: !Schemas protocol: !Protocols {} required: true serializedName: sku - language: !Languages &ref_697 + language: !Languages &ref_709 default: name: sku description: SKU details @@ -4362,7 +4426,7 @@ schemas: !Schemas schema: *ref_14 required: true serializedName: tenantId - language: !Languages &ref_701 + language: !Languages &ref_713 default: name: tenantId description: The Azure Active Directory tenant ID that should be used for authenticating requests to the key vault. @@ -4371,7 +4435,7 @@ schemas: !Schemas schema: *ref_15 required: true serializedName: objectId - language: !Languages &ref_702 + language: !Languages &ref_714 default: name: objectId description: The object ID of a user, service principal or security group in the Azure Active Directory tenant for the vault. The object ID must be unique for the list of access policies. @@ -4405,7 +4469,7 @@ schemas: !Schemas description: Permissions to keys protocol: !Protocols {} serializedName: keys - language: !Languages &ref_704 + language: !Languages &ref_716 default: name: keys description: Permissions to keys @@ -4423,7 +4487,7 @@ schemas: !Schemas description: Permissions to secrets protocol: !Protocols {} serializedName: secrets - language: !Languages &ref_705 + language: !Languages &ref_717 default: name: secrets description: Permissions to secrets @@ -4441,7 +4505,7 @@ schemas: !Schemas description: Permissions to certificates protocol: !Protocols {} serializedName: certificates - language: !Languages &ref_706 + language: !Languages &ref_718 default: name: certificates description: Permissions to certificates @@ -4477,7 +4541,7 @@ schemas: !Schemas protocol: !Protocols {} required: true serializedName: permissions - language: !Languages &ref_703 + language: !Languages &ref_715 default: name: permissions description: Permissions the identity has for keys, secrets and certificates. @@ -4502,7 +4566,7 @@ schemas: !Schemas protocol: !Protocols {} required: false serializedName: accessPolicies - language: !Languages &ref_700 + language: !Languages &ref_712 default: name: accessPolicies description: >- @@ -4513,7 +4577,7 @@ schemas: !Schemas schema: *ref_21 required: false serializedName: vaultUri - language: !Languages &ref_726 + language: !Languages &ref_738 default: name: vaultUri description: The URI of the vault for performing operations on keys and secrets. @@ -4523,7 +4587,7 @@ schemas: !Schemas readOnly: true required: false serializedName: hsmPoolResourceId - language: !Languages &ref_727 + language: !Languages &ref_739 default: name: hsmPoolResourceId description: The resource id of HSM Pool. @@ -4551,7 +4615,7 @@ schemas: !Schemas schema: *ref_24 required: false serializedName: enabledForDiskEncryption - language: !Languages &ref_707 + language: !Languages &ref_719 default: name: enabledForDiskEncryption description: Property to specify whether Azure Disk Encryption is permitted to retrieve secrets from the vault and unwrap keys. @@ -4560,7 +4624,7 @@ schemas: !Schemas schema: *ref_25 required: false serializedName: enabledForTemplateDeployment - language: !Languages &ref_708 + language: !Languages &ref_720 default: name: enabledForTemplateDeployment description: Property to specify whether Azure Resource Manager is permitted to retrieve secrets from the key vault. @@ -4569,7 +4633,7 @@ schemas: !Schemas schema: *ref_26 required: false serializedName: enableSoftDelete - language: !Languages &ref_837 + language: !Languages &ref_849 default: name: enableSoftDelete description: >- @@ -4631,7 +4695,7 @@ schemas: !Schemas - !Property schema: *ref_31 serializedName: bypass - language: !Languages &ref_729 + language: !Languages &ref_741 default: name: bypass description: Tells what traffic can bypass network rules. This can be 'AzureServices' or 'None'. If not specified the default is 'AzureServices'. @@ -4639,7 +4703,7 @@ schemas: !Schemas - !Property schema: *ref_32 serializedName: defaultAction - language: !Languages &ref_730 + language: !Languages &ref_742 default: name: defaultAction description: The default action when no rule from ipRules and from virtualNetworkRules match. This is only used after the bypass property has been evaluated. @@ -4660,7 +4724,7 @@ schemas: !Schemas schema: *ref_33 required: true serializedName: value - language: !Languages &ref_732 + language: !Languages &ref_744 default: name: value description: An IPv4 address range in CIDR notation, such as '124.56.78.91' (simple IP address) or '124.56.78.0/24' (all addresses that start with 124.56.78). @@ -4682,7 +4746,7 @@ schemas: !Schemas description: The list of IP address rules. protocol: !Protocols {} serializedName: ipRules - language: !Languages &ref_731 + language: !Languages &ref_743 default: name: ipRules description: The list of IP address rules. @@ -4703,7 +4767,7 @@ schemas: !Schemas schema: *ref_34 required: true serializedName: id - language: !Languages &ref_734 + language: !Languages &ref_746 default: name: id description: Full resource id of a vnet subnet, such as '/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/subnet1'. @@ -4712,7 +4776,7 @@ schemas: !Schemas schema: *ref_35 required: false serializedName: ignoreMissingVnetServiceEndpoint - language: !Languages &ref_735 + language: !Languages &ref_747 default: name: ignoreMissingVnetServiceEndpoint description: Property to specify whether NRP will ignore the check if parent subnet has serviceEndpoints configured. @@ -4734,7 +4798,7 @@ schemas: !Schemas description: The list of virtual network rules. protocol: !Protocols {} serializedName: virtualNetworkRules - language: !Languages &ref_733 + language: !Languages &ref_745 default: name: virtualNetworkRules description: The list of virtual network rules. @@ -4752,7 +4816,7 @@ schemas: !Schemas protocol: !Protocols {} required: false serializedName: networkAcls - language: !Languages &ref_728 + language: !Languages &ref_740 default: name: networkAcls description: Rules governing the accessibility of the key vault from specific network locations. @@ -4761,7 +4825,7 @@ schemas: !Schemas schema: *ref_36 required: false serializedName: provisioningState - language: !Languages &ref_736 + language: !Languages &ref_748 default: name: provisioningState description: Provisioning state of the vault. @@ -4781,7 +4845,7 @@ schemas: !Schemas - !Property schema: *ref_37 serializedName: id - language: !Languages &ref_738 + language: !Languages &ref_750 default: name: id description: Id of private endpoint connection. @@ -4789,7 +4853,7 @@ schemas: !Schemas - !Property schema: *ref_38 serializedName: etag - language: !Languages &ref_739 + language: !Languages &ref_751 default: name: etag description: Modified whenever there is a change in the state of private endpoint connection. @@ -4805,7 +4869,7 @@ schemas: !Schemas schema: *ref_39 readOnly: true serializedName: id - language: !Languages &ref_741 + language: !Languages &ref_753 default: name: id description: Full identifier of the private endpoint resource. @@ -4821,11 +4885,11 @@ schemas: !Schemas description: Private endpoint object properties. namespace: '' protocol: !Protocols {} - flattenedNames: &ref_742 + flattenedNames: &ref_754 - properties - privateEndpoint serializedName: privateEndpoint - language: !Languages &ref_740 + language: !Languages &ref_752 default: name: privateEndpoint description: Properties of the private endpoint object. @@ -4840,7 +4904,7 @@ schemas: !Schemas - !Property schema: *ref_40 serializedName: status - language: !Languages &ref_744 + language: !Languages &ref_756 default: name: status description: Indicates whether the connection has been approved, rejected or removed by the key vault owner. @@ -4848,7 +4912,7 @@ schemas: !Schemas - !Property schema: *ref_41 serializedName: description - language: !Languages &ref_893 + language: !Languages &ref_905 default: name: description description: The reason for approval or rejection. @@ -4856,7 +4920,7 @@ schemas: !Schemas - !Property schema: *ref_42 serializedName: actionsRequired - language: !Languages &ref_745 + language: !Languages &ref_757 default: name: actionsRequired description: A message indicating if changes on the service provider require any updates on the consumer. @@ -4872,22 +4936,22 @@ schemas: !Schemas description: An object that represents the approval state of the private link connection. namespace: '' protocol: !Protocols {} - flattenedNames: &ref_746 + flattenedNames: &ref_758 - properties - privateLinkServiceConnectionState serializedName: privateLinkServiceConnectionState - language: !Languages &ref_743 + language: !Languages &ref_755 default: name: connectionState description: Approval state of the private link connection. protocol: !Protocols {} - !Property schema: *ref_43 - flattenedNames: &ref_748 + flattenedNames: &ref_760 - properties - provisioningState serializedName: provisioningState - language: !Languages &ref_747 + language: !Languages &ref_759 default: name: provisioningState description: Provisioning state of the private endpoint connection. @@ -4911,7 +4975,7 @@ schemas: !Schemas readOnly: true required: false serializedName: privateEndpointConnections - language: !Languages &ref_737 + language: !Languages &ref_749 default: name: privateEndpointConnections description: List of private endpoint connections associated with the key vault. @@ -4920,7 +4984,7 @@ schemas: !Schemas schema: *ref_44 required: false serializedName: publicNetworkAccess - language: !Languages &ref_709 + language: !Languages &ref_721 default: name: publicNetworkAccess description: >- @@ -4937,7 +5001,7 @@ schemas: !Schemas - !Property schema: *ref_45 serializedName: something - language: !Languages &ref_756 + language: !Languages &ref_768 default: name: something description: This is a string property @@ -4955,7 +5019,7 @@ schemas: !Schemas protocol: !Protocols {} required: false serializedName: readWriteSingleStringProperty - language: !Languages &ref_755 + language: !Languages &ref_767 default: name: readWriteSingleStringProperty description: This is a single property of string @@ -4971,7 +5035,7 @@ schemas: !Schemas schema: *ref_46 readOnly: true serializedName: readOnlySomething - language: !Languages &ref_758 + language: !Languages &ref_770 default: name: readOnlySomething description: This is a read only string property @@ -4989,7 +5053,7 @@ schemas: !Schemas protocol: !Protocols {} required: false serializedName: readOnlySingleStringProperty - language: !Languages &ref_757 + language: !Languages &ref_769 default: name: readOnlySingleStringProperty description: This is a single property of read-only string @@ -5025,7 +5089,7 @@ schemas: !Schemas - !Property schema: *ref_47 serializedName: deep - language: !Languages &ref_763 + language: !Languages &ref_775 default: name: deep description: This is a single property of string @@ -5042,7 +5106,7 @@ schemas: !Schemas namespace: '' protocol: !Protocols {} serializedName: very - language: !Languages &ref_762 + language: !Languages &ref_774 default: name: very description: This is a single property of string @@ -5059,7 +5123,7 @@ schemas: !Schemas namespace: '' protocol: !Protocols {} serializedName: super - language: !Languages &ref_761 + language: !Languages &ref_773 default: name: super description: This is a single property of string @@ -5076,7 +5140,7 @@ schemas: !Schemas namespace: '' protocol: !Protocols {} serializedName: extreme - language: !Languages &ref_760 + language: !Languages &ref_772 default: name: extreme description: This is a single property of string @@ -5094,7 +5158,7 @@ schemas: !Schemas protocol: !Protocols {} required: false serializedName: extremelyDeepStringProperty - language: !Languages &ref_759 + language: !Languages &ref_771 default: name: extremelyDeepStringProperty description: This is a single property of string @@ -5112,7 +5176,7 @@ schemas: !Schemas protocol: !Protocols {} required: true serializedName: properties - language: !Languages &ref_693 + language: !Languages &ref_705 default: name: properties description: Properties of the vault @@ -5128,7 +5192,7 @@ schemas: !Schemas schema: *ref_48 readOnly: true serializedName: principalId - language: !Languages &ref_750 + language: !Languages &ref_762 default: name: principalId description: The principal id of the vault identity. This property will only be provided for a system assigned identity. @@ -5137,7 +5201,7 @@ schemas: !Schemas schema: *ref_49 readOnly: true serializedName: tenantId - language: !Languages &ref_751 + language: !Languages &ref_763 default: name: tenantId description: The tenant id associated with the vault. This property will only be provided for a system assigned identity. @@ -5145,7 +5209,7 @@ schemas: !Schemas - !Property schema: *ref_50 serializedName: type - language: !Languages &ref_711 + language: !Languages &ref_723 default: name: type description: >- @@ -5155,7 +5219,7 @@ schemas: !Schemas - !Property schema: *ref_51 serializedName: userAssignedIdentities - language: !Languages &ref_997 + language: !Languages &ref_1009 default: name: userAssignedIdentities description: >- @@ -5175,7 +5239,7 @@ schemas: !Schemas protocol: !Protocols {} required: false serializedName: identity - language: !Languages &ref_710 + language: !Languages &ref_722 default: name: identity description: Identity for the virtual machine. @@ -5221,7 +5285,7 @@ schemas: !Schemas readOnly: true required: false serializedName: id - language: !Languages &ref_713 + language: !Languages &ref_725 default: name: id description: Fully qualified identifier of the key vault resource. @@ -5231,7 +5295,7 @@ schemas: !Schemas readOnly: true required: false serializedName: name - language: !Languages &ref_714 + language: !Languages &ref_726 default: name: name description: Name of the key vault resource. @@ -5241,7 +5305,7 @@ schemas: !Schemas readOnly: true required: false serializedName: type - language: !Languages &ref_715 + language: !Languages &ref_727 default: name: type description: Resource type of the key vault resource. @@ -5250,7 +5314,7 @@ schemas: !Schemas schema: *ref_72 required: false serializedName: location - language: !Languages &ref_716 + language: !Languages &ref_728 default: name: location description: Azure location of the key vault resource. @@ -5259,7 +5323,7 @@ schemas: !Schemas schema: *ref_73 required: false serializedName: tags - language: !Languages &ref_717 + language: !Languages &ref_729 default: name: tags description: Tags assigned to the key vault resource. @@ -5274,7 +5338,7 @@ schemas: !Schemas - !Property schema: *ref_74 serializedName: createdBy - language: !Languages &ref_719 + language: !Languages &ref_731 default: name: createdBy description: The identity that created the key vault resource. @@ -5282,7 +5346,7 @@ schemas: !Schemas - !Property schema: *ref_75 serializedName: createdByType - language: !Languages &ref_720 + language: !Languages &ref_732 default: name: createdByType description: The type of identity that created the key vault resource. @@ -5290,7 +5354,7 @@ schemas: !Schemas - !Property schema: *ref_76 serializedName: createdAt - language: !Languages &ref_721 + language: !Languages &ref_733 default: name: createdAt description: The timestamp of the key vault resource creation (UTC). @@ -5298,7 +5362,7 @@ schemas: !Schemas - !Property schema: *ref_77 serializedName: lastModifiedBy - language: !Languages &ref_722 + language: !Languages &ref_734 default: name: lastModifiedBy description: The identity that last modified the key vault resource. @@ -5306,7 +5370,7 @@ schemas: !Schemas - !Property schema: *ref_75 serializedName: lastModifiedByType - language: !Languages &ref_723 + language: !Languages &ref_735 default: name: lastModifiedByType description: The type of identity that last modified the key vault resource. @@ -5314,7 +5378,7 @@ schemas: !Schemas - !Property schema: *ref_78 serializedName: lastModifiedAt - language: !Languages &ref_724 + language: !Languages &ref_736 default: name: lastModifiedAt description: The timestamp of the key vault resource last modification (UTC). @@ -5333,7 +5397,7 @@ schemas: !Schemas readOnly: true required: false serializedName: systemData - language: !Languages &ref_718 + language: !Languages &ref_730 default: name: systemData description: System metadata for the key vault. @@ -5342,7 +5406,7 @@ schemas: !Schemas schema: *ref_52 required: true serializedName: properties - language: !Languages &ref_725 + language: !Languages &ref_737 default: name: properties description: Properties of the vault @@ -5351,7 +5415,7 @@ schemas: !Schemas schema: *ref_67 required: false serializedName: identity - language: !Languages &ref_749 + language: !Languages &ref_761 default: name: identity description: Identity of the vault @@ -5453,7 +5517,7 @@ schemas: !Schemas - !Property schema: *ref_84 serializedName: tenantId - language: !Languages &ref_770 + language: !Languages &ref_782 default: name: tenantId description: The Azure Active Directory tenant ID that should be used for authenticating requests to the key vault. @@ -5461,7 +5525,7 @@ schemas: !Schemas - !Property schema: *ref_53 serializedName: sku - language: !Languages &ref_771 + language: !Languages &ref_783 default: name: sku description: SKU details @@ -5479,7 +5543,7 @@ schemas: !Schemas description: An array of 0 to 16 identities that have access to the key vault. All identities in the array must use the same tenant ID as the key vault's tenant ID. protocol: !Protocols {} serializedName: accessPolicies - language: !Languages &ref_772 + language: !Languages &ref_784 default: name: accessPolicies description: An array of 0 to 16 identities that have access to the key vault. All identities in the array must use the same tenant ID as the key vault's tenant ID. @@ -5487,7 +5551,7 @@ schemas: !Schemas - !Property schema: *ref_85 serializedName: enabledForDeployment - language: !Languages &ref_773 + language: !Languages &ref_785 default: name: enabledForDeployment description: Property to specify whether Azure Virtual Machines are permitted to retrieve certificates stored as secrets from the key vault. @@ -5495,7 +5559,7 @@ schemas: !Schemas - !Property schema: *ref_24 serializedName: enabledForDiskEncryption - language: !Languages &ref_774 + language: !Languages &ref_786 default: name: enabledForDiskEncryption description: Property to specify whether Azure Disk Encryption is permitted to retrieve secrets from the vault and unwrap keys. @@ -5503,7 +5567,7 @@ schemas: !Schemas - !Property schema: *ref_25 serializedName: enabledForTemplateDeployment - language: !Languages &ref_775 + language: !Languages &ref_787 default: name: enabledForTemplateDeployment description: Property to specify whether Azure Resource Manager is permitted to retrieve secrets from the key vault. @@ -5564,7 +5628,7 @@ schemas: !Schemas - !Property schema: *ref_89 serializedName: publicNetworkAccess - language: !Languages &ref_776 + language: !Languages &ref_788 default: name: publicNetworkAccess description: >- @@ -5582,7 +5646,7 @@ schemas: !Schemas namespace: '' protocol: !Protocols {} serializedName: properties - language: !Languages &ref_769 + language: !Languages &ref_781 default: name: properties description: Properties of the vault @@ -5621,7 +5685,7 @@ schemas: !Schemas - !Property schema: *ref_91 serializedName: key - language: !Languages &ref_799 + language: !Languages &ref_811 default: name: key description: name of the key @@ -5629,7 +5693,7 @@ schemas: !Schemas - !Property schema: *ref_92 serializedName: content - language: !Languages &ref_800 + language: !Languages &ref_812 default: name: content description: content of the key @@ -5650,7 +5714,7 @@ schemas: !Schemas description: The list of vaults. protocol: !Protocols {} serializedName: value - language: !Languages &ref_798 + language: !Languages &ref_810 default: name: value description: The list of vaults. @@ -5695,7 +5759,7 @@ schemas: !Schemas - !Property schema: *ref_95 serializedName: type - language: !Languages &ref_808 + language: !Languages &ref_820 default: name: type description: The type of the issue @@ -5703,7 +5767,7 @@ schemas: !Schemas - !Property schema: *ref_96 serializedName: description - language: !Languages &ref_809 + language: !Languages &ref_821 default: name: description description: The description of the issue @@ -5711,7 +5775,7 @@ schemas: !Schemas - !Property schema: *ref_97 serializedName: sev - language: !Languages &ref_810 + language: !Languages &ref_822 default: name: sev description: The severity of the issue @@ -5732,7 +5796,7 @@ schemas: !Schemas description: The list of vaults. protocol: !Protocols {} serializedName: issues - language: !Languages &ref_807 + language: !Languages &ref_819 default: name: issues description: The list of vaults. @@ -5740,7 +5804,7 @@ schemas: !Schemas - !Property schema: *ref_98 serializedName: result - language: !Languages &ref_811 + language: !Languages &ref_823 default: name: result description: The result of the validation. @@ -5767,7 +5831,7 @@ schemas: !Schemas readOnly: true required: false serializedName: id - language: !Languages &ref_827 + language: !Languages &ref_839 default: name: id description: The resource id of the access policy. @@ -5787,7 +5851,7 @@ schemas: !Schemas readOnly: true required: false serializedName: type - language: !Languages &ref_828 + language: !Languages &ref_840 default: name: type description: The resource name of the access policy. @@ -5823,7 +5887,7 @@ schemas: !Schemas protocol: !Protocols {} required: true serializedName: accessPolicies - language: !Languages &ref_825 + language: !Languages &ref_837 default: name: accessPolicies description: An array of 0 to 16 identities that have access to the key vault. All identities in the array must use the same tenant ID as the key vault's tenant ID. @@ -5841,7 +5905,7 @@ schemas: !Schemas protocol: !Protocols {} required: true serializedName: properties - language: !Languages &ref_824 + language: !Languages &ref_836 default: name: properties description: Properties of the access policy @@ -5879,7 +5943,7 @@ schemas: !Schemas description: The list of vaults. protocol: !Protocols {} serializedName: value - language: !Languages &ref_836 + language: !Languages &ref_848 default: name: value description: The list of vaults. @@ -5887,7 +5951,7 @@ schemas: !Schemas - !Property schema: *ref_106 serializedName: nextLink - language: !Languages &ref_838 + language: !Languages &ref_850 default: name: nextLink description: The URL to get the next set of vaults. @@ -5924,7 +5988,7 @@ schemas: !Schemas schema: *ref_107 readOnly: true serializedName: id - language: !Languages &ref_849 + language: !Languages &ref_861 default: name: id description: The resource ID for the deleted key vault. @@ -5933,7 +5997,7 @@ schemas: !Schemas schema: *ref_108 readOnly: true serializedName: name - language: !Languages &ref_850 + language: !Languages &ref_862 default: name: name description: The name of the key vault. @@ -5942,7 +6006,7 @@ schemas: !Schemas schema: *ref_109 readOnly: true serializedName: type - language: !Languages &ref_851 + language: !Languages &ref_863 default: name: type description: The resource type of the key vault. @@ -5958,7 +6022,7 @@ schemas: !Schemas schema: *ref_110 readOnly: true serializedName: vaultId - language: !Languages &ref_853 + language: !Languages &ref_865 default: name: vaultId description: The resource id of the original vault. @@ -5967,7 +6031,7 @@ schemas: !Schemas schema: *ref_111 readOnly: true serializedName: location - language: !Languages &ref_854 + language: !Languages &ref_866 default: name: location description: The location of the original vault. @@ -5976,7 +6040,7 @@ schemas: !Schemas schema: *ref_112 readOnly: true serializedName: deletionDate - language: !Languages &ref_855 + language: !Languages &ref_867 default: name: deletionDate description: The deleted date. @@ -5985,7 +6049,7 @@ schemas: !Schemas schema: *ref_113 readOnly: true serializedName: scheduledPurgeDate - language: !Languages &ref_856 + language: !Languages &ref_868 default: name: scheduledPurgeDate description: The scheduled purged date. @@ -5994,7 +6058,7 @@ schemas: !Schemas schema: *ref_114 readOnly: true serializedName: tags - language: !Languages &ref_857 + language: !Languages &ref_869 default: name: tags description: Tags of the original vault. @@ -6003,7 +6067,7 @@ schemas: !Schemas schema: *ref_115 readOnly: true serializedName: purgeProtectionEnabled - language: !Languages &ref_858 + language: !Languages &ref_870 default: name: purgeProtectionEnabled description: Purge protection status of the original vault. @@ -6019,7 +6083,7 @@ schemas: !Schemas namespace: '' protocol: !Protocols {} serializedName: properties - language: !Languages &ref_852 + language: !Languages &ref_864 default: name: properties description: Properties of the vault @@ -6040,7 +6104,7 @@ schemas: !Schemas description: The list of deleted vaults. protocol: !Protocols {} serializedName: value - language: !Languages &ref_848 + language: !Languages &ref_860 default: name: value description: The list of deleted vaults. @@ -6048,7 +6112,7 @@ schemas: !Schemas - !Property schema: *ref_116 serializedName: nextLink - language: !Languages &ref_859 + language: !Languages &ref_871 default: name: nextLink description: The URL to get the next set of deleted vaults. @@ -6075,7 +6139,7 @@ schemas: !Schemas schema: *ref_119 required: true serializedName: name - language: !Languages &ref_878 + language: !Languages &ref_890 default: name: name description: The vault name. @@ -6084,7 +6148,7 @@ schemas: !Schemas schema: *ref_120 required: true serializedName: type - language: !Languages &ref_879 + language: !Languages &ref_891 default: name: type description: The type of resource, Microsoft.KeyVault/vaults @@ -6109,7 +6173,7 @@ schemas: !Schemas schema: *ref_121 readOnly: true serializedName: nameAvailable - language: !Languages &ref_881 + language: !Languages &ref_893 default: name: nameAvailable description: A boolean value that indicates whether the name is available for you to use. If true, the name is available. If false, the name has already been taken or is invalid and cannot be used. @@ -6170,12 +6234,12 @@ schemas: !Schemas properties: - !Property schema: *ref_126 - flattenedNames: &ref_934 + flattenedNames: &ref_946 - properties - groupId readOnly: true serializedName: groupId - language: !Languages &ref_933 + language: !Languages &ref_945 default: name: groupId description: Group identifier of private link resource. @@ -6192,12 +6256,12 @@ schemas: !Schemas name: PrivateLinkResourcePropertiesRequiredMembers description: Required member names of private link resource. protocol: !Protocols {} - flattenedNames: &ref_936 + flattenedNames: &ref_948 - properties - requiredMembers readOnly: true serializedName: requiredMembers - language: !Languages &ref_935 + language: !Languages &ref_947 default: name: requiredMembers description: Required member names of private link resource. @@ -6214,11 +6278,11 @@ schemas: !Schemas name: PrivateLinkResourcePropertiesRequiredZoneNames description: Required DNS zone names of the the private link resource. protocol: !Protocols {} - flattenedNames: &ref_938 + flattenedNames: &ref_950 - properties - requiredZoneNames serializedName: requiredZoneNames - language: !Languages &ref_937 + language: !Languages &ref_949 default: name: requiredZoneNames description: Required DNS zone names of the the private link resource. @@ -6247,48 +6311,48 @@ schemas: !Schemas properties: - !Property schema: *ref_129 - flattenedNames: &ref_949 + flattenedNames: &ref_961 - properties - operatingSystem required: false serializedName: operatingSystem - language: !Languages &ref_948 + language: !Languages &ref_960 default: name: operatingSystem description: The operating system this extension supports. protocol: !Protocols {} - !Property schema: *ref_130 - flattenedNames: &ref_951 + flattenedNames: &ref_963 - properties - computeRole required: false serializedName: computeRole - language: !Languages &ref_950 + language: !Languages &ref_962 default: name: computeRole description: The type of role (IaaS or PaaS) this extension supports. protocol: !Protocols {} - !Property schema: *ref_131 - flattenedNames: &ref_953 + flattenedNames: &ref_965 - properties - handlerSchema required: false serializedName: handlerSchema - language: !Languages &ref_952 + language: !Languages &ref_964 default: name: handlerSchema description: The schema defined by publisher, where extension consumers should provide settings in a matching schema. protocol: !Protocols {} - !Property schema: *ref_132 - flattenedNames: &ref_955 + flattenedNames: &ref_967 - properties - vmScaleSetEnabled required: false serializedName: vmScaleSetEnabled - language: !Languages &ref_954 + language: !Languages &ref_966 default: name: vmScaleSetEnabled description: >- @@ -6297,12 +6361,12 @@ schemas: !Schemas protocol: !Protocols {} - !Property schema: *ref_133 - flattenedNames: &ref_957 + flattenedNames: &ref_969 - properties - supportsMultipleExtensions required: false serializedName: supportsMultipleExtensions - language: !Languages &ref_956 + language: !Languages &ref_968 default: name: supportsMultipleExtensions description: Whether the handler can support multiple extensions. @@ -6332,18 +6396,18 @@ schemas: !Schemas - !Property schema: *ref_67 serializedName: identity - language: !Languages &ref_983 + language: !Languages &ref_995 default: name: identity description: Identity for the virtual machine. protocol: !Protocols {} - !Property schema: *ref_134 - flattenedNames: &ref_985 + flattenedNames: &ref_997 - properties - encryptionType serializedName: encryptionType - language: !Languages &ref_984 + language: !Languages &ref_996 default: name: encryptionType description: The type of key used to encrypt the data of the disk. @@ -6365,7 +6429,7 @@ schemas: !Schemas - !Property schema: *ref_135 serializedName: id - language: !Languages &ref_1001 + language: !Languages &ref_1013 default: name: id description: Resource Id @@ -6383,7 +6447,7 @@ schemas: !Schemas protocol: !Protocols {} required: false serializedName: sourceVault - language: !Languages &ref_1000 + language: !Languages &ref_1012 default: name: sourceVault description: Resource id of the KeyVault containing the key or secret. This property is optional and cannot be used if the KeyVault subscription is not the same as the Disk Encryption Set subscription. @@ -6392,7 +6456,7 @@ schemas: !Schemas schema: *ref_136 required: true serializedName: keyUrl - language: !Languages &ref_987 + language: !Languages &ref_999 default: name: keyUrl description: Fully versioned Key Url pointing to a key in KeyVault. Version segment of the Url is required regardless of rotationToLatestKeyVersionEnabled value. @@ -6408,11 +6472,11 @@ schemas: !Schemas description: Key Vault Key Url to be used for server side encryption of Managed Disks and Snapshots namespace: '' protocol: !Protocols {} - flattenedNames: &ref_988 + flattenedNames: &ref_1000 - properties - activeKey serializedName: activeKey - language: !Languages &ref_986 + language: !Languages &ref_998 default: name: activeKey description: The key vault key which is currently used by this disk encryption set. @@ -6432,7 +6496,7 @@ schemas: !Schemas name: EncryptionSetPropertiesPreviousKeys description: A readonly collection of key vault keys previously used by this disk encryption set while a key rotation is in progress. It will be empty if there is no ongoing key rotation. protocol: !Protocols {} - flattenedNames: &ref_993 + flattenedNames: &ref_1005 - properties - previousKeys readOnly: true @@ -6440,64 +6504,64 @@ schemas: !Schemas extensions: x-ms-identifiers: - sourceVault/id - language: !Languages &ref_992 + language: !Languages &ref_1004 default: name: previousKeys description: A readonly collection of key vault keys previously used by this disk encryption set while a key rotation is in progress. It will be empty if there is no ongoing key rotation. protocol: !Protocols {} - !Property schema: *ref_138 - flattenedNames: &ref_1016 + flattenedNames: &ref_1028 - properties - provisioningState readOnly: true serializedName: provisioningState - language: !Languages &ref_1015 + language: !Languages &ref_1027 default: name: provisioningState description: The disk encryption set provisioning state. protocol: !Protocols {} - !Property schema: *ref_139 - flattenedNames: &ref_1018 + flattenedNames: &ref_1030 - properties - rotationToLatestKeyVersionEnabled serializedName: rotationToLatestKeyVersionEnabled - language: !Languages &ref_1017 + language: !Languages &ref_1029 default: name: rotationToLatestKeyVersionEnabled description: Set this flag to true to enable auto-updating of this disk encryption set to the latest key version. protocol: !Protocols {} - !Property schema: *ref_140 - flattenedNames: &ref_1020 + flattenedNames: &ref_1032 - properties - lastKeyRotationTimestamp readOnly: true serializedName: lastKeyRotationTimestamp - language: !Languages &ref_1019 + language: !Languages &ref_1031 default: name: lastKeyRotationTimestamp description: The time when the active key of this disk encryption set was updated. protocol: !Protocols {} - !Property schema: *ref_141 - flattenedNames: &ref_999 + flattenedNames: &ref_1011 - properties - federatedClientId serializedName: federatedClientId - language: !Languages &ref_998 + language: !Languages &ref_1010 default: name: federatedClientId description: Multi-tenant application client id to access key vault in a different tenant. Setting the value to 'None' will clear the property. protocol: !Protocols {} - !Property schema: *ref_142 - flattenedNames: &ref_990 + flattenedNames: &ref_1002 - properties - minimumTlsVersion serializedName: minimumTlsVersion - language: !Languages &ref_989 + language: !Languages &ref_1001 default: name: minimumTlsVersion description: The minimum tls version @@ -6523,7 +6587,7 @@ schemas: !Schemas schema: *ref_146 readOnly: true serializedName: id - language: !Languages &ref_897 + language: !Languages &ref_909 default: name: id description: Fully qualified identifier of the key vault resource. @@ -6532,7 +6596,7 @@ schemas: !Schemas schema: *ref_147 readOnly: true serializedName: name - language: !Languages &ref_898 + language: !Languages &ref_910 default: name: name description: Name of the key vault resource. @@ -6541,7 +6605,7 @@ schemas: !Schemas schema: *ref_148 readOnly: true serializedName: type - language: !Languages &ref_899 + language: !Languages &ref_911 default: name: type description: Resource type of the key vault resource. @@ -6550,7 +6614,7 @@ schemas: !Schemas schema: *ref_149 readOnly: true serializedName: location - language: !Languages &ref_958 + language: !Languages &ref_970 default: name: location description: Azure location of the key vault resource. @@ -6559,7 +6623,7 @@ schemas: !Schemas schema: *ref_150 readOnly: true serializedName: tags - language: !Languages &ref_959 + language: !Languages &ref_971 default: name: tags description: Tags assigned to the key vault resource. @@ -6583,40 +6647,40 @@ schemas: !Schemas - !Property schema: *ref_151 serializedName: etag - language: !Languages &ref_889 + language: !Languages &ref_901 default: name: etag description: Modified whenever there is a change in the state of private endpoint connection. protocol: !Protocols {} - !Property schema: *ref_60 - flattenedNames: &ref_891 + flattenedNames: &ref_903 - properties - privateEndpoint serializedName: privateEndpoint - language: !Languages &ref_890 + language: !Languages &ref_902 default: name: privateEndpoint description: Properties of the private endpoint object. protocol: !Protocols {} - !Property schema: *ref_61 - flattenedNames: &ref_894 + flattenedNames: &ref_906 - properties - privateLinkServiceConnectionState serializedName: privateLinkServiceConnectionState - language: !Languages &ref_892 + language: !Languages &ref_904 default: name: connectionState description: Approval state of the private link connection. protocol: !Protocols {} - !Property schema: *ref_43 - flattenedNames: &ref_896 + flattenedNames: &ref_908 - properties - provisioningState serializedName: provisioningState - language: !Languages &ref_895 + language: !Languages &ref_907 default: name: provisioningState description: Provisioning state of the private endpoint connection. @@ -6654,7 +6718,7 @@ schemas: !Schemas description: The list of private endpoint connections. protocol: !Protocols {} serializedName: value - language: !Languages &ref_924 + language: !Languages &ref_936 default: name: value description: The list of private endpoint connections. @@ -6662,7 +6726,7 @@ schemas: !Schemas - !Property schema: *ref_152 serializedName: nextLink - language: !Languages &ref_925 + language: !Languages &ref_937 default: name: nextLink description: The URL to get the next set of private endpoint connections. @@ -6696,7 +6760,7 @@ schemas: !Schemas description: Array of private link resources protocol: !Protocols {} serializedName: value - language: !Languages &ref_932 + language: !Languages &ref_944 default: name: value description: Array of private link resources @@ -6725,7 +6789,7 @@ schemas: !Schemas - !Property schema: *ref_154 serializedName: tags - language: !Languages &ref_1025 + language: !Languages &ref_1037 default: name: tags description: Resource tags @@ -6733,40 +6797,40 @@ schemas: !Schemas - !Property schema: *ref_67 serializedName: identity - language: !Languages &ref_1007 + language: !Languages &ref_1019 default: name: identity description: Identity for the virtual machine. protocol: !Protocols {} - !Property schema: *ref_134 - flattenedNames: &ref_1009 + flattenedNames: &ref_1021 - properties - encryptionType serializedName: encryptionType - language: !Languages &ref_1008 + language: !Languages &ref_1020 default: name: encryptionType description: The type of key used to encrypt the data of the disk. protocol: !Protocols {} - !Property schema: *ref_137 - flattenedNames: &ref_1011 + flattenedNames: &ref_1023 - properties - activeKey serializedName: activeKey - language: !Languages &ref_1010 + language: !Languages &ref_1022 default: name: activeKey description: Key Vault Key Url to be used for server side encryption of Managed Disks and Snapshots protocol: !Protocols {} - !Property schema: *ref_139 - flattenedNames: &ref_1013 + flattenedNames: &ref_1025 - properties - rotationToLatestKeyVersionEnabled serializedName: rotationToLatestKeyVersionEnabled - language: !Languages &ref_1012 + language: !Languages &ref_1024 default: name: rotationToLatestKeyVersionEnabled description: Set this flag to true to enable auto-updating of this disk encryption set to the latest key version. @@ -6812,7 +6876,7 @@ schemas: !Schemas protocol: !Protocols {} required: true serializedName: value - language: !Languages &ref_1042 + language: !Languages &ref_1054 default: name: value description: A list of disk encryption sets. @@ -6821,7 +6885,7 @@ schemas: !Schemas schema: *ref_156 required: false serializedName: nextLink - language: !Languages &ref_1043 + language: !Languages &ref_1055 default: name: nextLink description: The uri to fetch the next page of disk encryption sets. Call ListNext() with this to fetch the next page of disk encryption sets. @@ -6865,7 +6929,7 @@ schemas: !Schemas - !Property schema: *ref_159 serializedName: etag - language: !Languages &ref_1146 + language: !Languages &ref_1158 default: name: etag description: Modified whenever there is a change in the state of private endpoint connection. @@ -6881,7 +6945,7 @@ schemas: !Schemas schema: *ref_160 readOnly: true serializedName: id - language: !Languages &ref_1148 + language: !Languages &ref_1160 default: name: id description: Full identifier of the private endpoint resource. @@ -6897,11 +6961,11 @@ schemas: !Schemas description: Private endpoint object properties. namespace: '' protocol: !Protocols {} - flattenedNames: &ref_1149 + flattenedNames: &ref_1161 - properties - privateEndpoint serializedName: privateEndpoint - language: !Languages &ref_1147 + language: !Languages &ref_1159 default: name: privateEndpoint description: Properties of the private endpoint object. @@ -6916,7 +6980,7 @@ schemas: !Schemas - !Property schema: *ref_40 serializedName: status - language: !Languages &ref_1151 + language: !Languages &ref_1163 default: name: status description: Indicates whether the connection has been approved, rejected or removed by the key vault owner. @@ -6924,7 +6988,7 @@ schemas: !Schemas - !Property schema: *ref_161 serializedName: description - language: !Languages &ref_1152 + language: !Languages &ref_1164 default: name: description description: The reason for approval or rejection. @@ -6932,7 +6996,7 @@ schemas: !Schemas - !Property schema: *ref_42 serializedName: actionsRequired - language: !Languages &ref_1153 + language: !Languages &ref_1165 default: name: actionsRequired description: A message indicating if changes on the service provider require any updates on the consumer. @@ -6948,22 +7012,22 @@ schemas: !Schemas description: An object that represents the approval state of the private link connection. namespace: '' protocol: !Protocols {} - flattenedNames: &ref_1154 + flattenedNames: &ref_1166 - properties - privateLinkServiceConnectionState serializedName: privateLinkServiceConnectionState - language: !Languages &ref_1150 + language: !Languages &ref_1162 default: name: privateLinkServiceConnectionState description: Approval state of the private link connection. protocol: !Protocols {} - !Property schema: *ref_43 - flattenedNames: &ref_1156 + flattenedNames: &ref_1168 - properties - provisioningState serializedName: provisioningState - language: !Languages &ref_1155 + language: !Languages &ref_1167 default: name: provisioningState description: Provisioning state of the private endpoint connection. @@ -6994,12 +7058,12 @@ schemas: !Schemas properties: - !Property schema: *ref_162 - flattenedNames: &ref_1190 + flattenedNames: &ref_1202 - properties - groupId readOnly: true serializedName: groupId - language: !Languages &ref_1189 + language: !Languages &ref_1201 default: name: groupId description: Group identifier of private link resource. @@ -7016,12 +7080,12 @@ schemas: !Schemas name: MhsmPrivateLinkResourcePropertiesRequiredMembers description: Required member names of private link resource. protocol: !Protocols {} - flattenedNames: &ref_1192 + flattenedNames: &ref_1204 - properties - requiredMembers readOnly: true serializedName: requiredMembers - language: !Languages &ref_1191 + language: !Languages &ref_1203 default: name: requiredMembers description: Required member names of private link resource. @@ -7038,11 +7102,11 @@ schemas: !Schemas name: MhsmPrivateLinkResourcePropertiesRequiredZoneNames description: Required DNS zone names of the the private link resource. protocol: !Protocols {} - flattenedNames: &ref_1194 + flattenedNames: &ref_1206 - properties - requiredZoneNames serializedName: requiredZoneNames - language: !Languages &ref_1193 + language: !Languages &ref_1205 default: name: requiredZoneNames description: Required DNS zone names of the the private link resource. @@ -7067,7 +7131,7 @@ schemas: !Schemas schema: *ref_167 readOnly: true serializedName: id - language: !Languages &ref_1076 + language: !Languages &ref_1088 default: name: id description: The Azure Resource Manager resource ID for the managed HSM Pool. @@ -7076,7 +7140,7 @@ schemas: !Schemas schema: *ref_168 readOnly: true serializedName: name - language: !Languages &ref_1077 + language: !Languages &ref_1089 default: name: name description: The name of the managed HSM Pool. @@ -7085,7 +7149,7 @@ schemas: !Schemas schema: *ref_169 readOnly: true serializedName: type - language: !Languages &ref_1078 + language: !Languages &ref_1090 default: name: type description: The resource type of the managed HSM Pool. @@ -7097,7 +7161,7 @@ schemas: !Schemas x-ms-mutability: - create - read - language: !Languages &ref_1067 + language: !Languages &ref_1079 default: name: location description: The supported Azure location where the managed HSM Pool should be created. @@ -7113,7 +7177,7 @@ schemas: !Schemas schema: *ref_171 required: true serializedName: family - language: !Languages &ref_1069 + language: !Languages &ref_1081 default: name: family description: SKU Family of the managed HSM Pool @@ -7122,7 +7186,7 @@ schemas: !Schemas schema: *ref_172 required: true serializedName: name - language: !Languages &ref_1070 + language: !Languages &ref_1082 default: name: name description: SKU of the managed HSM Pool @@ -7139,7 +7203,7 @@ schemas: !Schemas namespace: '' protocol: !Protocols {} serializedName: sku - language: !Languages &ref_1068 + language: !Languages &ref_1080 default: name: sku description: SKU details @@ -7147,7 +7211,7 @@ schemas: !Schemas - !Property schema: *ref_173 serializedName: tags - language: !Languages &ref_1071 + language: !Languages &ref_1083 default: name: tags description: Resource tags @@ -7187,7 +7251,7 @@ schemas: !Schemas - !Property schema: *ref_174 serializedName: settings - language: !Languages &ref_1055 + language: !Languages &ref_1067 default: name: settings description: The settings that should be applied to this ManagedHsm. This should be a JSON string or JSON object @@ -7195,7 +7259,7 @@ schemas: !Schemas - !Property schema: *ref_175 serializedName: protectedSettings - language: !Languages &ref_1056 + language: !Languages &ref_1068 default: name: protectedSettings description: The protected settings that should be applied to this ManagedHsm. This should be a JSON string or JSON object @@ -7203,7 +7267,7 @@ schemas: !Schemas - !Property schema: *ref_176 serializedName: rawMessage - language: !Languages &ref_1058 + language: !Languages &ref_1070 default: name: rawMessage description: The raw message content @@ -7211,7 +7275,7 @@ schemas: !Schemas - !Property schema: *ref_177 serializedName: tenantId - language: !Languages &ref_1059 + language: !Languages &ref_1071 default: name: tenantId description: The Azure Active Directory tenant ID that should be used for authenticating requests to the managed HSM pool. @@ -7229,7 +7293,7 @@ schemas: !Schemas description: Array of initial administrators object ids for this managed hsm pool. protocol: !Protocols {} serializedName: initialAdminObjectIds - language: !Languages &ref_1060 + language: !Languages &ref_1072 default: name: initialAdminObjectIds description: Array of initial administrators object ids for this managed hsm pool. @@ -7238,7 +7302,7 @@ schemas: !Schemas schema: *ref_179 readOnly: true serializedName: hsmUri - language: !Languages &ref_1073 + language: !Languages &ref_1085 default: name: hsmUri description: The URI of the managed hsm pool for performing operations on keys. @@ -7246,7 +7310,7 @@ schemas: !Schemas - !Property schema: *ref_180 serializedName: enableSoftDelete - language: !Languages &ref_1061 + language: !Languages &ref_1073 default: name: enableSoftDelete description: >- @@ -7256,7 +7320,7 @@ schemas: !Schemas - !Property schema: *ref_181 serializedName: softDeleteRetentionInDays - language: !Languages &ref_1062 + language: !Languages &ref_1074 default: name: softDeleteRetentionInDays description: softDelete data retention days. It accepts >=7 and <=90. @@ -7264,7 +7328,7 @@ schemas: !Schemas - !Property schema: *ref_182 serializedName: enablePurgeProtection - language: !Languages &ref_1063 + language: !Languages &ref_1075 default: name: enablePurgeProtection description: >- @@ -7283,7 +7347,7 @@ schemas: !Schemas schema: *ref_183 readOnly: true serializedName: statusMessage - language: !Languages &ref_1074 + language: !Languages &ref_1086 default: name: statusMessage description: Resource Status Message. @@ -7292,7 +7356,7 @@ schemas: !Schemas schema: *ref_184 readOnly: true serializedName: provisioningState - language: !Languages &ref_1075 + language: !Languages &ref_1087 default: name: provisioningState description: Provisioning state. @@ -7379,7 +7443,7 @@ schemas: !Schemas schema: *ref_186 required: true serializedName: id - language: !Languages &ref_1066 + language: !Languages &ref_1078 default: name: id description: Full resource id of a vnet subnet, such as '/subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/subnet1'. @@ -7401,7 +7465,7 @@ schemas: !Schemas description: The list of virtual network rules. protocol: !Protocols {} serializedName: virtualNetworkRules - language: !Languages &ref_1065 + language: !Languages &ref_1077 default: name: virtualNetworkRules description: The list of virtual network rules. @@ -7418,7 +7482,7 @@ schemas: !Schemas namespace: '' protocol: !Protocols {} serializedName: networkAcls - language: !Languages &ref_1064 + language: !Languages &ref_1076 default: name: networkAcls description: Rules governing the accessibility of the key vault from specific network locations. @@ -7520,7 +7584,7 @@ schemas: !Schemas namespace: '' protocol: !Protocols {} serializedName: properties - language: !Languages &ref_1054 + language: !Languages &ref_1066 default: name: properties description: Properties of the managed HSM @@ -7632,7 +7696,7 @@ schemas: !Schemas description: The list of managed HSM Pools. protocol: !Protocols {} serializedName: value - language: !Languages &ref_1106 + language: !Languages &ref_1118 default: name: value description: The list of managed HSM Pools. @@ -7640,7 +7704,7 @@ schemas: !Schemas - !Property schema: *ref_200 serializedName: nextLink - language: !Languages &ref_1107 + language: !Languages &ref_1119 default: name: nextLink description: The URL to get the next set of managed HSM Pools. @@ -7674,7 +7738,7 @@ schemas: !Schemas description: The private endpoint connection associated with a managed HSM Pools. protocol: !Protocols {} serializedName: value - language: !Languages &ref_1145 + language: !Languages &ref_1157 default: name: value description: The private endpoint connection associated with a managed HSM Pools. @@ -7682,7 +7746,7 @@ schemas: !Schemas - !Property schema: *ref_201 serializedName: nextLink - language: !Languages &ref_1157 + language: !Languages &ref_1169 default: name: nextLink description: The URL to get the next set of managed HSM Pools. @@ -7720,7 +7784,7 @@ schemas: !Schemas schema: *ref_202 readOnly: true serializedName: id - language: !Languages &ref_1117 + language: !Languages &ref_1129 default: name: id description: The Azure Resource Manager resource ID for the deleted managed HSM Pool. @@ -7729,7 +7793,7 @@ schemas: !Schemas schema: *ref_203 readOnly: true serializedName: name - language: !Languages &ref_1118 + language: !Languages &ref_1130 default: name: name description: The name of the managed HSM Pool. @@ -7738,7 +7802,7 @@ schemas: !Schemas schema: *ref_204 readOnly: true serializedName: type - language: !Languages &ref_1119 + language: !Languages &ref_1131 default: name: type description: The resource type of the managed HSM Pool. @@ -7754,7 +7818,7 @@ schemas: !Schemas schema: *ref_205 readOnly: true serializedName: mhsmId - language: !Languages &ref_1121 + language: !Languages &ref_1133 default: name: mhsmId description: The resource id of the original managed HSM. @@ -7763,7 +7827,7 @@ schemas: !Schemas schema: *ref_206 readOnly: true serializedName: location - language: !Languages &ref_1122 + language: !Languages &ref_1134 default: name: location description: The location of the original managed HSM. @@ -7772,7 +7836,7 @@ schemas: !Schemas schema: *ref_207 readOnly: true serializedName: deletionDate - language: !Languages &ref_1123 + language: !Languages &ref_1135 default: name: deletionDate description: The deleted date. @@ -7781,7 +7845,7 @@ schemas: !Schemas schema: *ref_208 readOnly: true serializedName: scheduledPurgeDate - language: !Languages &ref_1124 + language: !Languages &ref_1136 default: name: scheduledPurgeDate description: The scheduled purged date. @@ -7790,7 +7854,7 @@ schemas: !Schemas schema: *ref_209 readOnly: true serializedName: purgeProtectionEnabled - language: !Languages &ref_1125 + language: !Languages &ref_1137 default: name: purgeProtectionEnabled description: Purge protection status of the original managed HSM. @@ -7799,7 +7863,7 @@ schemas: !Schemas schema: *ref_210 readOnly: true serializedName: tags - language: !Languages &ref_1126 + language: !Languages &ref_1138 default: name: tags description: Tags of the original managed HSM. @@ -7815,7 +7879,7 @@ schemas: !Schemas namespace: '' protocol: !Protocols {} serializedName: properties - language: !Languages &ref_1120 + language: !Languages &ref_1132 default: name: properties description: Properties of the deleted managed HSM @@ -7836,7 +7900,7 @@ schemas: !Schemas description: The list of deleted managed HSM Pools. protocol: !Protocols {} serializedName: value - language: !Languages &ref_1116 + language: !Languages &ref_1128 default: name: value description: The list of deleted managed HSM Pools. @@ -7844,7 +7908,7 @@ schemas: !Schemas - !Property schema: *ref_211 serializedName: nextLink - language: !Languages &ref_1127 + language: !Languages &ref_1139 default: name: nextLink description: The URL to get the next set of deleted managed HSM Pools. @@ -7880,7 +7944,7 @@ schemas: !Schemas description: Array of private link resources protocol: !Protocols {} serializedName: value - language: !Languages &ref_1188 + language: !Languages &ref_1200 default: name: value description: Array of private link resources @@ -7918,7 +7982,7 @@ schemas: !Schemas schema: *ref_215 readOnly: true serializedName: id - language: !Languages &ref_1267 + language: !Languages &ref_1279 default: name: id description: Resource ID. @@ -7927,7 +7991,7 @@ schemas: !Schemas schema: *ref_216 readOnly: true serializedName: name - language: !Languages &ref_1268 + language: !Languages &ref_1280 default: name: name description: Resource name. @@ -7936,7 +8000,7 @@ schemas: !Schemas schema: *ref_217 readOnly: true serializedName: type - language: !Languages &ref_1269 + language: !Languages &ref_1281 default: name: type description: Resource type. @@ -7944,7 +8008,7 @@ schemas: !Schemas - !Property schema: *ref_218 serializedName: location - language: !Languages &ref_1270 + language: !Languages &ref_1282 default: name: location description: Resource location. @@ -7952,7 +8016,7 @@ schemas: !Schemas - !Property schema: *ref_219 serializedName: tags - language: !Languages &ref_1271 + language: !Languages &ref_1283 default: name: tags description: Resource tags. @@ -7977,7 +8041,7 @@ schemas: !Schemas schema: *ref_221 readOnly: true serializedName: etag - language: !Languages &ref_1208 + language: !Languages &ref_1220 default: name: etag description: A unique read-only string that changes whenever the resource is updated. @@ -8001,7 +8065,7 @@ schemas: !Schemas schema: *ref_222 required: true serializedName: disableProbe - language: !Languages &ref_1212 + language: !Languages &ref_1224 default: name: disableProbe description: Indicate whether the probe is disabled. @@ -8010,7 +8074,7 @@ schemas: !Schemas schema: *ref_223 required: false serializedName: initialDelaySeconds - language: !Languages &ref_1213 + language: !Languages &ref_1225 default: name: initialDelaySeconds description: 'Number of seconds after the App Instance has started before probes are initiated. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' @@ -8019,7 +8083,7 @@ schemas: !Schemas schema: *ref_224 required: false serializedName: periodSeconds - language: !Languages &ref_1214 + language: !Languages &ref_1226 default: name: periodSeconds description: How often (in seconds) to perform the probe. Minimum value is 1. @@ -8037,7 +8101,7 @@ schemas: !Schemas schema: *ref_226 required: false serializedName: failureThreshold - language: !Languages &ref_1215 + language: !Languages &ref_1227 default: name: failureThreshold description: Minimum consecutive failures for the probe to be considered failed after having succeeded. Minimum value is 1. @@ -8062,11 +8126,11 @@ schemas: !Schemas description: Probe describes a health check to be performed against an App Instance to determine whether it is alive or ready to receive traffic. namespace: '' protocol: !Protocols {} - flattenedNames: &ref_1210 + flattenedNames: &ref_1222 - properties - startupProbe serializedName: startupProbe - language: !Languages &ref_1209 + language: !Languages &ref_1221 default: name: startupProbe description: >- @@ -8076,22 +8140,22 @@ schemas: !Schemas protocol: !Protocols {} - !Property schema: *ref_228 - flattenedNames: &ref_1216 + flattenedNames: &ref_1228 - properties - readinessProbe serializedName: readinessProbe - language: !Languages &ref_1211 + language: !Languages &ref_1223 default: name: readinessProbe description: 'Periodic probe of App Instance service readiness. App Instance will be removed from service endpoints if the probe fails. More info: https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle#container-probes' protocol: !Protocols {} - !Property schema: *ref_229 - flattenedNames: &ref_1279 + flattenedNames: &ref_1291 - properties - desiredStatusCode serializedName: desiredStatusCode - language: !Languages &ref_1278 + language: !Languages &ref_1290 default: name: desiredStatusCode description: The desired status code @@ -8124,7 +8188,7 @@ schemas: !Schemas schema: *ref_231 readOnly: true serializedName: name - language: !Languages &ref_1306 + language: !Languages &ref_1318 default: name: name description: The name of the resource that is unique within a resource group. This name can be used to access the resource. @@ -8133,7 +8197,7 @@ schemas: !Schemas schema: *ref_232 readOnly: true serializedName: etag - language: !Languages &ref_1307 + language: !Languages &ref_1319 default: name: etag description: A unique read-only string that changes whenever the resource is updated. @@ -8149,11 +8213,11 @@ schemas: !Schemas protocol: !Protocols {} - !Property schema: *ref_234 - flattenedNames: &ref_1309 + flattenedNames: &ref_1321 - properties - priority serializedName: priority - language: !Languages &ref_1308 + language: !Languages &ref_1320 default: name: priority description: Priority of the Firewall Policy Rule Collection Group resource. @@ -8193,7 +8257,7 @@ schemas: !Schemas - !Property schema: *ref_236 serializedName: type - language: !Languages &ref_1312 + language: !Languages &ref_1324 default: name: type description: The type of action. @@ -8210,7 +8274,7 @@ schemas: !Schemas namespace: '' protocol: !Protocols {} serializedName: action - language: !Languages &ref_1311 + language: !Languages &ref_1323 default: name: action description: The action type of a Nat rule collection. @@ -8253,7 +8317,7 @@ schemas: !Schemas description: List of source IP addresses for this rule. protocol: !Protocols {} serializedName: sourceAddresses - language: !Languages &ref_1339 + language: !Languages &ref_1351 default: name: sourceAddresses description: List of source IP addresses for this rule. @@ -8291,7 +8355,7 @@ schemas: !Schemas - !Property schema: *ref_240 serializedName: protocolType - language: !Languages &ref_1341 + language: !Languages &ref_1353 default: name: protocolType description: Protocol type. @@ -8299,7 +8363,7 @@ schemas: !Schemas - !Property schema: *ref_241 serializedName: port - language: !Languages &ref_1342 + language: !Languages &ref_1354 default: name: port description: Port number for the protocol, cannot be greater than 64000. @@ -8321,7 +8385,7 @@ schemas: !Schemas description: Array of Application Protocols. protocol: !Protocols {} serializedName: protocols - language: !Languages &ref_1340 + language: !Languages &ref_1352 default: name: protocols description: Array of Application Protocols. @@ -8419,7 +8483,7 @@ schemas: !Schemas description: List of destination azure web categories. protocol: !Protocols {} serializedName: webCategories - language: !Languages &ref_1343 + language: !Languages &ref_1355 default: name: webCategories description: List of destination azure web categories. @@ -8462,7 +8526,7 @@ schemas: !Schemas description: Array of FirewallPolicyRuleNetworkProtocols. protocol: !Protocols {} serializedName: ipProtocols - language: !Languages &ref_1314 + language: !Languages &ref_1326 default: name: ipProtocols description: Array of FirewallPolicyRuleNetworkProtocols. @@ -8480,7 +8544,7 @@ schemas: !Schemas description: List of source IP addresses for this rule. protocol: !Protocols {} serializedName: sourceAddresses - language: !Languages &ref_1315 + language: !Languages &ref_1327 default: name: sourceAddresses description: List of source IP addresses for this rule. @@ -8498,7 +8562,7 @@ schemas: !Schemas description: List of destination IP addresses or Service Tags. protocol: !Protocols {} serializedName: destinationAddresses - language: !Languages &ref_1316 + language: !Languages &ref_1328 default: name: destinationAddresses description: List of destination IP addresses or Service Tags. @@ -8516,7 +8580,7 @@ schemas: !Schemas description: List of destination ports. protocol: !Protocols {} serializedName: destinationPorts - language: !Languages &ref_1317 + language: !Languages &ref_1329 default: name: destinationPorts description: List of destination ports. @@ -8532,7 +8596,7 @@ schemas: !Schemas - !Property schema: *ref_253 serializedName: translatedPort - language: !Languages &ref_1318 + language: !Languages &ref_1330 default: name: translatedPort description: The translated port for this NAT rule. @@ -8550,7 +8614,7 @@ schemas: !Schemas description: List of source IpGroups for this rule. protocol: !Protocols {} serializedName: sourceIpGroups - language: !Languages &ref_1319 + language: !Languages &ref_1331 default: name: sourceIpGroups description: List of source IpGroups for this rule. @@ -8558,7 +8622,7 @@ schemas: !Schemas - !Property schema: *ref_255 serializedName: translatedFqdn - language: !Languages &ref_1320 + language: !Languages &ref_1332 default: name: translatedFqdn description: The translated FQDN for this NAT rule. @@ -8601,7 +8665,7 @@ schemas: !Schemas description: Array of FirewallPolicyRuleNetworkProtocols. protocol: !Protocols {} serializedName: ipProtocols - language: !Languages &ref_1333 + language: !Languages &ref_1345 default: name: ipProtocols description: Array of FirewallPolicyRuleNetworkProtocols. @@ -8619,7 +8683,7 @@ schemas: !Schemas description: List of source IP addresses for this rule. protocol: !Protocols {} serializedName: sourceAddresses - language: !Languages &ref_1334 + language: !Languages &ref_1346 default: name: sourceAddresses description: List of source IP addresses for this rule. @@ -8637,7 +8701,7 @@ schemas: !Schemas description: List of destination IP addresses or Service Tags. protocol: !Protocols {} serializedName: destinationAddresses - language: !Languages &ref_1335 + language: !Languages &ref_1347 default: name: destinationAddresses description: List of destination IP addresses or Service Tags. @@ -8655,7 +8719,7 @@ schemas: !Schemas description: List of destination ports. protocol: !Protocols {} serializedName: destinationPorts - language: !Languages &ref_1336 + language: !Languages &ref_1348 default: name: destinationPorts description: List of destination ports. @@ -8673,7 +8737,7 @@ schemas: !Schemas description: List of source IpGroups for this rule. protocol: !Protocols {} serializedName: sourceIpGroups - language: !Languages &ref_1337 + language: !Languages &ref_1349 default: name: sourceIpGroups description: List of source IpGroups for this rule. @@ -8691,7 +8755,7 @@ schemas: !Schemas description: List of destination IpGroups for this rule. protocol: !Protocols {} serializedName: destinationIpGroups - language: !Languages &ref_1338 + language: !Languages &ref_1350 default: name: destinationIpGroups description: List of destination IpGroups for this rule. @@ -8745,7 +8809,7 @@ schemas: !Schemas isDiscriminator: true required: true serializedName: ruleType - language: !Languages &ref_1322 + language: !Languages &ref_1334 default: name: ruleType description: Rule Type. @@ -8755,7 +8819,7 @@ schemas: !Schemas schema: *ref_266 required: false serializedName: name - language: !Languages &ref_1321 + language: !Languages &ref_1333 default: name: name description: Name of the rule. @@ -8764,7 +8828,7 @@ schemas: !Schemas schema: *ref_267 required: false serializedName: description - language: !Languages &ref_1344 + language: !Languages &ref_1356 default: name: description description: Description of the rule. @@ -8787,7 +8851,7 @@ schemas: !Schemas description: List of rules included in a rule collection. protocol: !Protocols {} serializedName: rules - language: !Languages &ref_1313 + language: !Languages &ref_1325 default: name: rules description: List of rules included in a rule collection. @@ -8827,7 +8891,7 @@ schemas: !Schemas - !Property schema: *ref_269 serializedName: type - language: !Languages &ref_1331 + language: !Languages &ref_1343 default: name: type description: The type of action. @@ -8844,7 +8908,7 @@ schemas: !Schemas namespace: '' protocol: !Protocols {} serializedName: action - language: !Languages &ref_1330 + language: !Languages &ref_1342 default: name: action description: The action type of a Filter rule collection. @@ -8862,7 +8926,7 @@ schemas: !Schemas description: List of rules included in a rule collection. protocol: !Protocols {} serializedName: rules - language: !Languages &ref_1332 + language: !Languages &ref_1344 default: name: rules description: List of rules included in a rule collection. @@ -8895,7 +8959,7 @@ schemas: !Schemas isDiscriminator: true required: true serializedName: ruleCollectionType - language: !Languages &ref_1323 + language: !Languages &ref_1335 default: name: ruleCollectionType description: The type of the rule collection. @@ -8906,7 +8970,7 @@ schemas: !Schemas schema: *ref_274 required: false serializedName: name - language: !Languages &ref_1324 + language: !Languages &ref_1336 default: name: name description: The name of the rule collection. @@ -8915,7 +8979,7 @@ schemas: !Schemas schema: *ref_275 required: false serializedName: priority - language: !Languages &ref_1325 + language: !Languages &ref_1337 default: name: priority description: Priority of the Firewall Policy Rule Collection resource. @@ -8936,23 +9000,23 @@ schemas: !Schemas name: FirewallPolicyRuleCollectionGroupPropertiesRuleCollections description: Group of Firewall Policy rule collections. protocol: !Protocols {} - flattenedNames: &ref_1326 + flattenedNames: &ref_1338 - properties - ruleCollections serializedName: ruleCollections - language: !Languages &ref_1310 + language: !Languages &ref_1322 default: name: ruleCollections description: Group of Firewall Policy rule collections. protocol: !Protocols {} - !Property schema: *ref_184 - flattenedNames: &ref_1328 + flattenedNames: &ref_1340 - properties - provisioningState readOnly: true serializedName: provisioningState - language: !Languages &ref_1327 + language: !Languages &ref_1339 default: name: provisioningState description: The provisioning state of the firewall policy rule collection group resource. @@ -8974,7 +9038,7 @@ schemas: !Schemas - !Property schema: *ref_277 serializedName: id - language: !Languages &ref_1218 + language: !Languages &ref_1230 default: name: id description: Resource ID. @@ -8997,24 +9061,24 @@ schemas: !Schemas name: FirewallPolicyPropertiesFormatRuleCollectionGroups description: List of references to FirewallPolicyRuleCollectionGroups. protocol: !Protocols {} - flattenedNames: &ref_1219 + flattenedNames: &ref_1231 - properties - ruleCollectionGroups readOnly: true serializedName: ruleCollectionGroups - language: !Languages &ref_1217 + language: !Languages &ref_1229 default: name: ruleCollectionGroups description: List of references to FirewallPolicyRuleCollectionGroups. protocol: !Protocols {} - !Property schema: *ref_184 - flattenedNames: &ref_1221 + flattenedNames: &ref_1233 - properties - provisioningState readOnly: true serializedName: provisioningState - language: !Languages &ref_1220 + language: !Languages &ref_1232 default: name: provisioningState description: The provisioning state of the firewall policy resource. @@ -9042,12 +9106,12 @@ schemas: !Schemas name: FirewallPolicyPropertiesFormatFirewalls description: List of references to Azure Firewalls that this Firewall Policy is associated with. protocol: !Protocols {} - flattenedNames: &ref_1223 + flattenedNames: &ref_1235 - properties - firewalls readOnly: true serializedName: firewalls - language: !Languages &ref_1222 + language: !Languages &ref_1234 default: name: firewalls description: List of references to Azure Firewalls that this Firewall Policy is associated with. @@ -9094,7 +9158,7 @@ schemas: !Schemas description: List of IP addresses for the ThreatIntel Whitelist. protocol: !Protocols {} serializedName: ipAddresses - language: !Languages &ref_1225 + language: !Languages &ref_1237 default: name: ipAddresses description: List of IP addresses for the ThreatIntel Whitelist. @@ -9112,7 +9176,7 @@ schemas: !Schemas description: List of FQDNs for the ThreatIntel Whitelist. protocol: !Protocols {} serializedName: fqdns - language: !Languages &ref_1226 + language: !Languages &ref_1238 default: name: fqdns description: List of FQDNs for the ThreatIntel Whitelist. @@ -9130,11 +9194,11 @@ schemas: !Schemas description: ThreatIntel Whitelist for Firewall Policy. namespace: '' protocol: !Protocols {} - flattenedNames: &ref_1227 + flattenedNames: &ref_1239 - properties - threatIntelWhitelist serializedName: threatIntelWhitelist - language: !Languages &ref_1224 + language: !Languages &ref_1236 default: name: threatIntelWhitelist description: ThreatIntel Whitelist for Firewall Policy. @@ -9149,7 +9213,7 @@ schemas: !Schemas - !Property schema: *ref_280 serializedName: isEnabled - language: !Languages &ref_1229 + language: !Languages &ref_1241 default: name: isEnabled description: A flag to indicate if the insights are enabled on the policy. @@ -9157,7 +9221,7 @@ schemas: !Schemas - !Property schema: *ref_281 serializedName: retentionDays - language: !Languages &ref_1230 + language: !Languages &ref_1242 default: name: retentionDays description: Number of days the insights should be enabled on the policy. @@ -9184,7 +9248,7 @@ schemas: !Schemas - !Property schema: *ref_282 serializedName: region - language: !Languages &ref_1233 + language: !Languages &ref_1245 default: name: region description: Region to configure the Workspace. @@ -9192,7 +9256,7 @@ schemas: !Schemas - !Property schema: *ref_230 serializedName: workspaceId - language: !Languages &ref_1234 + language: !Languages &ref_1246 default: name: workspaceId description: The workspace Id for Firewall Policy Insights. @@ -9216,7 +9280,7 @@ schemas: !Schemas description: List of workspaces for Firewall Policy Insights. protocol: !Protocols {} serializedName: workspaces - language: !Languages &ref_1232 + language: !Languages &ref_1244 default: name: workspaces description: List of workspaces for Firewall Policy Insights. @@ -9224,7 +9288,7 @@ schemas: !Schemas - !Property schema: *ref_230 serializedName: defaultWorkspaceId - language: !Languages &ref_1235 + language: !Languages &ref_1247 default: name: defaultWorkspaceId description: The default workspace Id for Firewall Policy Insights. @@ -9243,7 +9307,7 @@ schemas: !Schemas namespace: '' protocol: !Protocols {} serializedName: logAnalyticsResources - language: !Languages &ref_1231 + language: !Languages &ref_1243 default: name: logAnalyticsResources description: Workspaces needed to configure the Firewall Policy Insights. @@ -9261,11 +9325,11 @@ schemas: !Schemas description: Firewall Policy Insights. namespace: '' protocol: !Protocols {} - flattenedNames: &ref_1236 + flattenedNames: &ref_1248 - properties - insights serializedName: insights - language: !Languages &ref_1228 + language: !Languages &ref_1240 default: name: insights description: Insights on Firewall Policy. @@ -9290,7 +9354,7 @@ schemas: !Schemas description: List of private IP addresses/IP address ranges to not be SNAT. protocol: !Protocols {} serializedName: privateRanges - language: !Languages &ref_1238 + language: !Languages &ref_1250 default: name: privateRanges description: List of private IP addresses/IP address ranges to not be SNAT. @@ -9308,11 +9372,11 @@ schemas: !Schemas description: The private IP addresses/IP ranges to which traffic will not be SNAT. namespace: '' protocol: !Protocols {} - flattenedNames: &ref_1239 + flattenedNames: &ref_1251 - properties - snat serializedName: snat - language: !Languages &ref_1237 + language: !Languages &ref_1249 default: name: snat description: The private IP addresses/IP ranges to which traffic will not be SNAT. @@ -9337,7 +9401,7 @@ schemas: !Schemas description: List of Custom DNS Servers. protocol: !Protocols {} serializedName: servers - language: !Languages &ref_1241 + language: !Languages &ref_1253 default: name: servers description: List of Custom DNS Servers. @@ -9345,7 +9409,7 @@ schemas: !Schemas - !Property schema: *ref_285 serializedName: enableProxy - language: !Languages &ref_1242 + language: !Languages &ref_1254 default: name: enableProxy description: Enable DNS Proxy on Firewalls attached to the Firewall Policy. @@ -9354,7 +9418,7 @@ schemas: !Schemas schema: *ref_286 nullable: true serializedName: requireProxyForNetworkRules - language: !Languages &ref_1243 + language: !Languages &ref_1255 default: name: requireProxyForNetworkRules description: FQDNs in Network Rules are supported when set to true. @@ -9372,11 +9436,11 @@ schemas: !Schemas description: DNS Proxy Settings in Firewall Policy. namespace: '' protocol: !Protocols {} - flattenedNames: &ref_1244 + flattenedNames: &ref_1256 - properties - dnsSettings serializedName: dnsSettings - language: !Languages &ref_1240 + language: !Languages &ref_1252 default: name: dnsSettings description: DNS Proxy Settings definition. @@ -9391,7 +9455,7 @@ schemas: !Schemas - !Property schema: *ref_287 serializedName: mode - language: !Languages &ref_1246 + language: !Languages &ref_1258 default: name: mode description: Intrusion detection general state. @@ -9418,7 +9482,7 @@ schemas: !Schemas - !Property schema: *ref_288 serializedName: id - language: !Languages &ref_1249 + language: !Languages &ref_1261 default: name: id description: Signature id. @@ -9426,7 +9490,7 @@ schemas: !Schemas - !Property schema: *ref_287 serializedName: mode - language: !Languages &ref_1250 + language: !Languages &ref_1262 default: name: mode description: The signature state. @@ -9448,7 +9512,7 @@ schemas: !Schemas description: List of specific signatures states. protocol: !Protocols {} serializedName: signatureOverrides - language: !Languages &ref_1248 + language: !Languages &ref_1260 default: name: signatureOverrides description: List of specific signatures states. @@ -9468,7 +9532,7 @@ schemas: !Schemas - !Property schema: *ref_289 serializedName: name - language: !Languages &ref_1252 + language: !Languages &ref_1264 default: name: name description: Name of the bypass traffic rule. @@ -9476,7 +9540,7 @@ schemas: !Schemas - !Property schema: *ref_290 serializedName: description - language: !Languages &ref_1253 + language: !Languages &ref_1265 default: name: description description: Description of the bypass traffic rule. @@ -9484,7 +9548,7 @@ schemas: !Schemas - !Property schema: *ref_291 serializedName: protocol - language: !Languages &ref_1254 + language: !Languages &ref_1266 default: name: protocol description: The rule bypass protocol. @@ -9502,7 +9566,7 @@ schemas: !Schemas description: List of source IP addresses or ranges for this rule. protocol: !Protocols {} serializedName: sourceAddresses - language: !Languages &ref_1255 + language: !Languages &ref_1267 default: name: sourceAddresses description: List of source IP addresses or ranges for this rule. @@ -9520,7 +9584,7 @@ schemas: !Schemas description: List of destination IP addresses or ranges for this rule. protocol: !Protocols {} serializedName: destinationAddresses - language: !Languages &ref_1256 + language: !Languages &ref_1268 default: name: destinationAddresses description: List of destination IP addresses or ranges for this rule. @@ -9538,7 +9602,7 @@ schemas: !Schemas description: List of destination ports or ranges. protocol: !Protocols {} serializedName: destinationPorts - language: !Languages &ref_1257 + language: !Languages &ref_1269 default: name: destinationPorts description: List of destination ports or ranges. @@ -9596,7 +9660,7 @@ schemas: !Schemas description: List of rules for traffic to bypass. protocol: !Protocols {} serializedName: bypassTrafficSettings - language: !Languages &ref_1251 + language: !Languages &ref_1263 default: name: bypassTrafficSettings description: List of rules for traffic to bypass. @@ -9613,7 +9677,7 @@ schemas: !Schemas namespace: '' protocol: !Protocols {} serializedName: configuration - language: !Languages &ref_1247 + language: !Languages &ref_1259 default: name: configuration description: Intrusion detection configuration properties. @@ -9629,11 +9693,11 @@ schemas: !Schemas description: Configuration for intrusion detection mode and rules. namespace: '' protocol: !Protocols {} - flattenedNames: &ref_1258 + flattenedNames: &ref_1270 - properties - intrusionDetection serializedName: intrusionDetection - language: !Languages &ref_1245 + language: !Languages &ref_1257 default: name: intrusionDetection description: The configuration for Intrusion detection. @@ -9655,7 +9719,7 @@ schemas: !Schemas - !Property schema: *ref_297 serializedName: keyVaultSecretId - language: !Languages &ref_1261 + language: !Languages &ref_1273 default: name: keyVaultSecretId description: Secret Id of (base-64 encoded unencrypted pfx) 'Secret' or 'Certificate' object stored in KeyVault. @@ -9663,7 +9727,7 @@ schemas: !Schemas - !Property schema: *ref_298 serializedName: name - language: !Languages &ref_1262 + language: !Languages &ref_1274 default: name: name description: Name of the CA certificate. @@ -9680,7 +9744,7 @@ schemas: !Schemas namespace: '' protocol: !Protocols {} serializedName: certificateAuthority - language: !Languages &ref_1260 + language: !Languages &ref_1272 default: name: certificateAuthority description: The CA used for intermediate CA generation. @@ -9696,11 +9760,11 @@ schemas: !Schemas description: Configuration needed to perform TLS termination & initiation. namespace: '' protocol: !Protocols {} - flattenedNames: &ref_1263 + flattenedNames: &ref_1275 - properties - transportSecurity serializedName: transportSecurity - language: !Languages &ref_1259 + language: !Languages &ref_1271 default: name: transportSecurity description: TLS Configuration definition. @@ -9715,7 +9779,7 @@ schemas: !Schemas - !Property schema: *ref_299 serializedName: tier - language: !Languages &ref_1265 + language: !Languages &ref_1277 default: name: tier description: Tier of Firewall Policy. @@ -9731,11 +9795,11 @@ schemas: !Schemas description: SKU of Firewall policy. namespace: '' protocol: !Protocols {} - flattenedNames: &ref_1266 + flattenedNames: &ref_1278 - properties - sku serializedName: sku - language: !Languages &ref_1264 + language: !Languages &ref_1276 default: name: sku description: The Firewall Policy SKU. @@ -9786,7 +9850,7 @@ schemas: !Schemas description: List of Firewall Policies in a resource group. protocol: !Protocols {} serializedName: value - language: !Languages &ref_1287 + language: !Languages &ref_1299 default: name: value description: List of Firewall Policies in a resource group. @@ -9830,7 +9894,7 @@ schemas: !Schemas description: List of FirewallPolicyRuleCollectionGroups in a FirewallPolicy. protocol: !Protocols {} serializedName: value - language: !Languages &ref_1359 + language: !Languages &ref_1371 default: name: value description: List of FirewallPolicyRuleCollectionGroups in a FirewallPolicy. @@ -9874,7 +9938,7 @@ schemas: !Schemas - !Property schema: *ref_315 serializedName: name - language: !Languages &ref_1365 + language: !Languages &ref_1377 default: name: name description: 'Operation name: {provider}/{resource}/{operation}' @@ -9889,7 +9953,7 @@ schemas: !Schemas - !Property schema: *ref_316 serializedName: provider - language: !Languages &ref_1367 + language: !Languages &ref_1379 default: name: provider description: 'Service provider: Microsoft Key Vault.' @@ -9897,7 +9961,7 @@ schemas: !Schemas - !Property schema: *ref_317 serializedName: resource - language: !Languages &ref_1368 + language: !Languages &ref_1380 default: name: resource description: Resource on which the operation is performed etc. @@ -9905,7 +9969,7 @@ schemas: !Schemas - !Property schema: *ref_318 serializedName: operation - language: !Languages &ref_1369 + language: !Languages &ref_1381 default: name: operation description: 'Type of operation: get, read, delete, etc.' @@ -9913,7 +9977,7 @@ schemas: !Schemas - !Property schema: *ref_319 serializedName: description - language: !Languages &ref_1370 + language: !Languages &ref_1382 default: name: description description: Description of operation. @@ -9929,7 +9993,7 @@ schemas: !Schemas namespace: '' protocol: !Protocols {} serializedName: display - language: !Languages &ref_1366 + language: !Languages &ref_1378 default: name: display description: Display metadata associated with the operation. @@ -9937,7 +10001,7 @@ schemas: !Schemas - !Property schema: *ref_320 serializedName: origin - language: !Languages &ref_1372 + language: !Languages &ref_1384 default: name: origin description: The origin of operations. @@ -9945,7 +10009,7 @@ schemas: !Schemas - !Property schema: *ref_321 serializedName: isDataAction - language: !Languages &ref_1371 + language: !Languages &ref_1383 default: name: isDataAction description: Property to specify whether the action is a data action. @@ -9972,7 +10036,7 @@ schemas: !Schemas - !Property schema: *ref_322 serializedName: name - language: !Languages &ref_1375 + language: !Languages &ref_1387 default: name: name description: Name of log specification. @@ -9980,7 +10044,7 @@ schemas: !Schemas - !Property schema: *ref_323 serializedName: displayName - language: !Languages &ref_1376 + language: !Languages &ref_1388 default: name: displayName description: Display name of log specification. @@ -9988,7 +10052,7 @@ schemas: !Schemas - !Property schema: *ref_324 serializedName: blobDuration - language: !Languages &ref_1377 + language: !Languages &ref_1389 default: name: blobDuration description: Blob duration of specification. @@ -10009,7 +10073,7 @@ schemas: !Schemas description: Log specifications of operation. protocol: !Protocols {} serializedName: logSpecifications - language: !Languages &ref_1374 + language: !Languages &ref_1386 default: name: logSpecifications description: Log specifications of operation. @@ -10029,7 +10093,7 @@ schemas: !Schemas - !Property schema: *ref_325 serializedName: name - language: !Languages &ref_1379 + language: !Languages &ref_1391 default: name: name description: Name of metric specification. @@ -10037,7 +10101,7 @@ schemas: !Schemas - !Property schema: *ref_326 serializedName: displayName - language: !Languages &ref_1380 + language: !Languages &ref_1392 default: name: displayName description: Display name of metric specification. @@ -10045,7 +10109,7 @@ schemas: !Schemas - !Property schema: *ref_327 serializedName: displayDescription - language: !Languages &ref_1381 + language: !Languages &ref_1393 default: name: displayDescription description: Display description of metric specification. @@ -10053,7 +10117,7 @@ schemas: !Schemas - !Property schema: *ref_328 serializedName: unit - language: !Languages &ref_1382 + language: !Languages &ref_1394 default: name: unit description: 'The metric unit. Possible values include: ''Bytes'', ''Count'', ''Milliseconds''.' @@ -10061,7 +10125,7 @@ schemas: !Schemas - !Property schema: *ref_329 serializedName: aggregationType - language: !Languages &ref_1383 + language: !Languages &ref_1395 default: name: aggregationType description: 'The metric aggregation type. Possible values include: ''Average'', ''Count'', ''Total''.' @@ -10079,7 +10143,7 @@ schemas: !Schemas description: The supported aggregation types for the metrics. protocol: !Protocols {} serializedName: supportedAggregationTypes - language: !Languages &ref_1384 + language: !Languages &ref_1396 default: name: supportedAggregationTypes description: The supported aggregation types for the metrics. @@ -10097,7 +10161,7 @@ schemas: !Schemas description: The supported time grain types for the metrics. protocol: !Protocols {} serializedName: supportedTimeGrainTypes - language: !Languages &ref_1385 + language: !Languages &ref_1397 default: name: supportedTimeGrainTypes description: The supported time grain types for the metrics. @@ -10105,7 +10169,7 @@ schemas: !Schemas - !Property schema: *ref_332 serializedName: lockAggregationType - language: !Languages &ref_1386 + language: !Languages &ref_1398 default: name: lockAggregationType description: The metric lock aggregation type. @@ -10125,7 +10189,7 @@ schemas: !Schemas - !Property schema: *ref_333 serializedName: name - language: !Languages &ref_1388 + language: !Languages &ref_1400 default: name: name description: Name of dimension. @@ -10133,7 +10197,7 @@ schemas: !Schemas - !Property schema: *ref_334 serializedName: displayName - language: !Languages &ref_1389 + language: !Languages &ref_1401 default: name: displayName description: Display name of dimension. @@ -10141,7 +10205,7 @@ schemas: !Schemas - !Property schema: *ref_335 serializedName: toBeExportedForShoebox - language: !Languages &ref_1390 + language: !Languages &ref_1402 default: name: toBeExportedForShoebox description: Property to specify whether the dimension should be exported for Shoebox. @@ -10162,7 +10226,7 @@ schemas: !Schemas description: The dimensions of metric protocol: !Protocols {} serializedName: dimensions - language: !Languages &ref_1387 + language: !Languages &ref_1399 default: name: dimensions description: The dimensions of metric @@ -10170,7 +10234,7 @@ schemas: !Schemas - !Property schema: *ref_336 serializedName: fillGapWithZero - language: !Languages &ref_1391 + language: !Languages &ref_1403 default: name: fillGapWithZero description: Property to specify whether to fill gap with zero. @@ -10178,7 +10242,7 @@ schemas: !Schemas - !Property schema: *ref_337 serializedName: internalMetricName - language: !Languages &ref_1392 + language: !Languages &ref_1404 default: name: internalMetricName description: The internal metric name. @@ -10199,7 +10263,7 @@ schemas: !Schemas description: Metric specifications of operation. protocol: !Protocols {} serializedName: metricSpecifications - language: !Languages &ref_1378 + language: !Languages &ref_1390 default: name: metricSpecifications description: Metric specifications of operation. @@ -10214,11 +10278,11 @@ schemas: !Schemas description: One property of operation, include log specifications. namespace: '' protocol: !Protocols {} - flattenedNames: &ref_1393 + flattenedNames: &ref_1405 - properties - serviceSpecification serializedName: serviceSpecification - language: !Languages &ref_1373 + language: !Languages &ref_1385 default: name: serviceSpecification description: One property of operation, include metric specifications. @@ -10239,7 +10303,7 @@ schemas: !Schemas description: List of Storage operations supported by the Storage resource provider. protocol: !Protocols {} serializedName: value - language: !Languages &ref_1364 + language: !Languages &ref_1376 default: name: value description: List of Storage operations supported by the Storage resource provider. @@ -10278,7 +10342,7 @@ schemas: !Schemas schema: *ref_345 readOnly: true serializedName: id - language: !Languages &ref_1401 + language: !Languages &ref_1413 default: name: id description: The role assignment ID. @@ -10287,7 +10351,7 @@ schemas: !Schemas schema: *ref_346 readOnly: true serializedName: name - language: !Languages &ref_1402 + language: !Languages &ref_1414 default: name: name description: The role assignment name. @@ -10296,51 +10360,51 @@ schemas: !Schemas schema: *ref_347 readOnly: true serializedName: type - language: !Languages &ref_1403 + language: !Languages &ref_1415 default: name: type description: The role assignment type. protocol: !Protocols {} - !Property schema: *ref_348 - flattenedNames: &ref_1405 + flattenedNames: &ref_1417 - properties - scope serializedName: scope - language: !Languages &ref_1404 + language: !Languages &ref_1416 default: name: scope description: The role assignment scope. protocol: !Protocols {} - !Property schema: *ref_349 - flattenedNames: &ref_1407 + flattenedNames: &ref_1419 - properties - roleDefinitionId serializedName: roleDefinitionId - language: !Languages &ref_1406 + language: !Languages &ref_1418 default: name: roleDefinitionId description: The role definition ID. protocol: !Protocols {} - !Property schema: *ref_350 - flattenedNames: &ref_1409 + flattenedNames: &ref_1421 - properties - principalId serializedName: principalId - language: !Languages &ref_1408 + language: !Languages &ref_1420 default: name: principalId description: The principal ID. protocol: !Protocols {} - !Property schema: *ref_351 - flattenedNames: &ref_1411 + flattenedNames: &ref_1423 - properties - canDelegate serializedName: canDelegate - language: !Languages &ref_1410 + language: !Languages &ref_1422 default: name: canDelegate description: The Delegation flag for the role assignment @@ -10363,33 +10427,33 @@ schemas: !Schemas properties: - !Property schema: *ref_352 - flattenedNames: &ref_1420 + flattenedNames: &ref_1432 - properties - roleDefinitionId serializedName: roleDefinitionId - language: !Languages &ref_1419 + language: !Languages &ref_1431 default: name: roleDefinitionId description: The role definition ID used in the role assignment. protocol: !Protocols {} - !Property schema: *ref_353 - flattenedNames: &ref_1422 + flattenedNames: &ref_1434 - properties - principalId serializedName: principalId - language: !Languages &ref_1421 + language: !Languages &ref_1433 default: name: principalId description: The principal ID assigned to the role. This maps to the ID inside the Active Directory. It can point to a user, service principal, or security group. protocol: !Protocols {} - !Property schema: *ref_354 - flattenedNames: &ref_1424 + flattenedNames: &ref_1436 - properties - canDelegate serializedName: canDelegate - language: !Languages &ref_1423 + language: !Languages &ref_1435 default: name: canDelegate description: The delegation flag used for creating a role assignment @@ -10423,7 +10487,7 @@ schemas: !Schemas description: Role assignment list. protocol: !Protocols {} serializedName: value - language: !Languages &ref_1441 + language: !Languages &ref_1453 default: name: value description: Role assignment list. @@ -10474,7 +10538,7 @@ schemas: !Schemas - !Property schema: *ref_357 serializedName: action - language: !Languages &ref_1448 + language: !Languages &ref_1460 default: name: action description: 'the permissible actions. For instance: microsoft.support/supporttickets/write' @@ -10482,7 +10546,7 @@ schemas: !Schemas - !Property schema: *ref_358 serializedName: role - language: !Languages &ref_1449 + language: !Languages &ref_1461 default: name: role description: 'the role of the user. For instance: Subscription Admin' @@ -10490,7 +10554,7 @@ schemas: !Schemas - !Property schema: *ref_359 serializedName: scope - language: !Languages &ref_1450 + language: !Languages &ref_1462 default: name: scope description: the scope. @@ -10507,7 +10571,7 @@ schemas: !Schemas protocol: !Protocols {} readOnly: true serializedName: authorization - language: !Languages &ref_1447 + language: !Languages &ref_1459 default: name: authorization description: The sender authorization information. @@ -10516,7 +10580,7 @@ schemas: !Schemas schema: *ref_360 readOnly: true serializedName: tenantId - language: !Languages &ref_1451 + language: !Languages &ref_1463 default: name: tenantId description: the Azure tenant Id @@ -10538,7 +10602,7 @@ schemas: !Schemas protocol: !Protocols {} required: true serializedName: value - language: !Languages &ref_1446 + language: !Languages &ref_1458 default: name: value description: this list that includes the Azure audit logs. @@ -10547,7 +10611,7 @@ schemas: !Schemas schema: *ref_361 required: false serializedName: nextLink - language: !Languages &ref_1452 + language: !Languages &ref_1464 default: name: nextLink description: Provides the link to retrieve the next set of events. @@ -10596,7 +10660,7 @@ schemas: !Schemas description: Describes the format of Error response. namespace: '' protocol: !Protocols {} - - !ObjectSchema &ref_668 + - !ObjectSchema &ref_680 type: object apiVersions: - !ApiVersion @@ -10605,7 +10669,7 @@ schemas: !Schemas - !Property schema: *ref_366 serializedName: minifiedTemplate - language: !Languages &ref_1460 + language: !Languages &ref_1472 default: name: minifiedTemplate description: The minified template string. @@ -10613,7 +10677,7 @@ schemas: !Schemas - !Property schema: *ref_367 serializedName: templateHash - language: !Languages &ref_1461 + language: !Languages &ref_1473 default: name: templateHash description: The template hash. @@ -10650,7 +10714,7 @@ schemas: !Schemas schema: *ref_369 readOnly: true serializedName: id - language: !Languages &ref_1481 + language: !Languages &ref_1500 default: name: id description: ARM resource id of the guest configuration assignment. @@ -10659,7 +10723,7 @@ schemas: !Schemas schema: *ref_370 readOnly: false serializedName: name - language: !Languages &ref_1472 + language: !Languages &ref_1491 default: name: name description: Name of the guest configuration assignment. @@ -10668,7 +10732,7 @@ schemas: !Schemas schema: *ref_371 readOnly: false serializedName: location - language: !Languages &ref_1473 + language: !Languages &ref_1492 default: name: location description: Region where the VM is located. @@ -10719,7 +10783,7 @@ schemas: !Schemas schema: *ref_375 readOnly: true serializedName: complianceStatus - language: !Languages &ref_1475 + language: !Languages &ref_1494 default: name: complianceStatus description: A value indicating compliance status of the machine for the assigned guest configuration. @@ -10729,7 +10793,7 @@ schemas: !Schemas nullable: true readOnly: true serializedName: lastComplianceStatusChecked - language: !Languages &ref_1476 + language: !Languages &ref_1495 default: name: lastComplianceStatusChecked description: Date and time when last compliance status was checked. @@ -10739,7 +10803,7 @@ schemas: !Schemas nullable: true readOnly: true serializedName: latestReportId - language: !Languages &ref_1477 + language: !Languages &ref_1496 default: name: latestReportId description: 'Id of the latest report for the guest configuration assignment. ' @@ -10757,7 +10821,7 @@ schemas: !Schemas - !Property schema: *ref_379 serializedName: context - language: !Languages &ref_1471 + language: !Languages &ref_1490 default: name: context description: 'The source which initiated the guest configuration assignment. Ex: Azure Policy' @@ -10767,7 +10831,7 @@ schemas: !Schemas nullable: true readOnly: true serializedName: assignmentHash - language: !Languages &ref_1478 + language: !Languages &ref_1497 default: name: assignmentHash description: Combined hash of the configuration package and parameters. @@ -10777,7 +10841,7 @@ schemas: !Schemas nullable: true readOnly: true serializedName: provisioningState - language: !Languages &ref_1479 + language: !Languages &ref_1498 default: name: provisioningState description: The provisioning state, which only appears in the response. @@ -10787,7 +10851,7 @@ schemas: !Schemas nullable: true readOnly: true serializedName: resourceType - language: !Languages &ref_1480 + language: !Languages &ref_1499 default: name: resourceType description: Type of the resource - VMSS / VM @@ -10806,7 +10870,7 @@ schemas: !Schemas serializedName: properties extensions: x-ms-client-flatten: false - language: !Languages &ref_1470 + language: !Languages &ref_1489 default: name: properties description: Properties of the Guest configuration assignment. @@ -10824,7 +10888,7 @@ schemas: !Schemas protocol: !Protocols {} - *ref_382 - *ref_373 - - !ObjectSchema &ref_685 + - !ObjectSchema &ref_697 type: object apiVersions: - !ApiVersion @@ -11118,7 +11182,7 @@ globalParameters: required: true extensions: x-ms-priority: 0 - language: !Languages &ref_686 + language: !Languages &ref_698 default: name: SubscriptionId description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call. @@ -11143,10 +11207,10 @@ globalParameters: http: !HttpParameter in: uri operationGroups: - - !OperationGroup &ref_754 + - !OperationGroup &ref_766 $key: Vaults operations: - - !Operation &ref_753 + - !Operation &ref_765 operationId: Vaults_CreateOrUpdate apiVersions: - !ApiVersion @@ -11157,7 +11221,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_687 + language: !Languages &ref_699 default: name: resourceGroupName description: The name of the Resource Group to which the server belongs. @@ -11169,7 +11233,7 @@ operationGroups: schema: *ref_477 implementation: Method required: true - language: !Languages &ref_688 + language: !Languages &ref_700 default: name: vaultName description: Name of the vault @@ -11177,12 +11241,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_689 + - !Parameter &ref_701 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_690 + language: !Languages &ref_702 default: name: apiVersion description: Api Version @@ -11211,7 +11275,7 @@ operationGroups: schema: *ref_481 implementation: Method required: true - language: !Languages &ref_691 + language: !Languages &ref_703 default: name: parameters description: Parameters to create or update the vault @@ -11254,7 +11318,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_105 - language: !Languages &ref_712 + language: !Languages &ref_724 default: name: '' description: Created or updated vault @@ -11267,7 +11331,7 @@ operationGroups: - '200' - !SchemaResponse schema: *ref_105 - language: !Languages &ref_752 + language: !Languages &ref_764 default: name: '' description: Created or updated vault @@ -11868,7 +11932,7 @@ operationGroups: name: CreateOrUpdate description: Create or update a key vault in the specified subscription. protocol: !Protocols {} - - !Operation &ref_779 + - !Operation &ref_791 operationId: Vaults_Update apiVersions: - !ApiVersion @@ -11879,7 +11943,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_764 + language: !Languages &ref_776 default: name: resourceGroupName description: The name of the Resource Group to which the server belongs. @@ -11891,7 +11955,7 @@ operationGroups: schema: *ref_477 implementation: Method required: true - language: !Languages &ref_765 + language: !Languages &ref_777 default: name: vaultName description: Name of the vault @@ -11899,12 +11963,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_766 + - !Parameter &ref_778 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_767 + language: !Languages &ref_779 default: name: apiVersion description: Api Version @@ -11933,7 +11997,7 @@ operationGroups: schema: *ref_488 implementation: Method required: true - language: !Languages &ref_768 + language: !Languages &ref_780 default: name: parameters description: Parameters to patch the vault @@ -11976,7 +12040,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_105 - language: !Languages &ref_777 + language: !Languages &ref_789 default: name: '' description: Patched vault @@ -11989,7 +12053,7 @@ operationGroups: - '200' - !SchemaResponse schema: *ref_105 - language: !Languages &ref_778 + language: !Languages &ref_790 default: name: '' description: Patched vault @@ -12242,7 +12306,7 @@ operationGroups: name: Update description: Update a key vault in the specified subscription. protocol: !Protocols {} - - !Operation &ref_786 + - !Operation &ref_798 operationId: Vaults_Delete apiVersions: - !ApiVersion @@ -12253,7 +12317,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_780 + language: !Languages &ref_792 default: name: resourceGroupName description: The name of the Resource Group to which the vault belongs. @@ -12265,7 +12329,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_781 + language: !Languages &ref_793 default: name: vaultName description: The name of the vault to delete @@ -12273,12 +12337,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_782 + - !Parameter &ref_794 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_783 + language: !Languages &ref_795 default: name: apiVersion description: Api Version @@ -12359,15 +12423,15 @@ operationGroups: vaultName: sample-vault responses: '200': - headers: &ref_784 {} + headers: &ref_796 {} '204': - headers: &ref_785 {} + headers: &ref_797 {} language: !Languages default: name: Delete description: Deletes the specified Azure key vault. protocol: !Protocols {} - - !Operation &ref_792 + - !Operation &ref_804 operationId: Vaults_Get apiVersions: - !ApiVersion @@ -12378,7 +12442,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_787 + language: !Languages &ref_799 default: name: resourceGroupName description: The name of the Resource Group to which the vault belongs. @@ -12390,7 +12454,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_788 + language: !Languages &ref_800 default: name: vaultName description: The name of the vault. @@ -12398,12 +12462,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_789 + - !Parameter &ref_801 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_790 + language: !Languages &ref_802 default: name: apiVersion description: Api Version @@ -12444,7 +12508,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_105 - language: !Languages &ref_791 + language: !Languages &ref_803 default: name: '' description: Retrieved vault @@ -12554,7 +12618,7 @@ operationGroups: name: Get description: Gets the specified Azure key vault. protocol: !Protocols {} - - !Operation &ref_801 + - !Operation &ref_813 operationId: Vaults_ListKeys apiVersions: - !ApiVersion @@ -12565,7 +12629,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_793 + language: !Languages &ref_805 default: name: resourceGroupName description: The name of the Resource Group to which the server belongs. @@ -12577,7 +12641,7 @@ operationGroups: schema: *ref_477 implementation: Method required: true - language: !Languages &ref_794 + language: !Languages &ref_806 default: name: vaultName description: Name of the vault @@ -12585,12 +12649,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_795 + - !Parameter &ref_807 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_796 + language: !Languages &ref_808 default: name: apiVersion description: Api Version @@ -12631,7 +12695,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_499 - language: !Languages &ref_797 + language: !Languages &ref_809 default: name: '' description: Created or updated vault @@ -12677,7 +12741,7 @@ operationGroups: name: ListKeys description: Create or update a key vault in the specified subscription. protocol: !Protocols {} - - !Operation &ref_812 + - !Operation &ref_824 operationId: Vaults_Validate apiVersions: - !ApiVersion @@ -12688,7 +12752,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_802 + language: !Languages &ref_814 default: name: resourceGroupName description: The name of the Resource Group to which the server belongs. @@ -12700,7 +12764,7 @@ operationGroups: schema: *ref_477 implementation: Method required: true - language: !Languages &ref_803 + language: !Languages &ref_815 default: name: vaultName description: Name of the vault @@ -12708,12 +12772,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_804 + - !Parameter &ref_816 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_805 + language: !Languages &ref_817 default: name: apiVersion description: Api Version @@ -12754,7 +12818,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_502 - language: !Languages &ref_806 + language: !Languages &ref_818 default: name: '' description: Created or updated vault @@ -12803,7 +12867,7 @@ operationGroups: name: Validate description: Create or update a key vault in the specified subscription. protocol: !Protocols {} - - !Operation &ref_817 + - !Operation &ref_829 operationId: Vaults_Disable apiVersions: - !ApiVersion @@ -12814,7 +12878,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_813 + language: !Languages &ref_825 default: name: resourceGroupName description: The name of the Resource Group to which the server belongs. @@ -12826,7 +12890,7 @@ operationGroups: schema: *ref_477 implementation: Method required: true - language: !Languages &ref_814 + language: !Languages &ref_826 default: name: vaultName description: Name of the vault @@ -12834,12 +12898,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_815 + - !Parameter &ref_827 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_816 + language: !Languages &ref_828 default: name: apiVersion description: Api Version @@ -12916,7 +12980,7 @@ operationGroups: name: Disable description: Create or update a key vault in the specified subscription. protocol: !Protocols {} - - !Operation &ref_830 + - !Operation &ref_842 operationId: Vaults_UpdateAccessPolicy apiVersions: - !ApiVersion @@ -12927,7 +12991,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_818 + language: !Languages &ref_830 default: name: resourceGroupName description: The name of the Resource Group to which the vault belongs. @@ -12939,7 +13003,7 @@ operationGroups: schema: *ref_477 implementation: Method required: true - language: !Languages &ref_819 + language: !Languages &ref_831 default: name: vaultName description: Name of the vault @@ -12951,7 +13015,7 @@ operationGroups: schema: *ref_505 implementation: Method required: true - language: !Languages &ref_820 + language: !Languages &ref_832 default: name: operationKind description: Name of the operation @@ -12959,12 +13023,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_821 + - !Parameter &ref_833 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_822 + language: !Languages &ref_834 default: name: apiVersion description: Api Version @@ -12993,7 +13057,7 @@ operationGroups: schema: *ref_506 implementation: Method required: true - language: !Languages &ref_823 + language: !Languages &ref_835 default: name: parameters description: Access policy to merge into the vault @@ -13037,7 +13101,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_506 - language: !Languages &ref_826 + language: !Languages &ref_838 default: name: '' description: The updated access policies @@ -13050,7 +13114,7 @@ operationGroups: - '200' - !SchemaResponse schema: *ref_506 - language: !Languages &ref_829 + language: !Languages &ref_841 default: name: '' description: The updated access policies @@ -13132,7 +13196,7 @@ operationGroups: name: UpdateAccessPolicy description: Update access policies in a key vault in the specified subscription. protocol: !Protocols {} - - !Operation &ref_839 + - !Operation &ref_851 operationId: Vaults_ListByResourceGroup apiVersions: - !ApiVersion @@ -13143,7 +13207,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_831 + language: !Languages &ref_843 default: name: resourceGroupName description: The name of the Resource Group to which the vault belongs. @@ -13154,7 +13218,7 @@ operationGroups: - !Parameter &ref_514 schema: *ref_512 implementation: Method - language: !Languages &ref_832 + language: !Languages &ref_844 default: name: top description: Maximum number of results to return. @@ -13162,12 +13226,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: query - - !Parameter &ref_833 + - !Parameter &ref_845 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_834 + language: !Languages &ref_846 default: name: apiVersion description: Api Version @@ -13208,7 +13272,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_515 - language: !Languages &ref_835 + language: !Languages &ref_847 default: name: '' description: Get information about all key vaults in the specified resource group. @@ -13324,7 +13388,7 @@ operationGroups: paging: nextLinkName: nextLink protocol: !Protocols {} - - !Operation &ref_844 + - !Operation &ref_856 operationId: Vaults_ListBySubscription apiVersions: - !ApiVersion @@ -13334,7 +13398,7 @@ operationGroups: - !Parameter &ref_516 schema: *ref_512 implementation: Method - language: !Languages &ref_840 + language: !Languages &ref_852 default: name: top description: Maximum number of results to return. @@ -13342,12 +13406,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: query - - !Parameter &ref_841 + - !Parameter &ref_853 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_842 + language: !Languages &ref_854 default: name: apiVersion description: Api Version @@ -13387,7 +13451,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_515 - language: !Languages &ref_843 + language: !Languages &ref_855 default: name: '' description: Get information about all key vaults in the specified subscription. @@ -13502,19 +13566,19 @@ operationGroups: paging: nextLinkName: nextLink protocol: !Protocols {} - - !Operation &ref_860 + - !Operation &ref_872 operationId: Vaults_ListDeleted apiVersions: - !ApiVersion version: '2021-10-01' parameters: - *ref_476 - - !Parameter &ref_845 + - !Parameter &ref_857 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_846 + language: !Languages &ref_858 default: name: apiVersion description: Api Version @@ -13553,7 +13617,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_517 - language: !Languages &ref_847 + language: !Languages &ref_859 default: name: '' description: Retrieved information about all deleted key vaults in a subscription. @@ -13610,7 +13674,7 @@ operationGroups: paging: nextLinkName: nextLink protocol: !Protocols {} - - !Operation &ref_867 + - !Operation &ref_879 operationId: Vaults_GetDeleted apiVersions: - !ApiVersion @@ -13621,7 +13685,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_861 + language: !Languages &ref_873 default: name: vaultName description: The name of the vault. @@ -13633,7 +13697,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_862 + language: !Languages &ref_874 default: name: location description: The location of the deleted vault. @@ -13641,12 +13705,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_863 + - !Parameter &ref_875 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_864 + language: !Languages &ref_876 default: name: apiVersion description: Api Version @@ -13687,7 +13751,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_117 - language: !Languages &ref_865 + language: !Languages &ref_877 default: name: '' description: Retrieved information about the deleted vault. @@ -13733,13 +13797,13 @@ operationGroups: scheduledPurgeDate: '2017-04-01T00:00:59Z' tags: {} vaultId: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/vaults/sample-vault - headers: &ref_866 {} + headers: &ref_878 {} language: !Languages default: name: GetDeleted description: Gets the deleted Azure key vault. protocol: !Protocols {} - - !Operation &ref_874 + - !Operation &ref_886 operationId: Vaults_PurgeDeleted apiVersions: - !ApiVersion @@ -13750,7 +13814,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_868 + language: !Languages &ref_880 default: name: vaultName description: The name of the soft-deleted vault. @@ -13762,7 +13826,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_869 + language: !Languages &ref_881 default: name: location description: The location of the soft-deleted vault. @@ -13770,12 +13834,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_870 + - !Parameter &ref_882 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_871 + language: !Languages &ref_883 default: name: apiVersion description: Api Version @@ -13856,28 +13920,28 @@ operationGroups: vaultName: sample-vault responses: '200': - headers: &ref_872 {} + headers: &ref_884 {} '202': - headers: &ref_873 {} + headers: &ref_885 {} x-ms-long-running-operation: true language: !Languages default: name: PurgeDeleted description: Permanently deletes the specified vault. aka Purges the deleted Azure key vault. protocol: !Protocols {} - - !Operation &ref_882 + - !Operation &ref_894 operationId: Vaults_CheckNameAvailability apiVersions: - !ApiVersion version: '2021-10-01' parameters: - *ref_476 - - !Parameter &ref_875 + - !Parameter &ref_887 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_876 + language: !Languages &ref_888 default: name: apiVersion description: Api Version @@ -13906,7 +13970,7 @@ operationGroups: schema: *ref_522 implementation: Method required: true - language: !Languages &ref_877 + language: !Languages &ref_889 default: name: vaultName description: The name of the vault. @@ -13947,7 +14011,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_525 - language: !Languages &ref_880 + language: !Languages &ref_892 default: name: '' description: OK -- Operation to check the vault name availability was successful. @@ -13995,10 +14059,10 @@ operationGroups: name: Vaults description: '' protocol: !Protocols {} - - !OperationGroup &ref_902 + - !OperationGroup &ref_914 $key: PrivateEndpointConnections operations: - - !Operation &ref_901 + - !Operation &ref_913 operationId: PrivateEndpointConnections_Get apiVersions: - !ApiVersion @@ -14010,7 +14074,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_883 + language: !Languages &ref_895 default: name: resourceGroupName description: Name of the resource group that contains the key vault. @@ -14022,7 +14086,7 @@ operationGroups: schema: *ref_477 implementation: Method required: true - language: !Languages &ref_884 + language: !Languages &ref_896 default: name: vaultName description: The name of the key vault. @@ -14034,7 +14098,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_885 + language: !Languages &ref_897 default: name: privateEndpointConnectionName description: Name of the private endpoint connection associated with the key vault. @@ -14042,12 +14106,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_886 + - !Parameter &ref_898 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_887 + language: !Languages &ref_899 default: name: apiVersion description: Api Version @@ -14088,7 +14152,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_124 - language: !Languages &ref_888 + language: !Languages &ref_900 default: name: '' description: Private endpoint connection successfully returned. @@ -14147,13 +14211,13 @@ operationGroups: status: Approved provisioningState: Succeeded '204': - headers: &ref_900 {} + headers: &ref_912 {} language: !Languages default: name: Get description: Gets the specified private endpoint connection associated with the key vault. protocol: !Protocols {} - - !Operation &ref_910 + - !Operation &ref_922 operationId: PrivateEndpointConnections_Put apiVersions: - !ApiVersion @@ -14165,7 +14229,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_903 + language: !Languages &ref_915 default: name: resourceGroupName description: Name of the resource group that contains the key vault. @@ -14177,7 +14241,7 @@ operationGroups: schema: *ref_477 implementation: Method required: true - language: !Languages &ref_904 + language: !Languages &ref_916 default: name: vaultName description: The name of the key vault. @@ -14189,7 +14253,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_905 + language: !Languages &ref_917 default: name: privateEndpointConnectionName description: Name of the private endpoint connection associated with the key vault. @@ -14197,12 +14261,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_906 + - !Parameter &ref_918 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_907 + language: !Languages &ref_919 default: name: apiVersion description: Api Version @@ -14230,7 +14294,7 @@ operationGroups: schema: *ref_124 implementation: Method required: true - language: !Languages &ref_908 + language: !Languages &ref_920 default: name: properties description: The intended state of private endpoint connection. @@ -14274,7 +14338,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_124 - language: !Languages &ref_909 + language: !Languages &ref_921 default: name: '' description: The state of private endpoint connection was updated successfully. @@ -14349,7 +14413,7 @@ operationGroups: name: Put description: Updates the specified private endpoint connection associated with the key vault. protocol: !Protocols {} - - !Operation &ref_918 + - !Operation &ref_930 operationId: PrivateEndpointConnections_Delete apiVersions: - !ApiVersion @@ -14361,7 +14425,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_911 + language: !Languages &ref_923 default: name: resourceGroupName description: Name of the resource group that contains the key vault. @@ -14373,7 +14437,7 @@ operationGroups: schema: *ref_477 implementation: Method required: true - language: !Languages &ref_912 + language: !Languages &ref_924 default: name: vaultName description: The name of the key vault. @@ -14385,7 +14449,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_913 + language: !Languages &ref_925 default: name: privateEndpointConnectionName description: Name of the private endpoint connection associated with the key vault. @@ -14393,12 +14457,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_914 + - !Parameter &ref_926 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_915 + language: !Languages &ref_927 default: name: apiVersion description: Api Version @@ -14439,7 +14503,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_124 - language: !Languages &ref_916 + language: !Languages &ref_928 default: name: '' description: The private endpoint connection was successfully deleted. @@ -14515,7 +14579,7 @@ operationGroups: properties: provisioningState: Disconnected '202': - headers: &ref_917 + headers: &ref_929 Location: https://some.endpoint.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/vaults/sample-vault/privateEndpointConnections/sample-pec?operationid=25334578 Retry-After: '60' '204': {} @@ -14525,7 +14589,7 @@ operationGroups: name: Delete description: Deletes the specified private endpoint connection associated with the key vault. protocol: !Protocols {} - - !Operation &ref_926 + - !Operation &ref_938 operationId: PrivateEndpointConnections_ListByResource apiVersions: - !ApiVersion @@ -14537,7 +14601,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_919 + language: !Languages &ref_931 default: name: resourceGroupName description: Name of the resource group that contains the key vault. @@ -14549,7 +14613,7 @@ operationGroups: schema: *ref_477 implementation: Method required: true - language: !Languages &ref_920 + language: !Languages &ref_932 default: name: vaultName description: The name of the key vault. @@ -14557,12 +14621,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_921 + - !Parameter &ref_933 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_922 + language: !Languages &ref_934 default: name: apiVersion description: Api Version @@ -14602,7 +14666,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_541 - language: !Languages &ref_923 + language: !Languages &ref_935 default: name: '' description: Get information about all private endpoint connections in the specified resource group. @@ -14678,10 +14742,10 @@ operationGroups: name: PrivateEndpointConnections description: '' protocol: !Protocols {} - - !OperationGroup &ref_940 + - !OperationGroup &ref_952 $key: PrivateLinkResources operations: - - !Operation &ref_939 + - !Operation &ref_951 operationId: PrivateLinkResources_ListByVault apiVersions: - !ApiVersion @@ -14693,7 +14757,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_927 + language: !Languages &ref_939 default: name: resourceGroupName description: Name of the resource group that contains the key vault. @@ -14705,7 +14769,7 @@ operationGroups: schema: *ref_477 implementation: Method required: true - language: !Languages &ref_928 + language: !Languages &ref_940 default: name: vaultName description: The name of the key vault. @@ -14713,12 +14777,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_929 + - !Parameter &ref_941 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_930 + language: !Languages &ref_942 default: name: apiVersion description: Api Version @@ -14758,7 +14822,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_544 - language: !Languages &ref_931 + language: !Languages &ref_943 default: name: '' description: Successfully retrieved private link resources. @@ -14814,10 +14878,10 @@ operationGroups: name: PrivateLinkResources description: '' protocol: !Protocols {} - - !OperationGroup &ref_961 + - !OperationGroup &ref_973 $key: VirtualMachineExtensionImages operations: - - !Operation &ref_960 + - !Operation &ref_972 operationId: VirtualMachineExtensionImages_Get apiVersions: - !ApiVersion @@ -14828,7 +14892,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_941 + language: !Languages &ref_953 default: name: location description: The name of a supported Azure region. @@ -14840,7 +14904,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_942 + language: !Languages &ref_954 default: name: publisherName description: '' @@ -14852,7 +14916,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_943 + language: !Languages &ref_955 default: name: type description: '' @@ -14864,7 +14928,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_944 + language: !Languages &ref_956 default: name: version description: '' @@ -14872,12 +14936,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_945 + - !Parameter &ref_957 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_946 + language: !Languages &ref_958 default: name: apiVersion description: Api Version @@ -14920,7 +14984,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_144 - language: !Languages &ref_947 + language: !Languages &ref_959 default: name: '' description: OK @@ -14974,7 +15038,7 @@ operationGroups: name: Get description: Gets a virtual machine extension image. protocol: !Protocols {} - - !Operation &ref_967 + - !Operation &ref_979 operationId: VirtualMachineExtensionImages_ListTypes apiVersions: - !ApiVersion @@ -14985,7 +15049,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_962 + language: !Languages &ref_974 default: name: location description: The name of a supported Azure region. @@ -14997,7 +15061,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_963 + language: !Languages &ref_975 default: name: publisherName description: '' @@ -15005,12 +15069,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_964 + - !Parameter &ref_976 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_965 + language: !Languages &ref_977 default: name: apiVersion description: Api Version @@ -15051,7 +15115,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_551 - language: !Languages &ref_966 + language: !Languages &ref_978 default: name: '' description: OK @@ -15101,7 +15165,7 @@ operationGroups: name: ListTypes description: Gets a list of virtual machine extension image types. protocol: !Protocols {} - - !Operation &ref_977 + - !Operation &ref_989 operationId: VirtualMachineExtensionImages_ListVersions apiVersions: - !ApiVersion @@ -15112,7 +15176,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_968 + language: !Languages &ref_980 default: name: location description: The name of a supported Azure region. @@ -15124,7 +15188,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_969 + language: !Languages &ref_981 default: name: publisherName description: '' @@ -15136,7 +15200,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_970 + language: !Languages &ref_982 default: name: type description: '' @@ -15147,7 +15211,7 @@ operationGroups: - !Parameter &ref_556 schema: *ref_5 implementation: Method - language: !Languages &ref_971 + language: !Languages &ref_983 default: name: filter description: The filter to apply on the operation. @@ -15158,7 +15222,7 @@ operationGroups: - !Parameter &ref_557 schema: *ref_552 implementation: Method - language: !Languages &ref_972 + language: !Languages &ref_984 default: name: top description: '' @@ -15169,7 +15233,7 @@ operationGroups: - !Parameter &ref_558 schema: *ref_5 implementation: Method - language: !Languages &ref_973 + language: !Languages &ref_985 default: name: orderby description: '' @@ -15177,12 +15241,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: query - - !Parameter &ref_974 + - !Parameter &ref_986 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_975 + language: !Languages &ref_987 default: name: apiVersion description: Api Version @@ -15227,7 +15291,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_559 - language: !Languages &ref_976 + language: !Languages &ref_988 default: name: '' description: OK @@ -15288,10 +15352,10 @@ operationGroups: name: VirtualMachineExtensionImages description: '' protocol: !Protocols {} - - !OperationGroup &ref_996 + - !OperationGroup &ref_1008 $key: DiskEncryptionSets operations: - - !Operation &ref_995 + - !Operation &ref_1007 operationId: DiskEncryptionSets_CreateOrUpdate apiVersions: - !ApiVersion @@ -15303,7 +15367,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_978 + language: !Languages &ref_990 default: name: resourceGroupName description: Name of the resource group that contains the key vault. @@ -15315,7 +15379,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_979 + language: !Languages &ref_991 default: name: diskEncryptionSetName description: >- @@ -15325,12 +15389,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_980 + - !Parameter &ref_992 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_981 + language: !Languages &ref_993 default: name: apiVersion description: Api Version @@ -15358,7 +15422,7 @@ operationGroups: schema: *ref_145 implementation: Method required: true - language: !Languages &ref_982 + language: !Languages &ref_994 default: name: diskEncryptionSet description: disk encryption set object supplied in the body of the Put disk encryption set operation. @@ -15401,7 +15465,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_145 - language: !Languages &ref_991 + language: !Languages &ref_1003 default: name: '' description: OK @@ -15414,7 +15478,7 @@ operationGroups: - '200' - !SchemaResponse schema: *ref_145 - language: !Languages &ref_994 + language: !Languages &ref_1006 default: name: '' description: Accepted @@ -15560,7 +15624,7 @@ operationGroups: name: CreateOrUpdate description: Creates or updates a disk encryption set protocol: !Protocols {} - - !Operation &ref_1023 + - !Operation &ref_1035 operationId: DiskEncryptionSets_Update apiVersions: - !ApiVersion @@ -15572,7 +15636,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_1002 + language: !Languages &ref_1014 default: name: resourceGroupName description: Name of the resource group that contains the key vault. @@ -15584,7 +15648,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1003 + language: !Languages &ref_1015 default: name: diskEncryptionSetName description: >- @@ -15594,12 +15658,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1004 + - !Parameter &ref_1016 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1005 + language: !Languages &ref_1017 default: name: apiVersion description: Api Version @@ -15627,7 +15691,7 @@ operationGroups: schema: *ref_564 implementation: Method required: true - language: !Languages &ref_1006 + language: !Languages &ref_1018 default: name: diskEncryptionSet description: disk encryption set object supplied in the body of the Patch disk encryption set operation. @@ -15670,7 +15734,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_145 - language: !Languages &ref_1014 + language: !Languages &ref_1026 default: name: '' description: OK @@ -15683,7 +15747,7 @@ operationGroups: - '200' - !SchemaResponse schema: *ref_145 - language: !Languages &ref_1021 + language: !Languages &ref_1033 default: name: '' description: Accepted @@ -15739,7 +15803,7 @@ operationGroups: keyUrl: https://myvaultdifferentsub.vault-int.azure-int.net/keys/keyName/keyVersion1 encryptionType: EncryptionAtRestWithCustomerKey previousKeys: [] - headers: &ref_1022 + headers: &ref_1034 Location: https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/myDiskEncryptionSet?api-version=2021-04-01 Update a disk encryption set with rotationToLatestKeyVersionEnabled set to true - Updating: parameters: @@ -15786,7 +15850,7 @@ operationGroups: keyUrl: https://myvaultdifferentsub.vault-int.azure-int.net/keys/keyName/keyVersion1 encryptionType: EncryptionAtRestWithCustomerKey previousKeys: [] - headers: &ref_1024 + headers: &ref_1036 Location: https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/myDiskEncryptionSet?api-version=2021-04-01 Update a disk encryption set.: parameters: @@ -15838,7 +15902,7 @@ operationGroups: tags: department: Development project: Encryption - headers: &ref_1026 + headers: &ref_1038 Location: https://management.azure.com/subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/myDiskEncryptionSet?api-version=2021-04-01 x-ms-long-running-operation: true language: !Languages @@ -15846,7 +15910,7 @@ operationGroups: name: Update description: Updates (patches) a disk encryption set. protocol: !Protocols {} - - !Operation &ref_1032 + - !Operation &ref_1044 operationId: DiskEncryptionSets_Get apiVersions: - !ApiVersion @@ -15858,7 +15922,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_1027 + language: !Languages &ref_1039 default: name: resourceGroupName description: Name of the resource group that contains the key vault. @@ -15870,7 +15934,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1028 + language: !Languages &ref_1040 default: name: diskEncryptionSetName description: >- @@ -15880,12 +15944,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1029 + - !Parameter &ref_1041 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1030 + language: !Languages &ref_1042 default: name: apiVersion description: Api Version @@ -15925,7 +15989,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_145 - language: !Languages &ref_1031 + language: !Languages &ref_1043 default: name: '' description: OK @@ -15999,7 +16063,7 @@ operationGroups: name: Get description: Gets information about a disk encryption set. protocol: !Protocols {} - - !Operation &ref_1037 + - !Operation &ref_1049 operationId: DiskEncryptionSets_Delete apiVersions: - !ApiVersion @@ -16011,7 +16075,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_1033 + language: !Languages &ref_1045 default: name: resourceGroupName description: Name of the resource group that contains the key vault. @@ -16023,7 +16087,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1034 + language: !Languages &ref_1046 default: name: diskEncryptionSetName description: >- @@ -16033,12 +16097,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1035 + - !Parameter &ref_1047 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1036 + language: !Languages &ref_1048 default: name: apiVersion description: Api Version @@ -16106,7 +16170,7 @@ operationGroups: name: Delete description: Deletes a disk encryption set. protocol: !Protocols {} - - !Operation &ref_1044 + - !Operation &ref_1056 operationId: DiskEncryptionSets_ListByResourceGroup apiVersions: - !ApiVersion @@ -16118,7 +16182,7 @@ operationGroups: schema: *ref_2 implementation: Method required: true - language: !Languages &ref_1038 + language: !Languages &ref_1050 default: name: resourceGroupName description: Name of the resource group that contains the key vault. @@ -16126,12 +16190,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1039 + - !Parameter &ref_1051 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1040 + language: !Languages &ref_1052 default: name: apiVersion description: Api Version @@ -16170,7 +16234,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_574 - language: !Languages &ref_1041 + language: !Languages &ref_1053 default: name: '' description: OK @@ -16236,7 +16300,7 @@ operationGroups: paging: nextLinkName: nextLink protocol: !Protocols {} - - !Operation &ref_1048 + - !Operation &ref_1060 operationId: DiskEncryptionSets_List apiVersions: - !ApiVersion @@ -16244,12 +16308,12 @@ operationGroups: parameters: - *ref_476 - *ref_479 - - !Parameter &ref_1045 + - !Parameter &ref_1057 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1046 + language: !Languages &ref_1058 default: name: apiVersion description: Api Version @@ -16287,7 +16351,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_574 - language: !Languages &ref_1047 + language: !Languages &ref_1059 default: name: '' description: OK @@ -16357,10 +16421,10 @@ operationGroups: name: DiskEncryptionSets description: '' protocol: !Protocols {} - - !OperationGroup &ref_1081 + - !OperationGroup &ref_1093 $key: ManagedHsms operations: - - !Operation &ref_1080 + - !Operation &ref_1092 operationId: ManagedHsms_CreateOrUpdate apiVersions: - !ApiVersion @@ -16371,7 +16435,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1049 + language: !Languages &ref_1061 default: name: resourceGroupName description: Name of the resource group that contains the managed HSM pool. @@ -16383,7 +16447,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1050 + language: !Languages &ref_1062 default: name: name description: Name of the managed HSM Pool @@ -16391,12 +16455,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1051 + - !Parameter &ref_1063 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1052 + language: !Languages &ref_1064 default: name: apiVersion description: Api Version @@ -16425,7 +16489,7 @@ operationGroups: schema: *ref_157 implementation: Method required: true - language: !Languages &ref_1053 + language: !Languages &ref_1065 default: name: parameters description: Parameters to create or update the managed HSM Pool @@ -16468,7 +16532,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_157 - language: !Languages &ref_1072 + language: !Languages &ref_1084 default: name: '' description: Created or updated managed HSM Pool @@ -16481,7 +16545,7 @@ operationGroups: - '200' - !SchemaResponse schema: *ref_157 - language: !Languages &ref_1079 + language: !Languages &ref_1091 default: name: '' description: Accepted and the operation will complete asynchronously. @@ -16522,7 +16586,7 @@ operationGroups: networkAcls: virtualNetworkRules: - id: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default - protectedSettings: &ref_1057 + protectedSettings: &ref_1069 protected1: value2 protected2: 10 protected3: false @@ -16595,7 +16659,7 @@ operationGroups: name: CreateOrUpdate description: Create or update a managed HSM Pool in the specified subscription. protocol: !Protocols {} - - !Operation &ref_1089 + - !Operation &ref_1101 operationId: ManagedHsms_Update apiVersions: - !ApiVersion @@ -16606,7 +16670,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1082 + language: !Languages &ref_1094 default: name: resourceGroupName description: Name of the resource group that contains the managed HSM pool. @@ -16618,7 +16682,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1083 + language: !Languages &ref_1095 default: name: name description: Name of the managed HSM Pool @@ -16626,12 +16690,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1084 + - !Parameter &ref_1096 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1085 + language: !Languages &ref_1097 default: name: apiVersion description: Api Version @@ -16660,7 +16724,7 @@ operationGroups: schema: *ref_157 implementation: Method required: true - language: !Languages &ref_1086 + language: !Languages &ref_1098 default: name: parameters description: Parameters to patch the managed HSM Pool @@ -16703,7 +16767,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_157 - language: !Languages &ref_1087 + language: !Languages &ref_1099 default: name: '' description: Patched managed HSM Pool @@ -16716,7 +16780,7 @@ operationGroups: - '200' - !SchemaResponse schema: *ref_157 - language: !Languages &ref_1088 + language: !Languages &ref_1100 default: name: '' description: Accepted and the operation will complete asynchronously. @@ -16807,7 +16871,7 @@ operationGroups: name: Update description: Update a managed HSM Pool in the specified subscription. protocol: !Protocols {} - - !Operation &ref_1094 + - !Operation &ref_1106 operationId: ManagedHsms_Delete apiVersions: - !ApiVersion @@ -16818,7 +16882,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1090 + language: !Languages &ref_1102 default: name: resourceGroupName description: Name of the resource group that contains the managed HSM pool. @@ -16830,7 +16894,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1091 + language: !Languages &ref_1103 default: name: name description: The name of the managed HSM Pool to delete @@ -16838,12 +16902,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1092 + - !Parameter &ref_1104 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1093 + language: !Languages &ref_1105 default: name: apiVersion description: Api Version @@ -16941,7 +17005,7 @@ operationGroups: name: Delete description: Deletes the specified managed HSM Pool. protocol: !Protocols {} - - !Operation &ref_1101 + - !Operation &ref_1113 operationId: ManagedHsms_Get apiVersions: - !ApiVersion @@ -16952,7 +17016,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1095 + language: !Languages &ref_1107 default: name: resourceGroupName description: Name of the resource group that contains the managed HSM pool. @@ -16964,7 +17028,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1096 + language: !Languages &ref_1108 default: name: name description: The name of the managed HSM Pool. @@ -16972,12 +17036,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1097 + - !Parameter &ref_1109 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1098 + language: !Languages &ref_1110 default: name: apiVersion description: Api Version @@ -17018,7 +17082,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_157 - language: !Languages &ref_1099 + language: !Languages &ref_1111 default: name: '' description: Retrieved managed HSM Pool @@ -17093,7 +17157,7 @@ operationGroups: Dept: hsm Environment: dogfood '202': - headers: &ref_1100 + headers: &ref_1112 Location: >- https://some.endpoint.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.KeyVault/managedHSMs/hsm1?api-version=2021-10-01&kv-operation=abJjb2RkIjoiAGVsZXRlTWFuYWdlZEhzbUFzeW5jYm9 Retry-After: '60' @@ -17103,7 +17167,7 @@ operationGroups: name: Get description: Gets the specified managed HSM Pool. protocol: !Protocols {} - - !Operation &ref_1108 + - !Operation &ref_1120 operationId: ManagedHsms_ListByResourceGroup apiVersions: - !ApiVersion @@ -17114,7 +17178,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1102 + language: !Languages &ref_1114 default: name: resourceGroupName description: Name of the resource group that contains the managed HSM pool. @@ -17133,12 +17197,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: query - - !Parameter &ref_1103 + - !Parameter &ref_1115 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1104 + language: !Languages &ref_1116 default: name: apiVersion description: Api Version @@ -17179,7 +17243,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_590 - language: !Languages &ref_1105 + language: !Languages &ref_1117 default: name: '' description: Get information about all managed HSM Pools in the specified resource group. @@ -17265,7 +17329,7 @@ operationGroups: paging: nextLinkName: nextLink protocol: !Protocols {} - - !Operation &ref_1112 + - !Operation &ref_1124 operationId: ManagedHsms_ListBySubscription apiVersions: - !ApiVersion @@ -17283,12 +17347,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: query - - !Parameter &ref_1109 + - !Parameter &ref_1121 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1110 + language: !Languages &ref_1122 default: name: apiVersion description: Api Version @@ -17328,7 +17392,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_590 - language: !Languages &ref_1111 + language: !Languages &ref_1123 default: name: '' description: Get information about all managed HSM Pools in the specified subscription. @@ -17413,19 +17477,19 @@ operationGroups: paging: nextLinkName: nextLink protocol: !Protocols {} - - !Operation &ref_1128 + - !Operation &ref_1140 operationId: ManagedHsms_ListDeleted apiVersions: - !ApiVersion version: '2021-10-01' parameters: - *ref_476 - - !Parameter &ref_1113 + - !Parameter &ref_1125 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1114 + language: !Languages &ref_1126 default: name: apiVersion description: Api Version @@ -17464,7 +17528,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_592 - language: !Languages &ref_1115 + language: !Languages &ref_1127 default: name: '' description: Retrieved information about all managed HSMs in the specified subscription. @@ -17533,7 +17597,7 @@ operationGroups: paging: nextLinkName: nextLink protocol: !Protocols {} - - !Operation &ref_1134 + - !Operation &ref_1146 operationId: ManagedHsms_GetDeleted apiVersions: - !ApiVersion @@ -17544,7 +17608,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1129 + language: !Languages &ref_1141 default: name: name description: The name of the deleted managed HSM. @@ -17556,7 +17620,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1130 + language: !Languages &ref_1142 default: name: location description: The location of the deleted managed HSM. @@ -17564,12 +17628,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1131 + - !Parameter &ref_1143 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1132 + language: !Languages &ref_1144 default: name: apiVersion description: Api Version @@ -17610,7 +17674,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_212 - language: !Languages &ref_1133 + language: !Languages &ref_1145 default: name: '' description: Retrieved information about the specified deleted managed HSM. @@ -17663,7 +17727,7 @@ operationGroups: name: GetDeleted description: Gets the specified deleted managed HSM. protocol: !Protocols {} - - !Operation &ref_1139 + - !Operation &ref_1151 operationId: ManagedHsms_PurgeDeleted apiVersions: - !ApiVersion @@ -17674,7 +17738,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1135 + language: !Languages &ref_1147 default: name: name description: The name of the soft-deleted managed HSM. @@ -17686,7 +17750,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1136 + language: !Languages &ref_1148 default: name: location description: The location of the soft-deleted managed HSM. @@ -17694,12 +17758,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1137 + - !Parameter &ref_1149 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1138 + language: !Languages &ref_1150 default: name: apiVersion description: Api Version @@ -17782,22 +17846,22 @@ operationGroups: name: ManagedHsms description: '' protocol: !Protocols {} - - !OperationGroup &ref_1159 + - !OperationGroup &ref_1171 $key: MHSMPrivateEndpointConnections operations: - - !Operation &ref_1158 + - !Operation &ref_1170 operationId: MHSMPrivateEndpointConnections_ListByResource apiVersions: - !ApiVersion version: '2021-10-01' parameters: - *ref_476 - - !Parameter &ref_1140 + - !Parameter &ref_1152 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1141 + language: !Languages &ref_1153 default: name: apiVersion description: Api Version @@ -17810,7 +17874,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1142 + language: !Languages &ref_1154 default: name: resourceGroupName description: Name of the resource group that contains the managed HSM pool. @@ -17822,7 +17886,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1143 + language: !Languages &ref_1155 default: name: name description: Name of the managed HSM Pool @@ -17862,7 +17926,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_599 - language: !Languages &ref_1144 + language: !Languages &ref_1156 default: name: '' description: Get information about all managed HSM Pools in the specified subscription. @@ -17933,7 +17997,7 @@ operationGroups: paging: nextLinkName: nextLink protocol: !Protocols {} - - !Operation &ref_1166 + - !Operation &ref_1178 operationId: MHSMPrivateEndpointConnections_Get apiVersions: - !ApiVersion @@ -17945,7 +18009,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1160 + language: !Languages &ref_1172 default: name: resourceGroupName description: Name of the resource group that contains the managed HSM pool. @@ -17957,7 +18021,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1161 + language: !Languages &ref_1173 default: name: name description: Name of the managed HSM Pool @@ -17969,7 +18033,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1162 + language: !Languages &ref_1174 default: name: privateEndpointConnectionName description: Name of the private endpoint connection associated with the managed hsm pool. @@ -17977,12 +18041,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1163 + - !Parameter &ref_1175 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1164 + language: !Languages &ref_1176 default: name: apiVersion description: Api Version @@ -18023,7 +18087,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_165 - language: !Languages &ref_1165 + language: !Languages &ref_1177 default: name: '' description: Private endpoint connection successfully returned. @@ -18077,7 +18141,7 @@ operationGroups: name: Get description: Gets the specified private endpoint connection associated with the managed HSM Pool. protocol: !Protocols {} - - !Operation &ref_1174 + - !Operation &ref_1186 operationId: MHSMPrivateEndpointConnections_Put apiVersions: - !ApiVersion @@ -18089,7 +18153,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1167 + language: !Languages &ref_1179 default: name: resourceGroupName description: Name of the resource group that contains the managed HSM pool. @@ -18101,7 +18165,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1168 + language: !Languages &ref_1180 default: name: name description: Name of the managed HSM Pool @@ -18113,7 +18177,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1169 + language: !Languages &ref_1181 default: name: privateEndpointConnectionName description: Name of the private endpoint connection associated with the managed hsm pool. @@ -18121,12 +18185,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1170 + - !Parameter &ref_1182 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1171 + language: !Languages &ref_1183 default: name: apiVersion description: Api Version @@ -18154,7 +18218,7 @@ operationGroups: schema: *ref_165 implementation: Method required: true - language: !Languages &ref_1172 + language: !Languages &ref_1184 default: name: properties description: The intended state of private endpoint connection. @@ -18198,7 +18262,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_165 - language: !Languages &ref_1173 + language: !Languages &ref_1185 default: name: '' description: The state of private endpoint connection was updated successfully. @@ -18271,7 +18335,7 @@ operationGroups: name: Put description: Updates the specified private endpoint connection associated with the managed hsm pool. protocol: !Protocols {} - - !Operation &ref_1182 + - !Operation &ref_1194 operationId: MHSMPrivateEndpointConnections_Delete apiVersions: - !ApiVersion @@ -18283,7 +18347,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1175 + language: !Languages &ref_1187 default: name: resourceGroupName description: Name of the resource group that contains the managed HSM pool. @@ -18295,7 +18359,7 @@ operationGroups: schema: *ref_608 implementation: Method required: true - language: !Languages &ref_1176 + language: !Languages &ref_1188 default: name: name description: Name of the managed HSM Pool @@ -18307,7 +18371,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1177 + language: !Languages &ref_1189 default: name: privateEndpointConnectionName description: Name of the private endpoint connection associated with the managed hsm pool. @@ -18315,12 +18379,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1178 + - !Parameter &ref_1190 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1179 + language: !Languages &ref_1191 default: name: apiVersion description: Api Version @@ -18361,7 +18425,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_165 - language: !Languages &ref_1180 + language: !Languages &ref_1192 default: name: '' description: The private endpoint connection was successfully deleted. @@ -18437,7 +18501,7 @@ operationGroups: properties: provisioningState: Disconnected '202': - headers: &ref_1181 + headers: &ref_1193 Location: https://some.endpoint.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/managedhsms/sample-mhsm/privateEndpointConnections/sample-pec?operationid=25334578 Retry-After: '60' '204': {} @@ -18452,10 +18516,10 @@ operationGroups: name: MhsmPrivateEndpointConnections description: '' protocol: !Protocols {} - - !OperationGroup &ref_1196 + - !OperationGroup &ref_1208 $key: MHSMPrivateLinkResources operations: - - !Operation &ref_1195 + - !Operation &ref_1207 operationId: MHSMPrivateLinkResources_ListByMHSMResource apiVersions: - !ApiVersion @@ -18467,7 +18531,7 @@ operationGroups: schema: *ref_5 implementation: Method required: true - language: !Languages &ref_1183 + language: !Languages &ref_1195 default: name: resourceGroupName description: Name of the resource group that contains the managed HSM pool. @@ -18479,7 +18543,7 @@ operationGroups: schema: *ref_613 implementation: Method required: true - language: !Languages &ref_1184 + language: !Languages &ref_1196 default: name: name description: Name of the managed HSM Pool @@ -18487,12 +18551,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1185 + - !Parameter &ref_1197 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1186 + language: !Languages &ref_1198 default: name: apiVersion description: Api Version @@ -18532,7 +18596,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_616 - language: !Languages &ref_1187 + language: !Languages &ref_1199 default: name: '' description: Successfully retrieved private link resources. @@ -18588,10 +18652,10 @@ operationGroups: name: MhsmPrivateLinkResources description: '' protocol: !Protocols {} - - !OperationGroup &ref_1202 + - !OperationGroup &ref_1214 $key: FirewallPolicies operations: - - !Operation &ref_1201 + - !Operation &ref_1213 operationId: FirewallPolicies_Delete apiVersions: - !ApiVersion @@ -18602,7 +18666,7 @@ operationGroups: schema: *ref_6 implementation: Method required: true - language: !Languages &ref_1197 + language: !Languages &ref_1209 default: name: resourceGroupName description: The name of the resource group. @@ -18614,7 +18678,7 @@ operationGroups: schema: *ref_6 implementation: Method required: true - language: !Languages &ref_1198 + language: !Languages &ref_1210 default: name: firewallPolicyName description: The name of the Firewall Policy. @@ -18622,12 +18686,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1199 + - !Parameter &ref_1211 schema: *ref_617 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1200 + language: !Languages &ref_1212 default: name: apiVersion description: Api Version @@ -18727,7 +18791,7 @@ operationGroups: name: Delete description: Deletes the specified Firewall Policy. protocol: !Protocols {} - - !Operation &ref_1272 + - !Operation &ref_1284 operationId: FirewallPolicies_Get apiVersions: - !ApiVersion @@ -18738,7 +18802,7 @@ operationGroups: schema: *ref_6 implementation: Method required: true - language: !Languages &ref_1203 + language: !Languages &ref_1215 default: name: resourceGroupName description: The name of the resource group. @@ -18750,7 +18814,7 @@ operationGroups: schema: *ref_6 implementation: Method required: true - language: !Languages &ref_1204 + language: !Languages &ref_1216 default: name: firewallPolicyName description: The name of the Firewall Policy. @@ -18758,12 +18822,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1205 + - !Parameter &ref_1217 schema: *ref_617 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1206 + language: !Languages &ref_1218 default: name: apiVersion description: Api Version @@ -18816,7 +18880,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_214 - language: !Languages &ref_1207 + language: !Languages &ref_1219 default: name: '' description: Request successful. The operation returns a Firewall Policy resource. @@ -18924,7 +18988,7 @@ operationGroups: name: Get description: Gets the specified Firewall Policy. protocol: !Protocols {} - - !Operation &ref_1282 + - !Operation &ref_1294 operationId: FirewallPolicies_CreateOrUpdate apiVersions: - !ApiVersion @@ -18935,7 +18999,7 @@ operationGroups: schema: *ref_6 implementation: Method required: true - language: !Languages &ref_1273 + language: !Languages &ref_1285 default: name: resourceGroupName description: The name of the resource group. @@ -18947,7 +19011,7 @@ operationGroups: schema: *ref_6 implementation: Method required: true - language: !Languages &ref_1274 + language: !Languages &ref_1286 default: name: firewallPolicyName description: The name of the Firewall Policy. @@ -18955,12 +19019,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1275 + - !Parameter &ref_1287 schema: *ref_617 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1276 + language: !Languages &ref_1288 default: name: apiVersion description: Api Version @@ -18989,7 +19053,7 @@ operationGroups: schema: *ref_214 implementation: Method required: true - language: !Languages &ref_1277 + language: !Languages &ref_1289 default: name: parameters description: Parameters supplied to the create or update Firewall Policy operation. @@ -19032,7 +19096,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_214 - language: !Languages &ref_1280 + language: !Languages &ref_1292 default: name: '' description: Request successful. The operation returns the resulting FirewallPolicy resource. @@ -19045,7 +19109,7 @@ operationGroups: - '200' - !SchemaResponse schema: *ref_214 - language: !Languages &ref_1281 + language: !Languages &ref_1293 default: name: '' description: Request received successfully. The operation returns the resulting FirewallPolicy resource. @@ -19484,7 +19548,7 @@ operationGroups: name: CreateOrUpdate description: Creates or updates the specified Firewall Policy. protocol: !Protocols {} - - !Operation &ref_1288 + - !Operation &ref_1300 operationId: FirewallPolicies_List apiVersions: - !ApiVersion @@ -19495,7 +19559,7 @@ operationGroups: schema: *ref_6 implementation: Method required: true - language: !Languages &ref_1283 + language: !Languages &ref_1295 default: name: resourceGroupName description: The name of the resource group. @@ -19503,12 +19567,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1284 + - !Parameter &ref_1296 schema: *ref_617 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1285 + language: !Languages &ref_1297 default: name: apiVersion description: Api Version @@ -19548,7 +19612,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_628 - language: !Languages &ref_1286 + language: !Languages &ref_1298 default: name: '' description: Success. The operation returns a list of FirewallPolicy resources. @@ -19616,19 +19680,19 @@ operationGroups: paging: nextLinkName: nextLink protocol: !Protocols {} - - !Operation &ref_1292 + - !Operation &ref_1304 operationId: FirewallPolicies_ListAll apiVersions: - !ApiVersion version: '2021-02-01' parameters: - *ref_476 - - !Parameter &ref_1289 + - !Parameter &ref_1301 schema: *ref_617 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1290 + language: !Languages &ref_1302 default: name: apiVersion description: Api Version @@ -19667,7 +19731,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_628 - language: !Languages &ref_1291 + language: !Languages &ref_1303 default: name: '' description: Success. The operation returns a list of FirewallPolicy resources. @@ -19739,10 +19803,10 @@ operationGroups: name: FirewallPolicies description: '' protocol: !Protocols {} - - !OperationGroup &ref_1299 + - !OperationGroup &ref_1311 $key: FirewallPolicyRuleCollectionGroups operations: - - !Operation &ref_1298 + - !Operation &ref_1310 operationId: FirewallPolicyRuleCollectionGroups_Delete apiVersions: - !ApiVersion @@ -19753,7 +19817,7 @@ operationGroups: schema: *ref_6 implementation: Method required: true - language: !Languages &ref_1293 + language: !Languages &ref_1305 default: name: resourceGroupName description: The name of the resource group. @@ -19765,7 +19829,7 @@ operationGroups: schema: *ref_6 implementation: Method required: true - language: !Languages &ref_1294 + language: !Languages &ref_1306 default: name: firewallPolicyName description: The name of the Firewall Policy. @@ -19777,7 +19841,7 @@ operationGroups: schema: *ref_6 implementation: Method required: true - language: !Languages &ref_1295 + language: !Languages &ref_1307 default: name: ruleCollectionGroupName description: The name of the FirewallPolicyRuleCollectionGroup. @@ -19785,12 +19849,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1296 + - !Parameter &ref_1308 schema: *ref_617 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1297 + language: !Languages &ref_1309 default: name: apiVersion description: Api Version @@ -19892,7 +19956,7 @@ operationGroups: name: Delete description: Deletes the specified FirewallPolicyRuleCollectionGroup. protocol: !Protocols {} - - !Operation &ref_1329 + - !Operation &ref_1341 operationId: FirewallPolicyRuleCollectionGroups_Get apiVersions: - !ApiVersion @@ -19903,7 +19967,7 @@ operationGroups: schema: *ref_6 implementation: Method required: true - language: !Languages &ref_1300 + language: !Languages &ref_1312 default: name: resourceGroupName description: The name of the resource group. @@ -19915,7 +19979,7 @@ operationGroups: schema: *ref_6 implementation: Method required: true - language: !Languages &ref_1301 + language: !Languages &ref_1313 default: name: firewallPolicyName description: The name of the Firewall Policy. @@ -19927,7 +19991,7 @@ operationGroups: schema: *ref_6 implementation: Method required: true - language: !Languages &ref_1302 + language: !Languages &ref_1314 default: name: ruleCollectionGroupName description: The name of the FirewallPolicyRuleCollectionGroup. @@ -19935,12 +19999,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1303 + - !Parameter &ref_1315 schema: *ref_617 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1304 + language: !Languages &ref_1316 default: name: apiVersion description: Api Version @@ -19982,7 +20046,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_276 - language: !Languages &ref_1305 + language: !Languages &ref_1317 default: name: '' description: Request successful. The operation returns a FirewallPolicyRuleCollectionGroup resource. @@ -20151,7 +20215,7 @@ operationGroups: name: Get description: Gets the specified FirewallPolicyRuleCollectionGroup. protocol: !Protocols {} - - !Operation &ref_1353 + - !Operation &ref_1365 operationId: FirewallPolicyRuleCollectionGroups_CreateOrUpdate apiVersions: - !ApiVersion @@ -20162,7 +20226,7 @@ operationGroups: schema: *ref_6 implementation: Method required: true - language: !Languages &ref_1345 + language: !Languages &ref_1357 default: name: resourceGroupName description: The name of the resource group. @@ -20174,7 +20238,7 @@ operationGroups: schema: *ref_6 implementation: Method required: true - language: !Languages &ref_1346 + language: !Languages &ref_1358 default: name: firewallPolicyName description: The name of the Firewall Policy. @@ -20186,7 +20250,7 @@ operationGroups: schema: *ref_6 implementation: Method required: true - language: !Languages &ref_1347 + language: !Languages &ref_1359 default: name: ruleCollectionGroupName description: The name of the FirewallPolicyRuleCollectionGroup. @@ -20194,12 +20258,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1348 + - !Parameter &ref_1360 schema: *ref_617 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1349 + language: !Languages &ref_1361 default: name: apiVersion description: Api Version @@ -20228,7 +20292,7 @@ operationGroups: schema: *ref_276 implementation: Method required: false - language: !Languages &ref_1350 + language: !Languages &ref_1362 default: name: parameters description: Parameters supplied to the create or update FirewallPolicyRuleCollectionGroup operation. @@ -20272,7 +20336,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_276 - language: !Languages &ref_1351 + language: !Languages &ref_1363 default: name: '' description: Request successful. The operation returns the resulting FirewallPolicyRuleCollectionGroup resource. @@ -20285,7 +20349,7 @@ operationGroups: - '200' - !SchemaResponse schema: *ref_276 - language: !Languages &ref_1352 + language: !Languages &ref_1364 default: name: '' description: Request received successfully. The operation returns the resulting FirewallPolicyRuleCollectionGroup resource. @@ -20698,7 +20762,7 @@ operationGroups: name: CreateOrUpdate description: Creates or updates the specified FirewallPolicyRuleCollectionGroup. protocol: !Protocols {} - - !Operation &ref_1360 + - !Operation &ref_1372 operationId: FirewallPolicyRuleCollectionGroups_List apiVersions: - !ApiVersion @@ -20709,7 +20773,7 @@ operationGroups: schema: *ref_6 implementation: Method required: true - language: !Languages &ref_1354 + language: !Languages &ref_1366 default: name: resourceGroupName description: The name of the resource group. @@ -20721,7 +20785,7 @@ operationGroups: schema: *ref_6 implementation: Method required: true - language: !Languages &ref_1355 + language: !Languages &ref_1367 default: name: firewallPolicyName description: The name of the Firewall Policy. @@ -20729,12 +20793,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1356 + - !Parameter &ref_1368 schema: *ref_617 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1357 + language: !Languages &ref_1369 default: name: apiVersion description: Api Version @@ -20775,7 +20839,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_642 - language: !Languages &ref_1358 + language: !Languages &ref_1370 default: name: '' description: Success. The operation returns a list of FirewallPolicyRuleCollectionGroup resources. @@ -20918,22 +20982,22 @@ operationGroups: name: FirewallPolicyRuleCollectionGroups description: '' protocol: !Protocols {} - - !OperationGroup &ref_1395 + - !OperationGroup &ref_1407 $key: Operations operations: - - !Operation &ref_1394 + - !Operation &ref_1406 operationId: Operations_List apiVersions: - !ApiVersion version: '2021-10-01' parameters: - *ref_476 - - !Parameter &ref_1361 + - !Parameter &ref_1373 schema: *ref_478 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1362 + language: !Languages &ref_1374 default: name: apiVersion description: Api Version @@ -20971,7 +21035,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_643 - language: !Languages &ref_1363 + language: !Languages &ref_1375 default: name: '' description: OK. The request has succeeded. @@ -21241,10 +21305,10 @@ operationGroups: name: Operations description: '' protocol: !Protocols {} - - !OperationGroup &ref_1413 + - !OperationGroup &ref_1425 $key: RoleAssignments operations: - - !Operation &ref_1412 + - !Operation &ref_1424 operationId: RoleAssignments_Delete apiVersions: - !ApiVersion @@ -21257,7 +21321,7 @@ operationGroups: required: true extensions: x-ms-skip-url-encoding: true - language: !Languages &ref_1396 + language: !Languages &ref_1408 default: name: scope description: The scope of the role assignment to delete. @@ -21269,7 +21333,7 @@ operationGroups: schema: *ref_644 implementation: Method required: true - language: !Languages &ref_1397 + language: !Languages &ref_1409 default: name: roleAssignmentName description: The name of the role assignment to delete. @@ -21277,12 +21341,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1398 + - !Parameter &ref_1410 schema: *ref_645 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1399 + language: !Languages &ref_1411 default: name: apiVersion description: Api Version @@ -21322,7 +21386,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_355 - language: !Languages &ref_1400 + language: !Languages &ref_1412 default: name: '' description: OK - Returns information about the role assignment. @@ -21366,7 +21430,7 @@ operationGroups: name: Delete description: Deletes a role assignment. protocol: !Protocols {} - - !Operation &ref_1426 + - !Operation &ref_1438 operationId: RoleAssignments_Create apiVersions: - !ApiVersion @@ -21379,7 +21443,7 @@ operationGroups: required: true extensions: x-ms-skip-url-encoding: true - language: !Languages &ref_1414 + language: !Languages &ref_1426 default: name: scope description: >- @@ -21394,7 +21458,7 @@ operationGroups: schema: *ref_644 implementation: Method required: true - language: !Languages &ref_1415 + language: !Languages &ref_1427 default: name: roleAssignmentName description: A GUID for the role assignment to create. The name must be unique and different for each role assignment. @@ -21402,12 +21466,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1416 + - !Parameter &ref_1428 schema: *ref_645 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1417 + language: !Languages &ref_1429 default: name: apiVersion description: Api Version @@ -21435,7 +21499,7 @@ operationGroups: schema: *ref_648 implementation: Method required: true - language: !Languages &ref_1418 + language: !Languages &ref_1430 default: name: parameters description: Parameters for the role assignment. @@ -21478,7 +21542,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_355 - language: !Languages &ref_1425 + language: !Languages &ref_1437 default: name: '' description: Created - Returns information about the role assignment. @@ -21517,7 +21581,7 @@ operationGroups: name: Create description: Creates a role assignment. protocol: !Protocols {} - - !Operation &ref_1432 + - !Operation &ref_1444 operationId: RoleAssignments_Get apiVersions: - !ApiVersion @@ -21530,7 +21594,7 @@ operationGroups: required: true extensions: x-ms-skip-url-encoding: true - language: !Languages &ref_1427 + language: !Languages &ref_1439 default: name: scope description: The scope of the role assignment. @@ -21542,7 +21606,7 @@ operationGroups: schema: *ref_644 implementation: Method required: true - language: !Languages &ref_1428 + language: !Languages &ref_1440 default: name: roleAssignmentName description: The name of the role assignment to get. @@ -21550,12 +21614,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1429 + - !Parameter &ref_1441 schema: *ref_645 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1430 + language: !Languages &ref_1442 default: name: apiVersion description: Api Version @@ -21595,7 +21659,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_355 - language: !Languages &ref_1431 + language: !Languages &ref_1443 default: name: '' description: OK - Returns information about the role assignment. @@ -21630,19 +21694,19 @@ operationGroups: name: Get description: Get the specified role assignment. protocol: !Protocols {} - - !Operation &ref_1436 + - !Operation &ref_1448 operationId: RoleAssignments_Validate apiVersions: - !ApiVersion version: 2017-10-01-preview parameters: - *ref_476 - - !Parameter &ref_1433 + - !Parameter &ref_1445 schema: *ref_645 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1434 + language: !Languages &ref_1446 default: name: apiVersion description: Api Version @@ -21655,7 +21719,7 @@ operationGroups: schema: *ref_644 implementation: Method required: true - language: !Languages &ref_1435 + language: !Languages &ref_1447 default: name: roleAssignmentName description: The name of the role assignment to delete. @@ -21700,7 +21764,7 @@ operationGroups: name: Validate description: Gets all role assignments for the subscription. protocol: !Protocols {} - - !Operation &ref_1442 + - !Operation &ref_1454 operationId: RoleAssignments_ListForScope apiVersions: - !ApiVersion @@ -21713,7 +21777,7 @@ operationGroups: required: true extensions: x-ms-skip-url-encoding: true - language: !Languages &ref_1437 + language: !Languages &ref_1449 default: name: scope description: The scope of the role assignments. @@ -21734,12 +21798,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: query - - !Parameter &ref_1438 + - !Parameter &ref_1450 schema: *ref_645 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1439 + language: !Languages &ref_1451 default: name: apiVersion description: Api Version @@ -21779,7 +21843,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_658 - language: !Languages &ref_1440 + language: !Languages &ref_1452 default: name: '' description: OK - Returns an array of role assignments. @@ -21823,22 +21887,22 @@ operationGroups: name: RoleAssignments description: '' protocol: !Protocols {} - - !OperationGroup &ref_1454 + - !OperationGroup &ref_1466 $key: TenantActivityLogs operations: - - !Operation &ref_1453 + - !Operation &ref_1465 operationId: TenantActivityLogs_List apiVersions: - !ApiVersion version: '2015-04-01' parameters: - *ref_476 - - !Parameter &ref_1443 + - !Parameter &ref_1455 schema: *ref_659 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1444 + language: !Languages &ref_1456 default: name: apiVersion description: Api Version @@ -21909,7 +21973,7 @@ operationGroups: responses: - !SchemaResponse schema: *ref_663 - language: !Languages &ref_1445 + language: !Languages &ref_1457 default: name: '' description: Successful request to get a page of events in the tenant activity logs @@ -21967,22 +22031,22 @@ operationGroups: name: TenantActivityLogs description: '' protocol: !Protocols {} - - !OperationGroup &ref_1463 + - !OperationGroup &ref_1475 $key: Deployments operations: - - !Operation &ref_1462 + - !Operation &ref_1474 operationId: Deployments_CalculateTemplateHash apiVersions: - !ApiVersion version: '2021-04-01' parameters: - *ref_476 - - !Parameter &ref_1455 + - !Parameter &ref_1467 schema: *ref_665 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1456 + language: !Languages &ref_1468 default: name: apiVersion description: Api Version @@ -21990,8 +22054,74 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: query + - !Parameter &ref_674 + schema: *ref_666 + implementation: Method + language: !Languages &ref_1476 + default: + name: q1 + description: The first query parameter + serializedName: q1 + protocol: !Protocols + http: !HttpParameter + in: query + - !Parameter &ref_675 + schema: *ref_667 + implementation: Method + language: !Languages &ref_1477 + default: + name: q2 + description: The second query parameter + serializedName: q2 + protocol: !Protocols + http: !HttpParameter + in: query + - !Parameter &ref_676 + schema: *ref_668 + implementation: Method + language: !Languages &ref_1478 + default: + name: q3 + description: The third query parameter + serializedName: q3 + protocol: !Protocols + http: !HttpParameter + in: query + - !Parameter &ref_677 + schema: *ref_669 + implementation: Method + language: !Languages &ref_1479 + default: + name: q4 + description: The fourth query parameter + serializedName: q4 + protocol: !Protocols + http: !HttpParameter + in: query + - !Parameter &ref_678 + schema: *ref_670 + implementation: Method + language: !Languages &ref_1480 + default: + name: q5 + description: The fifth query parameter + serializedName: q5 + protocol: !Protocols + http: !HttpParameter + in: query + - !Parameter &ref_679 + schema: *ref_671 + implementation: Method + language: !Languages &ref_1481 + default: + name: q6 + description: The sixth query parameter + serializedName: q6 + protocol: !Protocols + http: !HttpParameter + in: query requestMediaTypes: - application/json: !Request &ref_667 + application/json: !Request &ref_673 parameters: - !Parameter schema: *ref_480 @@ -22006,11 +22136,11 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: header - - !Parameter &ref_666 + - !Parameter &ref_672 schema: *ref_174 implementation: Method required: true - language: !Languages &ref_1457 + language: !Languages &ref_1469 default: name: template description: The template provided to calculate hash. @@ -22032,7 +22162,7 @@ operationGroups: http: !HttpParameter in: header signatureParameters: - - *ref_666 + - *ref_672 language: !Languages default: name: '' @@ -22046,12 +22176,18 @@ operationGroups: - application/json uri: '{$host}' requests: - - *ref_667 - signatureParameters: [] + - *ref_673 + signatureParameters: + - *ref_674 + - *ref_675 + - *ref_676 + - *ref_677 + - *ref_678 + - *ref_679 responses: - !SchemaResponse - schema: *ref_668 - language: !Languages &ref_1459 + schema: *ref_680 + language: !Languages &ref_1471 default: name: '' description: OK - Returns the hash. @@ -22067,7 +22203,47 @@ operationGroups: Calculate template hash: parameters: api-version: '2021-04-01' - template: &ref_1458 + template: &ref_1470 + $schema: http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview + contentVersion: 1.0.0.0 + outputs: + string: + type: string + value: myvalue + parameters: + string: + type: string + resources: [] + variables: + array: + - 1 + - 2 + - 3 + - 4 + bool: true + int: 42 + object: + object: + location: West US + vmSize: Large + string: string + responses: + '200': + body: + minifiedTemplate: >- + {"$SCHEMA":"HTTP://SCHEMAS.MANAGEMENT.AZURE.COM/DEPLOYMENTTEMPLATE?API-VERSION=2014-04-01-PREVIEW","CONTENTVERSION":"1.0.0.0","PARAMETERS":{"STRING":{"TYPE":"STRING"}},"VARIABLES":{"STRING":"STRING","INT":42,"BOOL":TRUE,"ARRAY":[1,2,3,4],"OBJECT":{"OBJECT":{"VMSIZE":"LARGE","LOCATION":"WEST + US"}}},"RESOURCES":[],"OUTPUTS":{"STRING":{"TYPE":"STRING","VALUE":"MYVALUE"}}} + templateHash: '695440707931307747' + Calculate template hash with query parameters: + parameters: + api-version: '2021-04-01' + q1: first + q2: 42 + q3: 4.2222222222222226e+35 + q4: 3.14 + q5: 3.14159265358 + q6: true + template: &ref_1482 $schema: http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview contentVersion: 1.0.0.0 outputs: @@ -22108,21 +22284,21 @@ operationGroups: name: Deployments description: '' protocol: !Protocols {} - - !OperationGroup &ref_1486 + - !OperationGroup &ref_1505 $key: GuestConfigurationAssignments operations: - - !Operation &ref_1485 + - !Operation &ref_1504 operationId: GuestConfigurationAssignments_CreateOrUpdate apiVersions: - !ApiVersion version: '2022-01-25' parameters: - *ref_476 - - !Parameter &ref_674 - schema: *ref_669 + - !Parameter &ref_686 + schema: *ref_681 implementation: Method required: true - language: !Languages &ref_1464 + language: !Languages &ref_1483 default: name: guestConfigurationAssignmentName description: Name of the guest configuration assignment. @@ -22131,11 +22307,11 @@ operationGroups: http: !HttpParameter in: path - *ref_479 - - !Parameter &ref_675 - schema: *ref_670 + - !Parameter &ref_687 + schema: *ref_682 implementation: Method required: true - language: !Languages &ref_1465 + language: !Languages &ref_1484 default: name: resourceGroupName description: The resource group name. @@ -22143,11 +22319,11 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_676 - schema: *ref_669 + - !Parameter &ref_688 + schema: *ref_681 implementation: Method required: true - language: !Languages &ref_1466 + language: !Languages &ref_1485 default: name: vmName description: The name of the virtual machine. @@ -22155,12 +22331,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1467 - schema: *ref_671 + - !Parameter &ref_1486 + schema: *ref_683 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1468 + language: !Languages &ref_1487 default: name: apiVersion description: Api Version @@ -22169,7 +22345,7 @@ operationGroups: http: !HttpParameter in: query requestMediaTypes: - application/json: !Request &ref_673 + application/json: !Request &ref_685 parameters: - !Parameter schema: *ref_480 @@ -22184,11 +22360,11 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: header - - !Parameter &ref_672 + - !Parameter &ref_684 schema: *ref_368 implementation: Method required: true - language: !Languages &ref_1469 + language: !Languages &ref_1488 default: name: parameters description: Parameters supplied to the create or update guest configuration assignment. @@ -22210,7 +22386,7 @@ operationGroups: http: !HttpParameter in: header signatureParameters: - - *ref_672 + - *ref_684 language: !Languages default: name: '' @@ -22225,15 +22401,15 @@ operationGroups: - application/json uri: '{$host}' requests: - - *ref_673 + - *ref_685 signatureParameters: - - *ref_674 - - *ref_675 - - *ref_676 + - *ref_686 + - *ref_687 + - *ref_688 responses: - !SchemaResponse schema: *ref_368 - language: !Languages &ref_1474 + language: !Languages &ref_1493 default: name: '' description: OK. The guest configuration assignment for the VM was updated successfully. @@ -22246,7 +22422,7 @@ operationGroups: - '200' - !SchemaResponse schema: *ref_368 - language: !Languages &ref_1483 + language: !Languages &ref_1502 default: name: '' description: Created. The guest configuration assignment for the VM was created successfully. @@ -22306,7 +22482,7 @@ operationGroups: provisioningState: Succeeded resourceType: null vmssVMList: null - headers: &ref_1482 {} + headers: &ref_1501 {} '201': body: name: NotInstalledApplicationForWindows @@ -22332,24 +22508,24 @@ operationGroups: provisioningState: Succeeded resourceType: null vmssVMList: null - headers: &ref_1484 {} + headers: &ref_1503 {} language: !Languages default: name: CreateOrUpdate description: Creates an association between a VM and guest configuration protocol: !Protocols {} - - !Operation &ref_1494 + - !Operation &ref_1513 operationId: GuestConfigurationAssignments_Get apiVersions: - !ApiVersion version: '2022-01-25' parameters: - *ref_476 - - !Parameter &ref_677 - schema: *ref_670 + - !Parameter &ref_689 + schema: *ref_682 implementation: Method required: true - language: !Languages &ref_1487 + language: !Languages &ref_1506 default: name: resourceGroupName description: The resource group name. @@ -22357,11 +22533,11 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_678 - schema: *ref_669 + - !Parameter &ref_690 + schema: *ref_681 implementation: Method required: true - language: !Languages &ref_1488 + language: !Languages &ref_1507 default: name: guestConfigurationAssignmentName description: The guest configuration assignment name. @@ -22370,11 +22546,11 @@ operationGroups: http: !HttpParameter in: path - *ref_479 - - !Parameter &ref_679 - schema: *ref_669 + - !Parameter &ref_691 + schema: *ref_681 implementation: Method required: true - language: !Languages &ref_1489 + language: !Languages &ref_1508 default: name: vmName description: The name of the virtual machine. @@ -22382,12 +22558,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1490 - schema: *ref_671 + - !Parameter &ref_1509 + schema: *ref_683 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1491 + language: !Languages &ref_1510 default: name: apiVersion description: Api Version @@ -22423,13 +22599,13 @@ operationGroups: method: get uri: '{$host}' signatureParameters: - - *ref_677 - - *ref_678 - - *ref_679 + - *ref_689 + - *ref_690 + - *ref_691 responses: - !SchemaResponse schema: *ref_368 - language: !Languages &ref_1492 + language: !Languages &ref_1511 default: name: '' description: OK. The guest configuration assignment was returned successfully. @@ -22471,24 +22647,24 @@ operationGroups: latestReportId: >- /subscriptions/subscriptionId/resourceGroups/myResourceGroupName/providers/Microsoft.Compute/virtualMachines/myvm/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/AuditSecureProtocol/reports/7367cbb8-ae99-47d0-a33b-a283564d2cb1 provisioningState: Succeeded - headers: &ref_1493 {} + headers: &ref_1512 {} language: !Languages default: name: Get description: Get information about a guest configuration assignment protocol: !Protocols {} - - !Operation &ref_1500 + - !Operation &ref_1519 operationId: GuestConfigurationAssignments_Delete apiVersions: - !ApiVersion version: '2022-01-25' parameters: - *ref_476 - - !Parameter &ref_680 - schema: *ref_670 + - !Parameter &ref_692 + schema: *ref_682 implementation: Method required: true - language: !Languages &ref_1495 + language: !Languages &ref_1514 default: name: resourceGroupName description: The resource group name. @@ -22496,11 +22672,11 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_681 - schema: *ref_669 + - !Parameter &ref_693 + schema: *ref_681 implementation: Method required: true - language: !Languages &ref_1496 + language: !Languages &ref_1515 default: name: guestConfigurationAssignmentName description: Name of the guest configuration assignment @@ -22509,11 +22685,11 @@ operationGroups: http: !HttpParameter in: path - *ref_479 - - !Parameter &ref_682 - schema: *ref_669 + - !Parameter &ref_694 + schema: *ref_681 implementation: Method required: true - language: !Languages &ref_1497 + language: !Languages &ref_1516 default: name: vmName description: The name of the virtual machine. @@ -22521,12 +22697,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1498 - schema: *ref_671 + - !Parameter &ref_1517 + schema: *ref_683 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1499 + language: !Languages &ref_1518 default: name: apiVersion description: Api Version @@ -22547,9 +22723,9 @@ operationGroups: method: delete uri: '{$host}' signatureParameters: - - *ref_680 - - *ref_681 - - *ref_682 + - *ref_692 + - *ref_693 + - *ref_694 responses: - !Response language: !Languages @@ -22576,18 +22752,18 @@ operationGroups: name: Delete description: Delete a guest configuration assignment protocol: !Protocols {} - - !Operation &ref_1507 + - !Operation &ref_1526 operationId: GuestConfigurationAssignments_List apiVersions: - !ApiVersion version: '2022-01-25' parameters: - *ref_476 - - !Parameter &ref_683 - schema: *ref_670 + - !Parameter &ref_695 + schema: *ref_682 implementation: Method required: true - language: !Languages &ref_1501 + language: !Languages &ref_1520 default: name: resourceGroupName description: The resource group name. @@ -22596,11 +22772,11 @@ operationGroups: http: !HttpParameter in: path - *ref_479 - - !Parameter &ref_684 - schema: *ref_669 + - !Parameter &ref_696 + schema: *ref_681 implementation: Method required: true - language: !Languages &ref_1502 + language: !Languages &ref_1521 default: name: vmName description: The name of the virtual machine. @@ -22608,12 +22784,12 @@ operationGroups: protocol: !Protocols http: !HttpParameter in: path - - !Parameter &ref_1503 - schema: *ref_671 + - !Parameter &ref_1522 + schema: *ref_683 implementation: Method origin: modelerfour:synthesized/api-version required: true - language: !Languages &ref_1504 + language: !Languages &ref_1523 default: name: apiVersion description: Api Version @@ -22648,12 +22824,12 @@ operationGroups: method: get uri: '{$host}' signatureParameters: - - *ref_683 - - *ref_684 + - *ref_695 + - *ref_696 responses: - !SchemaResponse - schema: *ref_685 - language: !Languages &ref_1505 + schema: *ref_697 + language: !Languages &ref_1524 default: name: '' description: OK @@ -22713,7 +22889,7 @@ operationGroups: latestReportId: >- /subscriptions/subscriptionId/resourceGroups/myResourceGroupName/providers/Microsoft.Compute/virtualMachines/myvm/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/myAssignment/reports/7367cbb8-ae99-47d0-a33b-a283564d2cb1 provisioningState: null - headers: &ref_1506 {} + headers: &ref_1525 {} x-ms-pageable: nextLinkName: null language: !Languages @@ -22745,24 +22921,24 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: sample-resource-group - language: *ref_687 + language: *ref_699 parameter: *ref_485 - exampleValue: schema: *ref_477 rawValue: sample-vault - language: *ref_688 + language: *ref_700 parameter: *ref_486 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_690 - parameter: *ref_689 + language: *ref_702 + parameter: *ref_701 - exampleValue: schema: *ref_481 parentsValue: {} @@ -22774,12 +22950,12 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_710 + language: *ref_723 + language: *ref_722 location: schema: *ref_7 rawValue: westus - language: *ref_692 + language: *ref_704 properties: schema: *ref_52 parentsValue: {} @@ -22793,7 +22969,7 @@ testModel: objectId: schema: *ref_15 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_702 + language: *ref_714 permissions: schema: *ref_55 parentsValue: {} @@ -22829,7 +23005,7 @@ testModel: rawValue: recover - schema: *ref_19 rawValue: purge - language: *ref_706 + language: *ref_718 keys: schema: *ref_394 elements: @@ -22865,7 +23041,7 @@ testModel: rawValue: recover - schema: *ref_17 rawValue: purge - language: *ref_704 + language: *ref_716 secrets: schema: *ref_395 elements: @@ -22885,33 +23061,33 @@ testModel: rawValue: recover - schema: *ref_18 rawValue: purge - language: *ref_705 - language: *ref_703 + language: *ref_717 + language: *ref_715 tenantId: schema: *ref_14 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_701 - language: *ref_700 + language: *ref_713 + language: *ref_712 createOn: schema: *ref_10 rawValue: '2017-05-04T07:12:28.191Z' - language: *ref_695 + language: *ref_707 duration: schema: *ref_9 rawValue: P7D - language: *ref_694 + language: *ref_706 enabledForDiskEncryption: schema: *ref_24 rawValue: true - language: *ref_707 + language: *ref_719 enabledForTemplateDeployment: schema: *ref_25 rawValue: true - language: *ref_708 + language: *ref_720 publicNetworkAccess: schema: *ref_44 rawValue: Enabled - language: *ref_709 + language: *ref_721 sku: schema: *ref_53 parentsValue: {} @@ -22919,21 +23095,21 @@ testModel: name: schema: *ref_13 rawValue: standard - language: *ref_699 + language: *ref_711 family: schema: *ref_12 rawValue: A - language: *ref_698 - language: *ref_697 + language: *ref_710 + language: *ref_709 tenantId: schema: *ref_11 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_696 - language: *ref_693 - language: *ref_691 + language: *ref_708 + language: *ref_705 + language: *ref_703 parameter: *ref_483 - operation: *ref_753 - operationGroup: *ref_754 + operation: *ref_765 + operationGroup: *ref_766 originalFile: '' responses: '200': @@ -22944,15 +23120,15 @@ testModel: name: schema: *ref_70 rawValue: sample-vault - language: *ref_714 + language: *ref_726 type: schema: *ref_71 rawValue: Microsoft.KeyVault/vaults - language: *ref_715 + language: *ref_727 id: schema: *ref_69 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-resource-group/providers/Microsoft.KeyVault/vaults/sample-vault - language: *ref_713 + language: *ref_725 identity: schema: *ref_67 parentsValue: {} @@ -22960,20 +23136,20 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 + language: *ref_723 principalId: schema: *ref_48 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_750 + language: *ref_762 tenantId: schema: *ref_49 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_751 - language: *ref_749 + language: *ref_763 + language: *ref_761 location: schema: *ref_72 rawValue: westus - language: *ref_716 + language: *ref_728 properties: schema: *ref_52 parentsValue: {} @@ -22987,7 +23163,7 @@ testModel: objectId: schema: *ref_15 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_702 + language: *ref_714 permissions: schema: *ref_55 parentsValue: {} @@ -23023,7 +23199,7 @@ testModel: rawValue: recover - schema: *ref_19 rawValue: purge - language: *ref_706 + language: *ref_718 keys: schema: *ref_394 elements: @@ -23059,7 +23235,7 @@ testModel: rawValue: recover - schema: *ref_17 rawValue: purge - language: *ref_704 + language: *ref_716 secrets: schema: *ref_395 elements: @@ -23079,25 +23255,25 @@ testModel: rawValue: recover - schema: *ref_18 rawValue: purge - language: *ref_705 - language: *ref_703 + language: *ref_717 + language: *ref_715 tenantId: schema: *ref_14 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_701 - language: *ref_700 + language: *ref_713 + language: *ref_712 enabledForDiskEncryption: schema: *ref_24 rawValue: true - language: *ref_707 + language: *ref_719 enabledForTemplateDeployment: schema: *ref_25 rawValue: true - language: *ref_708 + language: *ref_720 hsmPoolResourceId: schema: *ref_22 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_727 + language: *ref_739 networkAcls: schema: *ref_56 parentsValue: {} @@ -23105,11 +23281,11 @@ testModel: bypass: schema: *ref_31 rawValue: AzureServices - language: *ref_729 + language: *ref_741 defaultAction: schema: *ref_32 rawValue: Deny - language: *ref_730 + language: *ref_742 ipRules: schema: *ref_400 elements: @@ -23119,8 +23295,8 @@ testModel: value: schema: *ref_33 rawValue: '' - language: *ref_732 - language: *ref_731 + language: *ref_744 + language: *ref_743 virtualNetworkRules: schema: *ref_401 elements: @@ -23130,13 +23306,13 @@ testModel: id: schema: *ref_34 rawValue: '' - language: *ref_734 + language: *ref_746 ignoreMissingVnetServiceEndpoint: schema: *ref_35 rawValue: false - language: *ref_735 - language: *ref_733 - language: *ref_728 + language: *ref_747 + language: *ref_745 + language: *ref_740 privateEndpointConnections: schema: *ref_402 elements: @@ -23146,49 +23322,49 @@ testModel: etag: schema: *ref_38 rawValue: '' - language: *ref_739 + language: *ref_751 id: schema: *ref_37 rawValue: '' - language: *ref_738 + language: *ref_750 privateEndpoint: schema: *ref_60 - flattenedNames: *ref_742 + flattenedNames: *ref_754 parentsValue: {} properties: id: schema: *ref_39 rawValue: '' - language: *ref_741 - language: *ref_740 + language: *ref_753 + language: *ref_752 privateLinkServiceConnectionState: schema: *ref_61 - flattenedNames: *ref_746 + flattenedNames: *ref_758 parentsValue: {} properties: actionsRequired: schema: *ref_42 rawValue: None - language: *ref_745 + language: *ref_757 status: schema: *ref_40 rawValue: Approved - language: *ref_744 - language: *ref_743 + language: *ref_756 + language: *ref_755 provisioningState: schema: *ref_43 - flattenedNames: *ref_748 + flattenedNames: *ref_760 rawValue: Succeeded - language: *ref_747 - language: *ref_737 + language: *ref_759 + language: *ref_749 provisioningState: schema: *ref_36 rawValue: Succeeded - language: *ref_736 + language: *ref_748 publicNetworkAccess: schema: *ref_44 rawValue: Enabled - language: *ref_709 + language: *ref_721 sku: schema: *ref_53 parentsValue: {} @@ -23196,21 +23372,21 @@ testModel: name: schema: *ref_13 rawValue: standard - language: *ref_699 + language: *ref_711 family: schema: *ref_12 rawValue: A - language: *ref_698 - language: *ref_697 + language: *ref_710 + language: *ref_709 tenantId: schema: *ref_11 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_696 + language: *ref_708 vaultUri: schema: *ref_21 rawValue: https://sample-vault.vault.azure.net - language: *ref_726 - language: *ref_725 + language: *ref_738 + language: *ref_737 systemData: schema: *ref_79 parentsValue: {} @@ -23218,33 +23394,33 @@ testModel: createdAt: schema: *ref_76 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_721 + language: *ref_733 createdBy: schema: *ref_74 rawValue: keyVaultUser1 - language: *ref_719 + language: *ref_731 createdByType: schema: *ref_75 rawValue: User - language: *ref_720 + language: *ref_732 lastModifiedAt: schema: *ref_78 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_724 + language: *ref_736 lastModifiedBy: schema: *ref_77 rawValue: keyVaultUser2 - language: *ref_722 + language: *ref_734 lastModifiedByType: schema: *ref_75 rawValue: User - language: *ref_723 - language: *ref_718 + language: *ref_735 + language: *ref_730 tags: schema: *ref_73 properties: {} - language: *ref_717 - language: *ref_712 + language: *ref_729 + language: *ref_724 '201': body: schema: *ref_105 @@ -23253,19 +23429,19 @@ testModel: name: schema: *ref_70 rawValue: sample-vault - language: *ref_714 + language: *ref_726 type: schema: *ref_71 rawValue: Microsoft.KeyVault/vaults - language: *ref_715 + language: *ref_727 id: schema: *ref_69 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-resource-group/providers/Microsoft.KeyVault/vaults/sample-vault - language: *ref_713 + language: *ref_725 location: schema: *ref_72 rawValue: westus - language: *ref_716 + language: *ref_728 properties: schema: *ref_52 parentsValue: {} @@ -23279,7 +23455,7 @@ testModel: objectId: schema: *ref_15 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_702 + language: *ref_714 permissions: schema: *ref_55 parentsValue: {} @@ -23315,7 +23491,7 @@ testModel: rawValue: recover - schema: *ref_19 rawValue: purge - language: *ref_706 + language: *ref_718 keys: schema: *ref_394 elements: @@ -23351,7 +23527,7 @@ testModel: rawValue: recover - schema: *ref_17 rawValue: purge - language: *ref_704 + language: *ref_716 secrets: schema: *ref_395 elements: @@ -23371,33 +23547,33 @@ testModel: rawValue: recover - schema: *ref_18 rawValue: purge - language: *ref_705 - language: *ref_703 + language: *ref_717 + language: *ref_715 tenantId: schema: *ref_14 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_701 - language: *ref_700 + language: *ref_713 + language: *ref_712 enabledForDiskEncryption: schema: *ref_24 rawValue: true - language: *ref_707 + language: *ref_719 enabledForTemplateDeployment: schema: *ref_25 rawValue: true - language: *ref_708 + language: *ref_720 hsmPoolResourceId: schema: *ref_22 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_727 + language: *ref_739 provisioningState: schema: *ref_36 rawValue: Succeeded - language: *ref_736 + language: *ref_748 publicNetworkAccess: schema: *ref_44 rawValue: Enabled - language: *ref_709 + language: *ref_721 sku: schema: *ref_53 parentsValue: {} @@ -23405,21 +23581,21 @@ testModel: name: schema: *ref_13 rawValue: standard - language: *ref_699 + language: *ref_711 family: schema: *ref_12 rawValue: A - language: *ref_698 - language: *ref_697 + language: *ref_710 + language: *ref_709 tenantId: schema: *ref_11 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_696 + language: *ref_708 vaultUri: schema: *ref_21 rawValue: https://sample-vault.vault.azure.net - language: *ref_726 - language: *ref_725 + language: *ref_738 + language: *ref_737 systemData: schema: *ref_79 parentsValue: {} @@ -23427,56 +23603,56 @@ testModel: createdAt: schema: *ref_76 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_721 + language: *ref_733 createdBy: schema: *ref_74 rawValue: keyVaultUser1 - language: *ref_719 + language: *ref_731 createdByType: schema: *ref_75 rawValue: User - language: *ref_720 + language: *ref_732 lastModifiedAt: schema: *ref_78 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_724 + language: *ref_736 lastModifiedBy: schema: *ref_77 rawValue: keyVaultUser2 - language: *ref_722 + language: *ref_734 lastModifiedByType: schema: *ref_75 rawValue: User - language: *ref_723 - language: *ref_718 + language: *ref_735 + language: *ref_730 tags: schema: *ref_73 properties: {} - language: *ref_717 - language: *ref_752 + language: *ref_729 + language: *ref_764 - name: Create or update a vault with network acls clientParameters: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: sample-resource-group - language: *ref_687 + language: *ref_699 parameter: *ref_485 - exampleValue: schema: *ref_477 rawValue: sample-vault - language: *ref_688 + language: *ref_700 parameter: *ref_486 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_690 - parameter: *ref_689 + language: *ref_702 + parameter: *ref_701 - exampleValue: schema: *ref_481 parentsValue: {} @@ -23484,7 +23660,7 @@ testModel: location: schema: *ref_7 rawValue: westus - language: *ref_692 + language: *ref_704 properties: schema: *ref_52 parentsValue: {} @@ -23492,11 +23668,11 @@ testModel: enabledForDiskEncryption: schema: *ref_24 rawValue: true - language: *ref_707 + language: *ref_719 enabledForTemplateDeployment: schema: *ref_25 rawValue: true - language: *ref_708 + language: *ref_720 extremelyDeepStringProperty: schema: *ref_63 parentsValue: {} @@ -23520,12 +23696,12 @@ testModel: something: schema: *ref_45 rawValue: deep-value - language: *ref_756 - language: *ref_763 - language: *ref_762 - language: *ref_761 - language: *ref_760 - language: *ref_759 + language: *ref_768 + language: *ref_775 + language: *ref_774 + language: *ref_773 + language: *ref_772 + language: *ref_771 networkAcls: schema: *ref_56 parentsValue: {} @@ -23533,11 +23709,11 @@ testModel: bypass: schema: *ref_31 rawValue: AzureServices - language: *ref_729 + language: *ref_741 defaultAction: schema: *ref_32 rawValue: Deny - language: *ref_730 + language: *ref_742 ipRules: schema: *ref_400 elements: @@ -23547,15 +23723,15 @@ testModel: value: schema: *ref_33 rawValue: 124.56.78.91 - language: *ref_732 + language: *ref_744 - schema: *ref_57 parentsValue: {} properties: value: schema: *ref_33 rawValue: '''10.91.4.0/24''' - language: *ref_732 - language: *ref_731 + language: *ref_744 + language: *ref_743 virtualNetworkRules: schema: *ref_401 elements: @@ -23565,9 +23741,9 @@ testModel: id: schema: *ref_34 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/virtualNetworks/test-vnet/subnets/subnet1 - language: *ref_734 - language: *ref_733 - language: *ref_728 + language: *ref_746 + language: *ref_745 + language: *ref_740 readOnlySingleStringProperty: schema: *ref_62 parentsValue: {} @@ -23575,8 +23751,8 @@ testModel: readOnlySomething: schema: *ref_46 rawValue: test-read-only - language: *ref_758 - language: *ref_757 + language: *ref_770 + language: *ref_769 readWriteSingleStringProperty: schema: *ref_47 parentsValue: {} @@ -23584,8 +23760,8 @@ testModel: something: schema: *ref_45 rawValue: test - language: *ref_756 - language: *ref_755 + language: *ref_768 + language: *ref_767 sku: schema: *ref_53 parentsValue: {} @@ -23593,21 +23769,21 @@ testModel: name: schema: *ref_13 rawValue: standard - language: *ref_699 + language: *ref_711 family: schema: *ref_12 rawValue: A - language: *ref_698 - language: *ref_697 + language: *ref_710 + language: *ref_709 tenantId: schema: *ref_11 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_696 - language: *ref_693 - language: *ref_691 + language: *ref_708 + language: *ref_705 + language: *ref_703 parameter: *ref_483 - operation: *ref_753 - operationGroup: *ref_754 + operation: *ref_765 + operationGroup: *ref_766 originalFile: '' responses: '200': @@ -23618,19 +23794,19 @@ testModel: name: schema: *ref_70 rawValue: sample-vault - language: *ref_714 + language: *ref_726 type: schema: *ref_71 rawValue: Microsoft.KeyVault/vaults - language: *ref_715 + language: *ref_727 id: schema: *ref_69 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-resource-group/providers/Microsoft.KeyVault/vaults/sample-vault - language: *ref_713 + language: *ref_725 location: schema: *ref_72 rawValue: westus - language: *ref_716 + language: *ref_728 properties: schema: *ref_52 parentsValue: {} @@ -23638,15 +23814,15 @@ testModel: enabledForDiskEncryption: schema: *ref_24 rawValue: true - language: *ref_707 + language: *ref_719 enabledForTemplateDeployment: schema: *ref_25 rawValue: true - language: *ref_708 + language: *ref_720 hsmPoolResourceId: schema: *ref_22 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_727 + language: *ref_739 networkAcls: schema: *ref_56 parentsValue: {} @@ -23654,11 +23830,11 @@ testModel: bypass: schema: *ref_31 rawValue: AzureServices - language: *ref_729 + language: *ref_741 defaultAction: schema: *ref_32 rawValue: Deny - language: *ref_730 + language: *ref_742 ipRules: schema: *ref_400 elements: @@ -23668,15 +23844,15 @@ testModel: value: schema: *ref_33 rawValue: 124.56.78.91/32 - language: *ref_732 + language: *ref_744 - schema: *ref_57 parentsValue: {} properties: value: schema: *ref_33 rawValue: '''10.91.4.0/24''' - language: *ref_732 - language: *ref_731 + language: *ref_744 + language: *ref_743 virtualNetworkRules: schema: *ref_401 elements: @@ -23686,9 +23862,9 @@ testModel: id: schema: *ref_34 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.network/virtualnetworks/test-vnet/subnets/subnet1 - language: *ref_734 - language: *ref_733 - language: *ref_728 + language: *ref_746 + language: *ref_745 + language: *ref_740 sku: schema: *ref_53 parentsValue: {} @@ -23696,21 +23872,21 @@ testModel: name: schema: *ref_13 rawValue: standard - language: *ref_699 + language: *ref_711 family: schema: *ref_12 rawValue: A - language: *ref_698 - language: *ref_697 + language: *ref_710 + language: *ref_709 tenantId: schema: *ref_11 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_696 + language: *ref_708 vaultUri: schema: *ref_21 rawValue: https://sample-vault.vault.azure.net - language: *ref_726 - language: *ref_725 + language: *ref_738 + language: *ref_737 systemData: schema: *ref_79 parentsValue: {} @@ -23718,33 +23894,33 @@ testModel: createdAt: schema: *ref_76 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_721 + language: *ref_733 createdBy: schema: *ref_74 rawValue: keyVaultUser1 - language: *ref_719 + language: *ref_731 createdByType: schema: *ref_75 rawValue: User - language: *ref_720 + language: *ref_732 lastModifiedAt: schema: *ref_78 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_724 + language: *ref_736 lastModifiedBy: schema: *ref_77 rawValue: keyVaultUser2 - language: *ref_722 + language: *ref_734 lastModifiedByType: schema: *ref_75 rawValue: User - language: *ref_723 - language: *ref_718 + language: *ref_735 + language: *ref_730 tags: schema: *ref_73 properties: {} - language: *ref_717 - language: *ref_712 + language: *ref_729 + language: *ref_724 '201': body: schema: *ref_105 @@ -23753,19 +23929,19 @@ testModel: name: schema: *ref_70 rawValue: sample-vault - language: *ref_714 + language: *ref_726 type: schema: *ref_71 rawValue: Microsoft.KeyVault/vaults - language: *ref_715 + language: *ref_727 id: schema: *ref_69 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-resource-group/providers/Microsoft.KeyVault/vaults/sample-vault - language: *ref_713 + language: *ref_725 location: schema: *ref_72 rawValue: westus - language: *ref_716 + language: *ref_728 properties: schema: *ref_52 parentsValue: {} @@ -23773,15 +23949,15 @@ testModel: enabledForDiskEncryption: schema: *ref_24 rawValue: true - language: *ref_707 + language: *ref_719 enabledForTemplateDeployment: schema: *ref_25 rawValue: true - language: *ref_708 + language: *ref_720 hsmPoolResourceId: schema: *ref_22 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_727 + language: *ref_739 networkAcls: schema: *ref_56 parentsValue: {} @@ -23789,11 +23965,11 @@ testModel: bypass: schema: *ref_31 rawValue: AzureServices - language: *ref_729 + language: *ref_741 defaultAction: schema: *ref_32 rawValue: Deny - language: *ref_730 + language: *ref_742 ipRules: schema: *ref_400 elements: @@ -23803,15 +23979,15 @@ testModel: value: schema: *ref_33 rawValue: 124.56.78.91/32 - language: *ref_732 + language: *ref_744 - schema: *ref_57 parentsValue: {} properties: value: schema: *ref_33 rawValue: '''10.91.4.0/24''' - language: *ref_732 - language: *ref_731 + language: *ref_744 + language: *ref_743 virtualNetworkRules: schema: *ref_401 elements: @@ -23821,9 +23997,9 @@ testModel: id: schema: *ref_34 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.network/virtualnetworks/test-vnet/subnets/subnet1 - language: *ref_734 - language: *ref_733 - language: *ref_728 + language: *ref_746 + language: *ref_745 + language: *ref_740 sku: schema: *ref_53 parentsValue: {} @@ -23831,21 +24007,21 @@ testModel: name: schema: *ref_13 rawValue: standard - language: *ref_699 + language: *ref_711 family: schema: *ref_12 rawValue: A - language: *ref_698 - language: *ref_697 + language: *ref_710 + language: *ref_709 tenantId: schema: *ref_11 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_696 + language: *ref_708 vaultUri: schema: *ref_21 rawValue: https://sample-vault.vault.azure.net - language: *ref_726 - language: *ref_725 + language: *ref_738 + language: *ref_737 systemData: schema: *ref_79 parentsValue: {} @@ -23853,51 +24029,51 @@ testModel: createdAt: schema: *ref_76 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_721 + language: *ref_733 createdBy: schema: *ref_74 rawValue: keyVaultUser1 - language: *ref_719 + language: *ref_731 createdByType: schema: *ref_75 rawValue: User - language: *ref_720 + language: *ref_732 lastModifiedAt: schema: *ref_78 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_724 + language: *ref_736 lastModifiedBy: schema: *ref_77 rawValue: keyVaultUser2 - language: *ref_722 + language: *ref_734 lastModifiedByType: schema: *ref_75 rawValue: User - language: *ref_723 - language: *ref_718 + language: *ref_735 + language: *ref_730 tags: schema: *ref_73 properties: {} - language: *ref_717 - language: *ref_752 + language: *ref_729 + language: *ref_764 - name: Verify Sample-gen can handle examples with some parameter missing clientParameters: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: sample-resource-group - language: *ref_687 + language: *ref_699 parameter: *ref_485 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_690 - parameter: *ref_689 + language: *ref_702 + parameter: *ref_701 - exampleValue: schema: *ref_481 parentsValue: {} @@ -23909,12 +24085,12 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_710 + language: *ref_723 + language: *ref_722 location: schema: *ref_7 rawValue: westus - language: *ref_692 + language: *ref_704 properties: schema: *ref_52 parentsValue: {} @@ -23928,7 +24104,7 @@ testModel: objectId: schema: *ref_15 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_702 + language: *ref_714 permissions: schema: *ref_55 parentsValue: {} @@ -23964,7 +24140,7 @@ testModel: rawValue: recover - schema: *ref_19 rawValue: purge - language: *ref_706 + language: *ref_718 keys: schema: *ref_394 elements: @@ -24000,7 +24176,7 @@ testModel: rawValue: recover - schema: *ref_17 rawValue: purge - language: *ref_704 + language: *ref_716 secrets: schema: *ref_395 elements: @@ -24020,33 +24196,33 @@ testModel: rawValue: recover - schema: *ref_18 rawValue: purge - language: *ref_705 - language: *ref_703 + language: *ref_717 + language: *ref_715 tenantId: schema: *ref_14 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_701 - language: *ref_700 + language: *ref_713 + language: *ref_712 createOn: schema: *ref_10 rawValue: '2017-05-04T07:12:28.191Z' - language: *ref_695 + language: *ref_707 duration: schema: *ref_9 rawValue: P7D - language: *ref_694 + language: *ref_706 enabledForDiskEncryption: schema: *ref_24 rawValue: true - language: *ref_707 + language: *ref_719 enabledForTemplateDeployment: schema: *ref_25 rawValue: true - language: *ref_708 + language: *ref_720 publicNetworkAccess: schema: *ref_44 rawValue: Enabled - language: *ref_709 + language: *ref_721 sku: schema: *ref_53 parentsValue: {} @@ -24054,21 +24230,21 @@ testModel: name: schema: *ref_13 rawValue: standard - language: *ref_699 + language: *ref_711 family: schema: *ref_12 rawValue: A - language: *ref_698 - language: *ref_697 + language: *ref_710 + language: *ref_709 tenantId: schema: *ref_11 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_696 - language: *ref_693 - language: *ref_691 + language: *ref_708 + language: *ref_705 + language: *ref_703 parameter: *ref_483 - operation: *ref_753 - operationGroup: *ref_754 + operation: *ref_765 + operationGroup: *ref_766 originalFile: '' responses: '200': @@ -24079,15 +24255,15 @@ testModel: name: schema: *ref_70 rawValue: sample-vault - language: *ref_714 + language: *ref_726 type: schema: *ref_71 rawValue: Microsoft.KeyVault/vaults - language: *ref_715 + language: *ref_727 id: schema: *ref_69 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-resource-group/providers/Microsoft.KeyVault/vaults/sample-vault - language: *ref_713 + language: *ref_725 identity: schema: *ref_67 parentsValue: {} @@ -24095,20 +24271,20 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 + language: *ref_723 principalId: schema: *ref_48 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_750 + language: *ref_762 tenantId: schema: *ref_49 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_751 - language: *ref_749 + language: *ref_763 + language: *ref_761 location: schema: *ref_72 rawValue: westus - language: *ref_716 + language: *ref_728 properties: schema: *ref_52 parentsValue: {} @@ -24122,7 +24298,7 @@ testModel: objectId: schema: *ref_15 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_702 + language: *ref_714 permissions: schema: *ref_55 parentsValue: {} @@ -24158,7 +24334,7 @@ testModel: rawValue: recover - schema: *ref_19 rawValue: purge - language: *ref_706 + language: *ref_718 keys: schema: *ref_394 elements: @@ -24194,7 +24370,7 @@ testModel: rawValue: recover - schema: *ref_17 rawValue: purge - language: *ref_704 + language: *ref_716 secrets: schema: *ref_395 elements: @@ -24214,25 +24390,25 @@ testModel: rawValue: recover - schema: *ref_18 rawValue: purge - language: *ref_705 - language: *ref_703 + language: *ref_717 + language: *ref_715 tenantId: schema: *ref_14 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_701 - language: *ref_700 + language: *ref_713 + language: *ref_712 enabledForDiskEncryption: schema: *ref_24 rawValue: true - language: *ref_707 + language: *ref_719 enabledForTemplateDeployment: schema: *ref_25 rawValue: true - language: *ref_708 + language: *ref_720 hsmPoolResourceId: schema: *ref_22 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_727 + language: *ref_739 networkAcls: schema: *ref_56 parentsValue: {} @@ -24240,11 +24416,11 @@ testModel: bypass: schema: *ref_31 rawValue: AzureServices - language: *ref_729 + language: *ref_741 defaultAction: schema: *ref_32 rawValue: Deny - language: *ref_730 + language: *ref_742 ipRules: schema: *ref_400 elements: @@ -24254,8 +24430,8 @@ testModel: value: schema: *ref_33 rawValue: '' - language: *ref_732 - language: *ref_731 + language: *ref_744 + language: *ref_743 virtualNetworkRules: schema: *ref_401 elements: @@ -24265,13 +24441,13 @@ testModel: id: schema: *ref_34 rawValue: '' - language: *ref_734 + language: *ref_746 ignoreMissingVnetServiceEndpoint: schema: *ref_35 rawValue: false - language: *ref_735 - language: *ref_733 - language: *ref_728 + language: *ref_747 + language: *ref_745 + language: *ref_740 privateEndpointConnections: schema: *ref_402 elements: @@ -24281,49 +24457,49 @@ testModel: etag: schema: *ref_38 rawValue: '' - language: *ref_739 + language: *ref_751 id: schema: *ref_37 rawValue: '' - language: *ref_738 + language: *ref_750 privateEndpoint: schema: *ref_60 - flattenedNames: *ref_742 + flattenedNames: *ref_754 parentsValue: {} properties: id: schema: *ref_39 rawValue: '' - language: *ref_741 - language: *ref_740 + language: *ref_753 + language: *ref_752 privateLinkServiceConnectionState: schema: *ref_61 - flattenedNames: *ref_746 + flattenedNames: *ref_758 parentsValue: {} properties: actionsRequired: schema: *ref_42 rawValue: None - language: *ref_745 + language: *ref_757 status: schema: *ref_40 rawValue: Approved - language: *ref_744 - language: *ref_743 + language: *ref_756 + language: *ref_755 provisioningState: schema: *ref_43 - flattenedNames: *ref_748 + flattenedNames: *ref_760 rawValue: Succeeded - language: *ref_747 - language: *ref_737 + language: *ref_759 + language: *ref_749 provisioningState: schema: *ref_36 rawValue: Succeeded - language: *ref_736 + language: *ref_748 publicNetworkAccess: schema: *ref_44 rawValue: Enabled - language: *ref_709 + language: *ref_721 sku: schema: *ref_53 parentsValue: {} @@ -24331,21 +24507,21 @@ testModel: name: schema: *ref_13 rawValue: standard - language: *ref_699 + language: *ref_711 family: schema: *ref_12 rawValue: A - language: *ref_698 - language: *ref_697 + language: *ref_710 + language: *ref_709 tenantId: schema: *ref_11 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_696 + language: *ref_708 vaultUri: schema: *ref_21 rawValue: https://sample-vault.vault.azure.net - language: *ref_726 - language: *ref_725 + language: *ref_738 + language: *ref_737 systemData: schema: *ref_79 parentsValue: {} @@ -24353,33 +24529,33 @@ testModel: createdAt: schema: *ref_76 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_721 + language: *ref_733 createdBy: schema: *ref_74 rawValue: keyVaultUser1 - language: *ref_719 + language: *ref_731 createdByType: schema: *ref_75 rawValue: User - language: *ref_720 + language: *ref_732 lastModifiedAt: schema: *ref_78 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_724 + language: *ref_736 lastModifiedBy: schema: *ref_77 rawValue: keyVaultUser2 - language: *ref_722 + language: *ref_734 lastModifiedByType: schema: *ref_75 rawValue: User - language: *ref_723 - language: *ref_718 + language: *ref_735 + language: *ref_730 tags: schema: *ref_73 properties: {} - language: *ref_717 - language: *ref_712 + language: *ref_729 + language: *ref_724 '201': body: schema: *ref_105 @@ -24388,19 +24564,19 @@ testModel: name: schema: *ref_70 rawValue: sample-vault - language: *ref_714 + language: *ref_726 type: schema: *ref_71 rawValue: Microsoft.KeyVault/vaults - language: *ref_715 + language: *ref_727 id: schema: *ref_69 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-resource-group/providers/Microsoft.KeyVault/vaults/sample-vault - language: *ref_713 + language: *ref_725 location: schema: *ref_72 rawValue: westus - language: *ref_716 + language: *ref_728 properties: schema: *ref_52 parentsValue: {} @@ -24414,7 +24590,7 @@ testModel: objectId: schema: *ref_15 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_702 + language: *ref_714 permissions: schema: *ref_55 parentsValue: {} @@ -24450,7 +24626,7 @@ testModel: rawValue: recover - schema: *ref_19 rawValue: purge - language: *ref_706 + language: *ref_718 keys: schema: *ref_394 elements: @@ -24486,7 +24662,7 @@ testModel: rawValue: recover - schema: *ref_17 rawValue: purge - language: *ref_704 + language: *ref_716 secrets: schema: *ref_395 elements: @@ -24506,33 +24682,33 @@ testModel: rawValue: recover - schema: *ref_18 rawValue: purge - language: *ref_705 - language: *ref_703 + language: *ref_717 + language: *ref_715 tenantId: schema: *ref_14 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_701 - language: *ref_700 + language: *ref_713 + language: *ref_712 enabledForDiskEncryption: schema: *ref_24 rawValue: true - language: *ref_707 + language: *ref_719 enabledForTemplateDeployment: schema: *ref_25 rawValue: true - language: *ref_708 + language: *ref_720 hsmPoolResourceId: schema: *ref_22 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_727 + language: *ref_739 provisioningState: schema: *ref_36 rawValue: Succeeded - language: *ref_736 + language: *ref_748 publicNetworkAccess: schema: *ref_44 rawValue: Enabled - language: *ref_709 + language: *ref_721 sku: schema: *ref_53 parentsValue: {} @@ -24540,21 +24716,21 @@ testModel: name: schema: *ref_13 rawValue: standard - language: *ref_699 + language: *ref_711 family: schema: *ref_12 rawValue: A - language: *ref_698 - language: *ref_697 + language: *ref_710 + language: *ref_709 tenantId: schema: *ref_11 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_696 + language: *ref_708 vaultUri: schema: *ref_21 rawValue: https://sample-vault.vault.azure.net - language: *ref_726 - language: *ref_725 + language: *ref_738 + language: *ref_737 systemData: schema: *ref_79 parentsValue: {} @@ -24562,35 +24738,35 @@ testModel: createdAt: schema: *ref_76 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_721 + language: *ref_733 createdBy: schema: *ref_74 rawValue: keyVaultUser1 - language: *ref_719 + language: *ref_731 createdByType: schema: *ref_75 rawValue: User - language: *ref_720 + language: *ref_732 lastModifiedAt: schema: *ref_78 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_724 + language: *ref_736 lastModifiedBy: schema: *ref_77 rawValue: keyVaultUser2 - language: *ref_722 + language: *ref_734 lastModifiedByType: schema: *ref_75 rawValue: User - language: *ref_723 - language: *ref_718 + language: *ref_735 + language: *ref_730 tags: schema: *ref_73 properties: {} - language: *ref_717 - language: *ref_752 - operation: *ref_753 - operationGroup: *ref_754 + language: *ref_729 + language: *ref_764 + operation: *ref_765 + operationGroup: *ref_766 - operationId: Vaults_Update examples: - name: Update an existing vault @@ -24598,24 +24774,24 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: sample-resource-group - language: *ref_764 + language: *ref_776 parameter: *ref_491 - exampleValue: schema: *ref_477 rawValue: sample-vault - language: *ref_765 + language: *ref_777 parameter: *ref_492 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_767 - parameter: *ref_766 + language: *ref_779 + parameter: *ref_778 - exampleValue: schema: *ref_488 parentsValue: {} @@ -24633,7 +24809,7 @@ testModel: objectId: schema: *ref_15 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_702 + language: *ref_714 permissions: schema: *ref_55 parentsValue: {} @@ -24669,7 +24845,7 @@ testModel: rawValue: recover - schema: *ref_19 rawValue: purge - language: *ref_706 + language: *ref_718 keys: schema: *ref_394 elements: @@ -24705,7 +24881,7 @@ testModel: rawValue: recover - schema: *ref_17 rawValue: purge - language: *ref_704 + language: *ref_716 secrets: schema: *ref_395 elements: @@ -24725,29 +24901,29 @@ testModel: rawValue: recover - schema: *ref_18 rawValue: purge - language: *ref_705 - language: *ref_703 + language: *ref_717 + language: *ref_715 tenantId: schema: *ref_14 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_701 - language: *ref_772 + language: *ref_713 + language: *ref_784 enabledForDeployment: schema: *ref_85 rawValue: true - language: *ref_773 + language: *ref_785 enabledForDiskEncryption: schema: *ref_24 rawValue: true - language: *ref_774 + language: *ref_786 enabledForTemplateDeployment: schema: *ref_25 rawValue: true - language: *ref_775 + language: *ref_787 publicNetworkAccess: schema: *ref_89 rawValue: Enabled - language: *ref_776 + language: *ref_788 sku: schema: *ref_53 parentsValue: {} @@ -24755,21 +24931,21 @@ testModel: name: schema: *ref_13 rawValue: standard - language: *ref_699 + language: *ref_711 family: schema: *ref_12 rawValue: A - language: *ref_698 - language: *ref_771 + language: *ref_710 + language: *ref_783 tenantId: schema: *ref_84 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_770 - language: *ref_769 - language: *ref_768 + language: *ref_782 + language: *ref_781 + language: *ref_780 parameter: *ref_489 - operation: *ref_779 - operationGroup: *ref_754 + operation: *ref_791 + operationGroup: *ref_766 originalFile: '' responses: '200': @@ -24780,19 +24956,19 @@ testModel: name: schema: *ref_70 rawValue: sample-vault - language: *ref_714 + language: *ref_726 type: schema: *ref_71 rawValue: Microsoft.KeyVault/vaults - language: *ref_715 + language: *ref_727 id: schema: *ref_69 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-resource-group/providers/Microsoft.KeyVault/vaults/sample-vault - language: *ref_713 + language: *ref_725 location: schema: *ref_72 rawValue: westus - language: *ref_716 + language: *ref_728 properties: schema: *ref_52 parentsValue: {} @@ -24806,7 +24982,7 @@ testModel: objectId: schema: *ref_15 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_702 + language: *ref_714 permissions: schema: *ref_55 parentsValue: {} @@ -24842,7 +25018,7 @@ testModel: rawValue: recover - schema: *ref_19 rawValue: purge - language: *ref_706 + language: *ref_718 keys: schema: *ref_394 elements: @@ -24878,7 +25054,7 @@ testModel: rawValue: recover - schema: *ref_17 rawValue: purge - language: *ref_704 + language: *ref_716 secrets: schema: *ref_395 elements: @@ -24898,25 +25074,25 @@ testModel: rawValue: recover - schema: *ref_18 rawValue: purge - language: *ref_705 - language: *ref_703 + language: *ref_717 + language: *ref_715 tenantId: schema: *ref_14 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_701 - language: *ref_700 + language: *ref_713 + language: *ref_712 enabledForDiskEncryption: schema: *ref_24 rawValue: true - language: *ref_707 + language: *ref_719 enabledForTemplateDeployment: schema: *ref_25 rawValue: true - language: *ref_708 + language: *ref_720 hsmPoolResourceId: schema: *ref_22 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_727 + language: *ref_739 networkAcls: schema: *ref_56 parentsValue: {} @@ -24924,11 +25100,11 @@ testModel: bypass: schema: *ref_31 rawValue: AzureServices - language: *ref_729 + language: *ref_741 defaultAction: schema: *ref_32 rawValue: Deny - language: *ref_730 + language: *ref_742 ipRules: schema: *ref_400 elements: @@ -24938,8 +25114,8 @@ testModel: value: schema: *ref_33 rawValue: '' - language: *ref_732 - language: *ref_731 + language: *ref_744 + language: *ref_743 virtualNetworkRules: schema: *ref_401 elements: @@ -24949,13 +25125,13 @@ testModel: id: schema: *ref_34 rawValue: '' - language: *ref_734 + language: *ref_746 ignoreMissingVnetServiceEndpoint: schema: *ref_35 rawValue: false - language: *ref_735 - language: *ref_733 - language: *ref_728 + language: *ref_747 + language: *ref_745 + language: *ref_740 privateEndpointConnections: schema: *ref_402 elements: @@ -24965,45 +25141,45 @@ testModel: id: schema: *ref_37 rawValue: '' - language: *ref_738 + language: *ref_750 privateEndpoint: schema: *ref_60 - flattenedNames: *ref_742 + flattenedNames: *ref_754 parentsValue: {} properties: id: schema: *ref_39 rawValue: '' - language: *ref_741 - language: *ref_740 + language: *ref_753 + language: *ref_752 privateLinkServiceConnectionState: schema: *ref_61 - flattenedNames: *ref_746 + flattenedNames: *ref_758 parentsValue: {} properties: actionsRequired: schema: *ref_42 rawValue: None - language: *ref_745 + language: *ref_757 status: schema: *ref_40 rawValue: Approved - language: *ref_744 - language: *ref_743 + language: *ref_756 + language: *ref_755 provisioningState: schema: *ref_43 - flattenedNames: *ref_748 + flattenedNames: *ref_760 rawValue: Succeeded - language: *ref_747 - language: *ref_737 + language: *ref_759 + language: *ref_749 provisioningState: schema: *ref_36 rawValue: Succeeded - language: *ref_736 + language: *ref_748 publicNetworkAccess: schema: *ref_44 rawValue: Enabled - language: *ref_709 + language: *ref_721 sku: schema: *ref_53 parentsValue: {} @@ -25011,21 +25187,21 @@ testModel: name: schema: *ref_13 rawValue: standard - language: *ref_699 + language: *ref_711 family: schema: *ref_12 rawValue: A - language: *ref_698 - language: *ref_697 + language: *ref_710 + language: *ref_709 tenantId: schema: *ref_11 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_696 + language: *ref_708 vaultUri: schema: *ref_21 rawValue: https://sample-vault.vault.azure.net - language: *ref_726 - language: *ref_725 + language: *ref_738 + language: *ref_737 systemData: schema: *ref_79 parentsValue: {} @@ -25033,33 +25209,33 @@ testModel: createdAt: schema: *ref_76 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_721 + language: *ref_733 createdBy: schema: *ref_74 rawValue: keyVaultUser1 - language: *ref_719 + language: *ref_731 createdByType: schema: *ref_75 rawValue: User - language: *ref_720 + language: *ref_732 lastModifiedAt: schema: *ref_78 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_724 + language: *ref_736 lastModifiedBy: schema: *ref_77 rawValue: keyVaultUser2 - language: *ref_722 + language: *ref_734 lastModifiedByType: schema: *ref_75 rawValue: User - language: *ref_723 - language: *ref_718 + language: *ref_735 + language: *ref_730 tags: schema: *ref_73 properties: {} - language: *ref_717 - language: *ref_777 + language: *ref_729 + language: *ref_789 '201': body: schema: *ref_105 @@ -25068,19 +25244,19 @@ testModel: name: schema: *ref_70 rawValue: sample-vault - language: *ref_714 + language: *ref_726 type: schema: *ref_71 rawValue: Microsoft.KeyVault/vaults - language: *ref_715 + language: *ref_727 id: schema: *ref_69 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-resource-group/providers/Microsoft.KeyVault/vaults/sample-vault - language: *ref_713 + language: *ref_725 location: schema: *ref_72 rawValue: westus - language: *ref_716 + language: *ref_728 properties: schema: *ref_52 parentsValue: {} @@ -25094,7 +25270,7 @@ testModel: objectId: schema: *ref_15 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_702 + language: *ref_714 permissions: schema: *ref_55 parentsValue: {} @@ -25130,7 +25306,7 @@ testModel: rawValue: recover - schema: *ref_19 rawValue: purge - language: *ref_706 + language: *ref_718 keys: schema: *ref_394 elements: @@ -25166,7 +25342,7 @@ testModel: rawValue: recover - schema: *ref_17 rawValue: purge - language: *ref_704 + language: *ref_716 secrets: schema: *ref_395 elements: @@ -25186,33 +25362,33 @@ testModel: rawValue: recover - schema: *ref_18 rawValue: purge - language: *ref_705 - language: *ref_703 + language: *ref_717 + language: *ref_715 tenantId: schema: *ref_14 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_701 - language: *ref_700 + language: *ref_713 + language: *ref_712 enabledForDiskEncryption: schema: *ref_24 rawValue: true - language: *ref_707 + language: *ref_719 enabledForTemplateDeployment: schema: *ref_25 rawValue: true - language: *ref_708 + language: *ref_720 hsmPoolResourceId: schema: *ref_22 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_727 + language: *ref_739 provisioningState: schema: *ref_36 rawValue: Succeeded - language: *ref_736 + language: *ref_748 publicNetworkAccess: schema: *ref_44 rawValue: Enabled - language: *ref_709 + language: *ref_721 sku: schema: *ref_53 parentsValue: {} @@ -25220,21 +25396,21 @@ testModel: name: schema: *ref_13 rawValue: standard - language: *ref_699 + language: *ref_711 family: schema: *ref_12 rawValue: A - language: *ref_698 - language: *ref_697 + language: *ref_710 + language: *ref_709 tenantId: schema: *ref_11 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_696 + language: *ref_708 vaultUri: schema: *ref_21 rawValue: https://sample-vault.vault.azure.net - language: *ref_726 - language: *ref_725 + language: *ref_738 + language: *ref_737 systemData: schema: *ref_79 parentsValue: {} @@ -25242,35 +25418,35 @@ testModel: createdAt: schema: *ref_76 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_721 + language: *ref_733 createdBy: schema: *ref_74 rawValue: keyVaultUser1 - language: *ref_719 + language: *ref_731 createdByType: schema: *ref_75 rawValue: User - language: *ref_720 + language: *ref_732 lastModifiedAt: schema: *ref_78 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_724 + language: *ref_736 lastModifiedBy: schema: *ref_77 rawValue: keyVaultUser2 - language: *ref_722 + language: *ref_734 lastModifiedByType: schema: *ref_75 rawValue: User - language: *ref_723 - language: *ref_718 + language: *ref_735 + language: *ref_730 tags: schema: *ref_73 properties: {} - language: *ref_717 - language: *ref_778 - operation: *ref_779 - operationGroup: *ref_754 + language: *ref_729 + language: *ref_790 + operation: *ref_791 + operationGroup: *ref_766 - operationId: Vaults_Delete examples: - name: Delete a vault @@ -25278,34 +25454,34 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: sample-resource-group - language: *ref_780 + language: *ref_792 parameter: *ref_493 - exampleValue: schema: *ref_2 rawValue: sample-vault - language: *ref_781 + language: *ref_793 parameter: *ref_494 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_783 - parameter: *ref_782 - operation: *ref_786 - operationGroup: *ref_754 + language: *ref_795 + parameter: *ref_794 + operation: *ref_798 + operationGroup: *ref_766 originalFile: '' responses: '200': - headers: *ref_784 + headers: *ref_796 '204': - headers: *ref_785 - operation: *ref_786 - operationGroup: *ref_754 + headers: *ref_797 + operation: *ref_798 + operationGroup: *ref_766 - operationId: Vaults_Get examples: - name: Retrieve a vault @@ -25313,26 +25489,26 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: sample-resource-group - language: *ref_787 + language: *ref_799 parameter: *ref_495 - exampleValue: schema: *ref_2 rawValue: sample-vault - language: *ref_788 + language: *ref_800 parameter: *ref_496 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_790 - parameter: *ref_789 - operation: *ref_792 - operationGroup: *ref_754 + language: *ref_802 + parameter: *ref_801 + operation: *ref_804 + operationGroup: *ref_766 originalFile: '' responses: '200': @@ -25343,19 +25519,19 @@ testModel: name: schema: *ref_70 rawValue: sample-vault - language: *ref_714 + language: *ref_726 type: schema: *ref_71 rawValue: Microsoft.KeyVault/vaults - language: *ref_715 + language: *ref_727 id: schema: *ref_69 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-resource-group/providers/Microsoft.KeyVault/vaults/sample-vault - language: *ref_713 + language: *ref_725 location: schema: *ref_72 rawValue: westus - language: *ref_716 + language: *ref_728 properties: schema: *ref_52 parentsValue: {} @@ -25369,7 +25545,7 @@ testModel: objectId: schema: *ref_15 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_702 + language: *ref_714 permissions: schema: *ref_55 parentsValue: {} @@ -25405,7 +25581,7 @@ testModel: rawValue: recover - schema: *ref_19 rawValue: purge - language: *ref_706 + language: *ref_718 keys: schema: *ref_394 elements: @@ -25441,7 +25617,7 @@ testModel: rawValue: recover - schema: *ref_17 rawValue: purge - language: *ref_704 + language: *ref_716 secrets: schema: *ref_395 elements: @@ -25461,33 +25637,33 @@ testModel: rawValue: recover - schema: *ref_18 rawValue: purge - language: *ref_705 - language: *ref_703 + language: *ref_717 + language: *ref_715 tenantId: schema: *ref_14 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_701 - language: *ref_700 + language: *ref_713 + language: *ref_712 enabledForDiskEncryption: schema: *ref_24 rawValue: true - language: *ref_707 + language: *ref_719 enabledForTemplateDeployment: schema: *ref_25 rawValue: true - language: *ref_708 + language: *ref_720 hsmPoolResourceId: schema: *ref_22 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_727 + language: *ref_739 provisioningState: schema: *ref_36 rawValue: Succeeded - language: *ref_736 + language: *ref_748 publicNetworkAccess: schema: *ref_44 rawValue: Enabled - language: *ref_709 + language: *ref_721 sku: schema: *ref_53 parentsValue: {} @@ -25495,21 +25671,21 @@ testModel: name: schema: *ref_13 rawValue: standard - language: *ref_699 + language: *ref_711 family: schema: *ref_12 rawValue: A - language: *ref_698 - language: *ref_697 + language: *ref_710 + language: *ref_709 tenantId: schema: *ref_11 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_696 + language: *ref_708 vaultUri: schema: *ref_21 rawValue: https://sample-vault.vault.azure.net - language: *ref_726 - language: *ref_725 + language: *ref_738 + language: *ref_737 systemData: schema: *ref_79 parentsValue: {} @@ -25517,35 +25693,35 @@ testModel: createdAt: schema: *ref_76 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_721 + language: *ref_733 createdBy: schema: *ref_74 rawValue: keyVaultUser1 - language: *ref_719 + language: *ref_731 createdByType: schema: *ref_75 rawValue: User - language: *ref_720 + language: *ref_732 lastModifiedAt: schema: *ref_78 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_724 + language: *ref_736 lastModifiedBy: schema: *ref_77 rawValue: keyVaultUser2 - language: *ref_722 + language: *ref_734 lastModifiedByType: schema: *ref_75 rawValue: User - language: *ref_723 - language: *ref_718 + language: *ref_735 + language: *ref_730 tags: schema: *ref_73 properties: {} - language: *ref_717 - language: *ref_791 - operation: *ref_792 - operationGroup: *ref_754 + language: *ref_729 + language: *ref_803 + operation: *ref_804 + operationGroup: *ref_766 - operationId: Vaults_ListKeys examples: - name: List keys on an existing vault @@ -25553,26 +25729,26 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: sample-resource-group - language: *ref_793 + language: *ref_805 parameter: *ref_497 - exampleValue: schema: *ref_477 rawValue: sample-vault - language: *ref_794 + language: *ref_806 parameter: *ref_498 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_796 - parameter: *ref_795 - operation: *ref_801 - operationGroup: *ref_754 + language: *ref_808 + parameter: *ref_807 + operation: *ref_813 + operationGroup: *ref_766 originalFile: '' responses: '200': @@ -25589,26 +25765,26 @@ testModel: content: schema: *ref_92 rawValue: content of key1 - language: *ref_800 + language: *ref_812 key: schema: *ref_91 rawValue: key1 - language: *ref_799 + language: *ref_811 - schema: *ref_94 parentsValue: {} properties: content: schema: *ref_92 rawValue: content of key2 - language: *ref_800 + language: *ref_812 key: schema: *ref_91 rawValue: key2 - language: *ref_799 - language: *ref_798 - language: *ref_797 - operation: *ref_801 - operationGroup: *ref_754 + language: *ref_811 + language: *ref_810 + language: *ref_809 + operation: *ref_813 + operationGroup: *ref_766 - operationId: Vaults_Validate examples: - name: Validate an existing vault @@ -25616,26 +25792,26 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: sample-resource-group - language: *ref_802 + language: *ref_814 parameter: *ref_500 - exampleValue: schema: *ref_477 rawValue: sample-vault - language: *ref_803 + language: *ref_815 parameter: *ref_501 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_805 - parameter: *ref_804 - operation: *ref_812 - operationGroup: *ref_754 + language: *ref_817 + parameter: *ref_816 + operation: *ref_824 + operationGroup: *ref_766 originalFile: '' responses: '200': @@ -25652,38 +25828,38 @@ testModel: type: schema: *ref_95 rawValue: type1 - language: *ref_808 + language: *ref_820 description: schema: *ref_96 rawValue: Type 1 issue - language: *ref_809 + language: *ref_821 sev: schema: *ref_97 rawValue: 1 - language: *ref_810 + language: *ref_822 - schema: *ref_99 parentsValue: {} properties: type: schema: *ref_95 rawValue: type2 - language: *ref_808 + language: *ref_820 description: schema: *ref_96 rawValue: Type 2 issue - language: *ref_809 + language: *ref_821 sev: schema: *ref_97 rawValue: 0 - language: *ref_810 - language: *ref_807 + language: *ref_822 + language: *ref_819 result: schema: *ref_98 rawValue: passed - language: *ref_811 - language: *ref_806 - operation: *ref_812 - operationGroup: *ref_754 + language: *ref_823 + language: *ref_818 + operation: *ref_824 + operationGroup: *ref_766 - operationId: Vaults_Disable examples: - name: Disable a vault @@ -25691,31 +25867,31 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: sample-resource-group - language: *ref_813 + language: *ref_825 parameter: *ref_503 - exampleValue: schema: *ref_477 rawValue: sample-vault - language: *ref_814 + language: *ref_826 parameter: *ref_504 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_816 - parameter: *ref_815 - operation: *ref_817 - operationGroup: *ref_754 + language: *ref_828 + parameter: *ref_827 + operation: *ref_829 + operationGroup: *ref_766 originalFile: '' responses: '200': {} - operation: *ref_817 - operationGroup: *ref_754 + operation: *ref_829 + operationGroup: *ref_766 - operationId: Vaults_UpdateAccessPolicy examples: - name: Add an access policy, or update an access policy with new permissions @@ -25723,29 +25899,29 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: sample-group - language: *ref_818 + language: *ref_830 parameter: *ref_509 - exampleValue: schema: *ref_477 rawValue: sample-vault - language: *ref_819 + language: *ref_831 parameter: *ref_510 - exampleValue: schema: *ref_505 rawValue: add - language: *ref_820 + language: *ref_832 parameter: *ref_511 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_822 - parameter: *ref_821 + language: *ref_834 + parameter: *ref_833 - exampleValue: schema: *ref_506 parentsValue: {} @@ -25763,7 +25939,7 @@ testModel: objectId: schema: *ref_15 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_702 + language: *ref_714 permissions: schema: *ref_55 parentsValue: {} @@ -25773,30 +25949,30 @@ testModel: elements: - schema: *ref_19 rawValue: get - language: *ref_706 + language: *ref_718 keys: schema: *ref_394 elements: - schema: *ref_17 rawValue: encrypt - language: *ref_704 + language: *ref_716 secrets: schema: *ref_395 elements: - schema: *ref_18 rawValue: get - language: *ref_705 - language: *ref_703 + language: *ref_717 + language: *ref_715 tenantId: schema: *ref_14 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_701 - language: *ref_825 - language: *ref_824 - language: *ref_823 + language: *ref_713 + language: *ref_837 + language: *ref_836 + language: *ref_835 parameter: *ref_507 - operation: *ref_830 - operationGroup: *ref_754 + operation: *ref_842 + operationGroup: *ref_766 originalFile: '' responses: '200': @@ -25807,11 +25983,11 @@ testModel: type: schema: *ref_102 rawValue: Microsoft.KeyVault/vaults/accessPolicies - language: *ref_828 + language: *ref_840 id: schema: *ref_100 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/vaults/sample-vault/accessPolicies/ - language: *ref_827 + language: *ref_839 properties: schema: *ref_104 parentsValue: {} @@ -25825,7 +26001,7 @@ testModel: objectId: schema: *ref_15 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_702 + language: *ref_714 permissions: schema: *ref_55 parentsValue: {} @@ -25835,27 +26011,27 @@ testModel: elements: - schema: *ref_19 rawValue: get - language: *ref_706 + language: *ref_718 keys: schema: *ref_394 elements: - schema: *ref_17 rawValue: encrypt - language: *ref_704 + language: *ref_716 secrets: schema: *ref_395 elements: - schema: *ref_18 rawValue: get - language: *ref_705 - language: *ref_703 + language: *ref_717 + language: *ref_715 tenantId: schema: *ref_14 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_701 - language: *ref_825 - language: *ref_824 - language: *ref_826 + language: *ref_713 + language: *ref_837 + language: *ref_836 + language: *ref_838 '201': body: schema: *ref_506 @@ -25864,11 +26040,11 @@ testModel: type: schema: *ref_102 rawValue: Microsoft.KeyVault/vaults/accessPolicies - language: *ref_828 + language: *ref_840 id: schema: *ref_100 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/vaults/sample-vault/accessPolicies/ - language: *ref_827 + language: *ref_839 properties: schema: *ref_104 parentsValue: {} @@ -25882,7 +26058,7 @@ testModel: objectId: schema: *ref_15 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_702 + language: *ref_714 permissions: schema: *ref_55 parentsValue: {} @@ -25892,29 +26068,29 @@ testModel: elements: - schema: *ref_19 rawValue: get - language: *ref_706 + language: *ref_718 keys: schema: *ref_394 elements: - schema: *ref_17 rawValue: encrypt - language: *ref_704 + language: *ref_716 secrets: schema: *ref_395 elements: - schema: *ref_18 rawValue: get - language: *ref_705 - language: *ref_703 + language: *ref_717 + language: *ref_715 tenantId: schema: *ref_14 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_701 - language: *ref_825 - language: *ref_824 - language: *ref_829 - operation: *ref_830 - operationGroup: *ref_754 + language: *ref_713 + language: *ref_837 + language: *ref_836 + language: *ref_841 + operation: *ref_842 + operationGroup: *ref_766 - operationId: Vaults_ListByResourceGroup examples: - name: List vaults in the specified resource group @@ -25922,26 +26098,26 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: sample-group - language: *ref_831 + language: *ref_843 parameter: *ref_513 - exampleValue: schema: *ref_512 rawValue: 1 - language: *ref_832 + language: *ref_844 parameter: *ref_514 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_834 - parameter: *ref_833 - operation: *ref_839 - operationGroup: *ref_754 + language: *ref_846 + parameter: *ref_845 + operation: *ref_851 + operationGroup: *ref_766 originalFile: '' responses: '200': @@ -25952,7 +26128,7 @@ testModel: nextLink: schema: *ref_106 rawValue: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/vaults?api-version=2021-10-01&$skiptoken=dmF1bHQtcGVza3ktanVyeS03MzA3Ng== - language: *ref_838 + language: *ref_850 value: schema: *ref_407 elements: @@ -25962,19 +26138,19 @@ testModel: name: schema: *ref_70 rawValue: sample-vault - language: *ref_714 + language: *ref_726 type: schema: *ref_71 rawValue: Microsoft.KeyVault/vaults - language: *ref_715 + language: *ref_727 id: schema: *ref_69 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/vaults/sample-vault - language: *ref_713 + language: *ref_725 location: schema: *ref_72 rawValue: westus - language: *ref_716 + language: *ref_728 properties: schema: *ref_52 parentsValue: {} @@ -25988,7 +26164,7 @@ testModel: objectId: schema: *ref_15 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_702 + language: *ref_714 permissions: schema: *ref_55 parentsValue: {} @@ -26024,7 +26200,7 @@ testModel: rawValue: recover - schema: *ref_19 rawValue: purge - language: *ref_706 + language: *ref_718 keys: schema: *ref_394 elements: @@ -26060,7 +26236,7 @@ testModel: rawValue: recover - schema: *ref_17 rawValue: purge - language: *ref_704 + language: *ref_716 secrets: schema: *ref_395 elements: @@ -26080,33 +26256,33 @@ testModel: rawValue: recover - schema: *ref_18 rawValue: purge - language: *ref_705 - language: *ref_703 + language: *ref_717 + language: *ref_715 tenantId: schema: *ref_14 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_701 - language: *ref_700 + language: *ref_713 + language: *ref_712 enableSoftDelete: schema: *ref_26 rawValue: true - language: *ref_837 + language: *ref_849 enabledForDiskEncryption: schema: *ref_24 rawValue: true - language: *ref_707 + language: *ref_719 enabledForTemplateDeployment: schema: *ref_25 rawValue: true - language: *ref_708 + language: *ref_720 hsmPoolResourceId: schema: *ref_22 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_727 + language: *ref_739 provisioningState: schema: *ref_36 rawValue: Succeeded - language: *ref_736 + language: *ref_748 sku: schema: *ref_53 parentsValue: {} @@ -26114,21 +26290,21 @@ testModel: name: schema: *ref_13 rawValue: premium - language: *ref_699 + language: *ref_711 family: schema: *ref_12 rawValue: A - language: *ref_698 - language: *ref_697 + language: *ref_710 + language: *ref_709 tenantId: schema: *ref_11 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_696 + language: *ref_708 vaultUri: schema: *ref_21 rawValue: https://sample-vault.vault.azure.net/ - language: *ref_726 - language: *ref_725 + language: *ref_738 + language: *ref_737 systemData: schema: *ref_79 parentsValue: {} @@ -26136,36 +26312,36 @@ testModel: createdAt: schema: *ref_76 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_721 + language: *ref_733 createdBy: schema: *ref_74 rawValue: keyVaultUser1 - language: *ref_719 + language: *ref_731 createdByType: schema: *ref_75 rawValue: User - language: *ref_720 + language: *ref_732 lastModifiedAt: schema: *ref_78 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_724 + language: *ref_736 lastModifiedBy: schema: *ref_77 rawValue: keyVaultUser2 - language: *ref_722 + language: *ref_734 lastModifiedByType: schema: *ref_75 rawValue: User - language: *ref_723 - language: *ref_718 + language: *ref_735 + language: *ref_730 tags: schema: *ref_73 properties: {} - language: *ref_717 - language: *ref_836 - language: *ref_835 - operation: *ref_839 - operationGroup: *ref_754 + language: *ref_729 + language: *ref_848 + language: *ref_847 + operation: *ref_851 + operationGroup: *ref_766 - operationId: Vaults_ListBySubscription examples: - name: List vaults in the specified subscription @@ -26173,21 +26349,21 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_512 rawValue: 1 - language: *ref_840 + language: *ref_852 parameter: *ref_516 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_842 - parameter: *ref_841 - operation: *ref_844 - operationGroup: *ref_754 + language: *ref_854 + parameter: *ref_853 + operation: *ref_856 + operationGroup: *ref_766 originalFile: '' responses: '200': @@ -26198,7 +26374,7 @@ testModel: nextLink: schema: *ref_106 rawValue: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resources?api-version=22021-10-01&$skiptoken=dmF1bHQtcGVza3ktanVyeS03MzA3Ng== - language: *ref_838 + language: *ref_850 value: schema: *ref_407 elements: @@ -26208,19 +26384,19 @@ testModel: name: schema: *ref_70 rawValue: sample-vault - language: *ref_714 + language: *ref_726 type: schema: *ref_71 rawValue: Microsoft.KeyVault/vaults - language: *ref_715 + language: *ref_727 id: schema: *ref_69 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/vaults/sample-vault - language: *ref_713 + language: *ref_725 location: schema: *ref_72 rawValue: westus - language: *ref_716 + language: *ref_728 properties: schema: *ref_52 parentsValue: {} @@ -26234,7 +26410,7 @@ testModel: objectId: schema: *ref_15 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_702 + language: *ref_714 permissions: schema: *ref_55 parentsValue: {} @@ -26270,7 +26446,7 @@ testModel: rawValue: recover - schema: *ref_19 rawValue: purge - language: *ref_706 + language: *ref_718 keys: schema: *ref_394 elements: @@ -26306,7 +26482,7 @@ testModel: rawValue: recover - schema: *ref_17 rawValue: purge - language: *ref_704 + language: *ref_716 secrets: schema: *ref_395 elements: @@ -26326,33 +26502,33 @@ testModel: rawValue: recover - schema: *ref_18 rawValue: purge - language: *ref_705 - language: *ref_703 + language: *ref_717 + language: *ref_715 tenantId: schema: *ref_14 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_701 - language: *ref_700 + language: *ref_713 + language: *ref_712 enableSoftDelete: schema: *ref_26 rawValue: true - language: *ref_837 + language: *ref_849 enabledForDiskEncryption: schema: *ref_24 rawValue: true - language: *ref_707 + language: *ref_719 enabledForTemplateDeployment: schema: *ref_25 rawValue: true - language: *ref_708 + language: *ref_720 hsmPoolResourceId: schema: *ref_22 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_727 + language: *ref_739 provisioningState: schema: *ref_36 rawValue: Succeeded - language: *ref_736 + language: *ref_748 sku: schema: *ref_53 parentsValue: {} @@ -26360,21 +26536,21 @@ testModel: name: schema: *ref_13 rawValue: premium - language: *ref_699 + language: *ref_711 family: schema: *ref_12 rawValue: A - language: *ref_698 - language: *ref_697 + language: *ref_710 + language: *ref_709 tenantId: schema: *ref_11 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_696 + language: *ref_708 vaultUri: schema: *ref_21 rawValue: https://sample-vault.vault.azure.net/ - language: *ref_726 - language: *ref_725 + language: *ref_738 + language: *ref_737 systemData: schema: *ref_79 parentsValue: {} @@ -26382,36 +26558,36 @@ testModel: createdAt: schema: *ref_76 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_721 + language: *ref_733 createdBy: schema: *ref_74 rawValue: keyVaultUser1 - language: *ref_719 + language: *ref_731 createdByType: schema: *ref_75 rawValue: User - language: *ref_720 + language: *ref_732 lastModifiedAt: schema: *ref_78 rawValue: '2020-01-01T12:00:00.0000000Z' - language: *ref_724 + language: *ref_736 lastModifiedBy: schema: *ref_77 rawValue: keyVaultUser2 - language: *ref_722 + language: *ref_734 lastModifiedByType: schema: *ref_75 rawValue: User - language: *ref_723 - language: *ref_718 + language: *ref_735 + language: *ref_730 tags: schema: *ref_73 properties: {} - language: *ref_717 - language: *ref_836 - language: *ref_843 - operation: *ref_844 - operationGroup: *ref_754 + language: *ref_729 + language: *ref_848 + language: *ref_855 + operation: *ref_856 + operationGroup: *ref_766 - operationId: Vaults_ListDeleted examples: - name: List deleted vaults in the specified subscription @@ -26419,16 +26595,16 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_846 - parameter: *ref_845 - operation: *ref_860 - operationGroup: *ref_754 + language: *ref_858 + parameter: *ref_857 + operation: *ref_872 + operationGroup: *ref_766 originalFile: '' responses: '200': @@ -26440,7 +26616,7 @@ testModel: schema: *ref_116 rawValue: >- https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/deletedVaults?api-version=2021-10-01&%24skiptoken=HY3RaoMwAEX%2fRcbeYhJrnRXKYNWOuqpME0sfNcYui0Yxade19N8ne7hcDlzOvVuKX81eKKmt4G4dooLQwgqsL2NGHUDYV6o68Z4rY1e388RtNvRQn2vNJjEaMSgNvcbneMUcsKg8BFwft8DndQ0w9hu2QOiFLRs4TsNFNHzSMBFsGvTQGvuD%2f5bVuTOw4R03vPkH%2fVqNAlzm5SxfOwh7ACOA8POTlvPjILlaU1ke8jImOc23JCppQVfZnna0DXc4ISc3vSVuRo5zJE6%2bj25C3vwk2v2kEV2mMn7PyOc1DbtNGkonnzuLym1G400uI5QRZj0efw%3d%3d - language: *ref_859 + language: *ref_871 value: schema: *ref_408 elements: @@ -26450,15 +26626,15 @@ testModel: name: schema: *ref_108 rawValue: vault-agile-drawer-6404 - language: *ref_850 + language: *ref_862 type: schema: *ref_109 rawValue: Microsoft.KeyVault/deletedVaults - language: *ref_851 + language: *ref_863 id: schema: *ref_107 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/sample-vault - language: *ref_849 + language: *ref_861 properties: schema: *ref_118 parentsValue: {} @@ -26466,32 +26642,32 @@ testModel: deletionDate: schema: *ref_112 rawValue: '2017-01-01T00:00:59Z' - language: *ref_855 + language: *ref_867 location: schema: *ref_111 rawValue: westus - language: *ref_854 + language: *ref_866 purgeProtectionEnabled: schema: *ref_115 rawValue: true - language: *ref_858 + language: *ref_870 scheduledPurgeDate: schema: *ref_113 rawValue: '2017-04-01T00:00:59Z' - language: *ref_856 + language: *ref_868 tags: schema: *ref_114 properties: {} - language: *ref_857 + language: *ref_869 vaultId: schema: *ref_110 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/vaults/sample-vault - language: *ref_853 - language: *ref_852 - language: *ref_848 - language: *ref_847 - operation: *ref_860 - operationGroup: *ref_754 + language: *ref_865 + language: *ref_864 + language: *ref_860 + language: *ref_859 + operation: *ref_872 + operationGroup: *ref_766 - operationId: Vaults_GetDeleted examples: - name: Retrieve a deleted vault @@ -26499,26 +26675,26 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: sample-vault - language: *ref_861 + language: *ref_873 parameter: *ref_518 - exampleValue: schema: *ref_2 rawValue: westus - language: *ref_862 + language: *ref_874 parameter: *ref_519 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_864 - parameter: *ref_863 - operation: *ref_867 - operationGroup: *ref_754 + language: *ref_876 + parameter: *ref_875 + operation: *ref_879 + operationGroup: *ref_766 originalFile: '' responses: '200': @@ -26529,15 +26705,15 @@ testModel: name: schema: *ref_108 rawValue: sample-vault - language: *ref_850 + language: *ref_862 type: schema: *ref_109 rawValue: Microsoft.KeyVault/deletedVaults - language: *ref_851 + language: *ref_863 id: schema: *ref_107 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedVaults/sample-vault - language: *ref_849 + language: *ref_861 properties: schema: *ref_118 parentsValue: {} @@ -26545,32 +26721,32 @@ testModel: deletionDate: schema: *ref_112 rawValue: '2017-01-01T00:00:59Z' - language: *ref_855 + language: *ref_867 location: schema: *ref_111 rawValue: westus - language: *ref_854 + language: *ref_866 purgeProtectionEnabled: schema: *ref_115 rawValue: true - language: *ref_858 + language: *ref_870 scheduledPurgeDate: schema: *ref_113 rawValue: '2017-04-01T00:00:59Z' - language: *ref_856 + language: *ref_868 tags: schema: *ref_114 properties: {} - language: *ref_857 + language: *ref_869 vaultId: schema: *ref_110 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/vaults/sample-vault - language: *ref_853 - language: *ref_852 - language: *ref_865 - headers: *ref_866 - operation: *ref_867 - operationGroup: *ref_754 + language: *ref_865 + language: *ref_864 + language: *ref_877 + headers: *ref_878 + operation: *ref_879 + operationGroup: *ref_766 - operationId: Vaults_PurgeDeleted examples: - name: Purge a deleted vault @@ -26578,34 +26754,34 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: sample-vault - language: *ref_868 + language: *ref_880 parameter: *ref_520 - exampleValue: schema: *ref_2 rawValue: westus - language: *ref_869 + language: *ref_881 parameter: *ref_521 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_871 - parameter: *ref_870 - operation: *ref_874 - operationGroup: *ref_754 + language: *ref_883 + parameter: *ref_882 + operation: *ref_886 + operationGroup: *ref_766 originalFile: '' responses: '200': - headers: *ref_872 + headers: *ref_884 '202': - headers: *ref_873 - operation: *ref_874 - operationGroup: *ref_754 + headers: *ref_885 + operation: *ref_886 + operationGroup: *ref_766 - operationId: Vaults_CheckNameAvailability examples: - name: Validate a vault name @@ -26613,14 +26789,14 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_876 - parameter: *ref_875 + language: *ref_888 + parameter: *ref_887 - exampleValue: schema: *ref_522 parentsValue: {} @@ -26628,15 +26804,15 @@ testModel: name: schema: *ref_119 rawValue: sample-vault - language: *ref_878 + language: *ref_890 type: schema: *ref_120 rawValue: Microsoft.KeyVault/vaults - language: *ref_879 - language: *ref_877 + language: *ref_891 + language: *ref_889 parameter: *ref_523 - operation: *ref_882 - operationGroup: *ref_754 + operation: *ref_894 + operationGroup: *ref_766 originalFile: '' responses: '200': @@ -26647,10 +26823,10 @@ testModel: nameAvailable: schema: *ref_121 rawValue: true - language: *ref_881 - language: *ref_880 - operation: *ref_882 - operationGroup: *ref_754 + language: *ref_893 + language: *ref_892 + operation: *ref_894 + operationGroup: *ref_766 - operationId: PrivateEndpointConnections_Get examples: - name: KeyVaultGetPrivateEndpointConnection @@ -26658,31 +26834,31 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: sample-group - language: *ref_883 + language: *ref_895 parameter: *ref_526 - exampleValue: schema: *ref_477 rawValue: sample-vault - language: *ref_884 + language: *ref_896 parameter: *ref_527 - exampleValue: schema: *ref_2 rawValue: sample-pec - language: *ref_885 + language: *ref_897 parameter: *ref_528 - exampleValue: schema: *ref_478 rawValue: '2018-02-14' - language: *ref_887 - parameter: *ref_886 - operation: *ref_901 - operationGroup: *ref_902 + language: *ref_899 + parameter: *ref_898 + operation: *ref_913 + operationGroup: *ref_914 originalFile: '' responses: '200': @@ -26693,57 +26869,57 @@ testModel: name: schema: *ref_147 rawValue: sample-pec - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: Microsoft.KeyVault/vaults/privateEndpointConnections - language: *ref_899 + language: *ref_911 etag: schema: *ref_151 rawValue: '' - language: *ref_889 + language: *ref_901 id: schema: *ref_146 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/vaults/sample-vault/privateEndpointConnections/sample-pec - language: *ref_897 + language: *ref_909 privateEndpoint: schema: *ref_60 - flattenedNames: *ref_891 + flattenedNames: *ref_903 parentsValue: {} properties: id: schema: *ref_39 rawValue: /subscriptions/00000000-0000-0000-1234-000000000000/resourceGroups/sample-group/providers/Microsoft.Network/privateEndpoints/sample-pe - language: *ref_741 - language: *ref_890 + language: *ref_753 + language: *ref_902 privateLinkServiceConnectionState: schema: *ref_61 - flattenedNames: *ref_894 + flattenedNames: *ref_906 parentsValue: {} properties: description: schema: *ref_41 rawValue: This was automatically approved by user1234@contoso.com - language: *ref_893 + language: *ref_905 actionsRequired: schema: *ref_42 rawValue: None - language: *ref_745 + language: *ref_757 status: schema: *ref_40 rawValue: Approved - language: *ref_744 - language: *ref_892 + language: *ref_756 + language: *ref_904 provisioningState: schema: *ref_43 - flattenedNames: *ref_896 + flattenedNames: *ref_908 rawValue: Succeeded - language: *ref_895 - language: *ref_888 + language: *ref_907 + language: *ref_900 '204': - headers: *ref_900 - operation: *ref_901 - operationGroup: *ref_902 + headers: *ref_912 + operation: *ref_913 + operationGroup: *ref_914 - operationId: PrivateEndpointConnections_Put examples: - name: KeyVaultPutPrivateEndpointConnection @@ -26751,29 +26927,29 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: sample-group - language: *ref_903 + language: *ref_915 parameter: *ref_531 - exampleValue: schema: *ref_477 rawValue: sample-vault - language: *ref_904 + language: *ref_916 parameter: *ref_532 - exampleValue: schema: *ref_2 rawValue: sample-pec - language: *ref_905 + language: *ref_917 parameter: *ref_533 - exampleValue: schema: *ref_478 rawValue: '2018-02-14' - language: *ref_907 - parameter: *ref_906 + language: *ref_919 + parameter: *ref_918 - exampleValue: schema: *ref_124 parentsValue: {} @@ -26781,25 +26957,25 @@ testModel: etag: schema: *ref_151 rawValue: '' - language: *ref_889 + language: *ref_901 privateLinkServiceConnectionState: schema: *ref_61 - flattenedNames: *ref_894 + flattenedNames: *ref_906 parentsValue: {} properties: description: schema: *ref_41 rawValue: My name is Joe and I'm approving this. - language: *ref_893 + language: *ref_905 status: schema: *ref_40 rawValue: Approved - language: *ref_744 - language: *ref_892 - language: *ref_908 + language: *ref_756 + language: *ref_904 + language: *ref_920 parameter: *ref_529 - operation: *ref_910 - operationGroup: *ref_902 + operation: *ref_922 + operationGroup: *ref_914 originalFile: '' responses: '200': @@ -26810,55 +26986,55 @@ testModel: name: schema: *ref_147 rawValue: sample-pec - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: Microsoft.KeyVault/vaults/privateEndpointConnections - language: *ref_899 + language: *ref_911 etag: schema: *ref_151 rawValue: '' - language: *ref_889 + language: *ref_901 id: schema: *ref_146 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/vaults/sample-vault/privateEndpointConnections/sample-pec - language: *ref_897 + language: *ref_909 privateEndpoint: schema: *ref_60 - flattenedNames: *ref_891 + flattenedNames: *ref_903 parentsValue: {} properties: id: schema: *ref_39 rawValue: /subscriptions/00000000-0000-0000-1234-000000000000/resourceGroups/sample-group/providers/Microsoft.Network/privateEndpoints/sample-pe - language: *ref_741 - language: *ref_890 + language: *ref_753 + language: *ref_902 privateLinkServiceConnectionState: schema: *ref_61 - flattenedNames: *ref_894 + flattenedNames: *ref_906 parentsValue: {} properties: description: schema: *ref_41 rawValue: My name is Joe and I'm approving this. - language: *ref_893 + language: *ref_905 actionsRequired: schema: *ref_42 rawValue: None - language: *ref_745 + language: *ref_757 status: schema: *ref_40 rawValue: Approved - language: *ref_744 - language: *ref_892 + language: *ref_756 + language: *ref_904 provisioningState: schema: *ref_43 - flattenedNames: *ref_896 + flattenedNames: *ref_908 rawValue: Succeeded - language: *ref_895 - language: *ref_909 - operation: *ref_910 - operationGroup: *ref_902 + language: *ref_907 + language: *ref_921 + operation: *ref_922 + operationGroup: *ref_914 - operationId: PrivateEndpointConnections_Delete examples: - name: KeyVaultDeletePrivateEndpointConnection @@ -26866,31 +27042,31 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: sample-group - language: *ref_911 + language: *ref_923 parameter: *ref_534 - exampleValue: schema: *ref_477 rawValue: sample-vault - language: *ref_912 + language: *ref_924 parameter: *ref_535 - exampleValue: schema: *ref_2 rawValue: sample-pec - language: *ref_913 + language: *ref_925 parameter: *ref_536 - exampleValue: schema: *ref_478 rawValue: '2018-02-14' - language: *ref_915 - parameter: *ref_914 - operation: *ref_918 - operationGroup: *ref_902 + language: *ref_927 + parameter: *ref_926 + operation: *ref_930 + operationGroup: *ref_914 originalFile: '' responses: '200': @@ -26901,26 +27077,26 @@ testModel: name: schema: *ref_147 rawValue: sample-pec - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: Microsoft.KeyVault/vaults/privateEndpointConnections - language: *ref_899 + language: *ref_911 id: schema: *ref_146 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/vaults/sample-vault/privateEndpointConnections/sample-pec - language: *ref_897 + language: *ref_909 provisioningState: schema: *ref_43 - flattenedNames: *ref_896 + flattenedNames: *ref_908 rawValue: Disconnected - language: *ref_895 - language: *ref_916 + language: *ref_907 + language: *ref_928 '202': - headers: *ref_917 + headers: *ref_929 '204': {} - operation: *ref_918 - operationGroup: *ref_902 + operation: *ref_930 + operationGroup: *ref_914 - operationId: PrivateEndpointConnections_ListByResource examples: - name: KeyVaultListPrivateEndpointConnection @@ -26928,26 +27104,26 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: sample-group - language: *ref_919 + language: *ref_931 parameter: *ref_539 - exampleValue: schema: *ref_477 rawValue: sample-vault - language: *ref_920 + language: *ref_932 parameter: *ref_540 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_922 - parameter: *ref_921 - operation: *ref_926 - operationGroup: *ref_902 + language: *ref_934 + parameter: *ref_933 + operation: *ref_938 + operationGroup: *ref_914 originalFile: '' responses: '200': @@ -26958,7 +27134,7 @@ testModel: nextLink: schema: *ref_152 rawValue: null - language: *ref_925 + language: *ref_937 value: schema: *ref_409 elements: @@ -26968,108 +27144,108 @@ testModel: name: schema: *ref_147 rawValue: sample-pec - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: Microsoft.KeyVault/vaults/privateEndpointConnections - language: *ref_899 + language: *ref_911 etag: schema: *ref_151 rawValue: '' - language: *ref_889 + language: *ref_901 id: schema: *ref_146 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/vaults/sample-vault/privateEndpointConnections/sample-pec - language: *ref_897 + language: *ref_909 privateEndpoint: schema: *ref_60 - flattenedNames: *ref_891 + flattenedNames: *ref_903 parentsValue: {} properties: id: schema: *ref_39 rawValue: /subscriptions/00000000-0000-0000-1234-000000000000/resourceGroups/sample-group/providers/Microsoft.Network/privateEndpoints/sample-pe - language: *ref_741 - language: *ref_890 + language: *ref_753 + language: *ref_902 privateLinkServiceConnectionState: schema: *ref_61 - flattenedNames: *ref_894 + flattenedNames: *ref_906 parentsValue: {} properties: description: schema: *ref_41 rawValue: This was automatically approved by user1234@contoso.com - language: *ref_893 + language: *ref_905 actionsRequired: schema: *ref_42 rawValue: None - language: *ref_745 + language: *ref_757 status: schema: *ref_40 rawValue: Approved - language: *ref_744 - language: *ref_892 + language: *ref_756 + language: *ref_904 provisioningState: schema: *ref_43 - flattenedNames: *ref_896 + flattenedNames: *ref_908 rawValue: Succeeded - language: *ref_895 + language: *ref_907 - schema: *ref_124 parentsValue: {} properties: name: schema: *ref_147 rawValue: sample-pec - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: Microsoft.KeyVault/vaults/privateEndpointConnections - language: *ref_899 + language: *ref_911 etag: schema: *ref_151 rawValue: '' - language: *ref_889 + language: *ref_901 id: schema: *ref_146 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/vaults/sample-vault/privateEndpointConnections/sample-pec - language: *ref_897 + language: *ref_909 privateEndpoint: schema: *ref_60 - flattenedNames: *ref_891 + flattenedNames: *ref_903 parentsValue: {} properties: id: schema: *ref_39 rawValue: /subscriptions/00000000-0000-0000-1234-000000000000/resourceGroups/sample-group/providers/Microsoft.Network/privateEndpoints/sample-pe - language: *ref_741 - language: *ref_890 + language: *ref_753 + language: *ref_902 privateLinkServiceConnectionState: schema: *ref_61 - flattenedNames: *ref_894 + flattenedNames: *ref_906 parentsValue: {} properties: description: schema: *ref_41 rawValue: This was automatically approved by user1234@contoso.com - language: *ref_893 + language: *ref_905 actionsRequired: schema: *ref_42 rawValue: None - language: *ref_745 + language: *ref_757 status: schema: *ref_40 rawValue: Approved - language: *ref_744 - language: *ref_892 + language: *ref_756 + language: *ref_904 provisioningState: schema: *ref_43 - flattenedNames: *ref_896 + flattenedNames: *ref_908 rawValue: Succeeded - language: *ref_895 - language: *ref_924 - language: *ref_923 - operation: *ref_926 - operationGroup: *ref_902 + language: *ref_907 + language: *ref_936 + language: *ref_935 + operation: *ref_938 + operationGroup: *ref_914 - operationId: PrivateLinkResources_ListByVault examples: - name: KeyVaultListPrivateLinkResources @@ -27077,26 +27253,26 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: sample-group - language: *ref_927 + language: *ref_939 parameter: *ref_542 - exampleValue: schema: *ref_477 rawValue: sample-vault - language: *ref_928 + language: *ref_940 parameter: *ref_543 - exampleValue: schema: *ref_478 rawValue: '2018-02-14' - language: *ref_930 - parameter: *ref_929 - operation: *ref_939 - operationGroup: *ref_940 + language: *ref_942 + parameter: *ref_941 + operation: *ref_951 + operationGroup: *ref_952 originalFile: '' responses: '200': @@ -27113,38 +27289,38 @@ testModel: name: schema: *ref_147 rawValue: vault - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: Microsoft.KeyVault/vaults/privateLinkResources - language: *ref_899 + language: *ref_911 groupId: schema: *ref_126 - flattenedNames: *ref_934 + flattenedNames: *ref_946 rawValue: vault - language: *ref_933 + language: *ref_945 id: schema: *ref_146 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-resource-group/providers/Microsoft.KeyVault/vaults/sample-vault/privateLinkResources/vault - language: *ref_897 + language: *ref_909 requiredMembers: schema: *ref_410 elements: - schema: *ref_127 rawValue: default - flattenedNames: *ref_936 - language: *ref_935 + flattenedNames: *ref_948 + language: *ref_947 requiredZoneNames: schema: *ref_411 elements: - schema: *ref_128 rawValue: privatelink.vaultcore.azure.net - flattenedNames: *ref_938 - language: *ref_937 - language: *ref_932 - language: *ref_931 - operation: *ref_939 - operationGroup: *ref_940 + flattenedNames: *ref_950 + language: *ref_949 + language: *ref_944 + language: *ref_943 + operation: *ref_951 + operationGroup: *ref_952 - operationId: VirtualMachineExtensionImages_Get examples: - name: VirtualMachineExtensionImages_Get_MaximumSet_Gen @@ -27152,36 +27328,36 @@ testModel: - exampleValue: schema: *ref_475 rawValue: '{subscription-id}' - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_5 rawValue: aaaaaaaaaaaaa - language: *ref_941 + language: *ref_953 parameter: *ref_545 - exampleValue: schema: *ref_5 rawValue: aaaaaaaaaaaaaaaaaaaa - language: *ref_942 + language: *ref_954 parameter: *ref_546 - exampleValue: schema: *ref_5 rawValue: aaaaaaaaaaaaaaaaaa - language: *ref_943 + language: *ref_955 parameter: *ref_547 - exampleValue: schema: *ref_5 rawValue: aaaaaaaaaaaaaa - language: *ref_944 + language: *ref_956 parameter: *ref_548 - exampleValue: schema: *ref_478 rawValue: '2022-03-01' - language: *ref_946 - parameter: *ref_945 - operation: *ref_960 - operationGroup: *ref_961 + language: *ref_958 + parameter: *ref_957 + operation: *ref_972 + operationGroup: *ref_973 originalFile: '' responses: '200': @@ -27192,87 +27368,87 @@ testModel: name: schema: *ref_147 rawValue: aaaaaaaaaaaaaaa - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa - language: *ref_899 + language: *ref_911 computeRole: schema: *ref_130 - flattenedNames: *ref_951 + flattenedNames: *ref_963 rawValue: aaaaaaaaaaaaaaaaa - language: *ref_950 + language: *ref_962 handlerSchema: schema: *ref_131 - flattenedNames: *ref_953 + flattenedNames: *ref_965 rawValue: aaaaaaaaaaaaaaaaaaaaaaaaaaaaa - language: *ref_952 + language: *ref_964 id: schema: *ref_146 rawValue: aaaaaaaaaaaaaaaaa - language: *ref_897 + language: *ref_909 location: schema: *ref_149 rawValue: aaaaaaaaaaaaa - language: *ref_958 + language: *ref_970 operatingSystem: schema: *ref_129 - flattenedNames: *ref_949 + flattenedNames: *ref_961 rawValue: aaaaaaaaaaaaaaaaaa - language: *ref_948 + language: *ref_960 supportsMultipleExtensions: schema: *ref_133 - flattenedNames: *ref_957 + flattenedNames: *ref_969 rawValue: true - language: *ref_956 + language: *ref_968 tags: schema: *ref_150 properties: key9885: schema: *ref_2 rawValue: aaaaaaaaa - language: *ref_959 + language: *ref_971 vmScaleSetEnabled: schema: *ref_132 - flattenedNames: *ref_955 + flattenedNames: *ref_967 rawValue: true - language: *ref_954 - language: *ref_947 + language: *ref_966 + language: *ref_959 - name: VirtualMachineExtensionImages_Get_MinimumSet_Gen clientParameters: - exampleValue: schema: *ref_475 rawValue: '{subscription-id}' - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_5 rawValue: aaaaaaaaaaaaaa - language: *ref_941 + language: *ref_953 parameter: *ref_545 - exampleValue: schema: *ref_5 rawValue: aaaaaaaaaaaaaaaaaaaaaaaaaa - language: *ref_942 + language: *ref_954 parameter: *ref_546 - exampleValue: schema: *ref_5 rawValue: aa - language: *ref_943 + language: *ref_955 parameter: *ref_547 - exampleValue: schema: *ref_5 rawValue: aaa - language: *ref_944 + language: *ref_956 parameter: *ref_548 - exampleValue: schema: *ref_478 rawValue: '2022-03-01' - language: *ref_946 - parameter: *ref_945 - operation: *ref_960 - operationGroup: *ref_961 + language: *ref_958 + parameter: *ref_957 + operation: *ref_972 + operationGroup: *ref_973 originalFile: '' responses: '200': @@ -27283,14 +27459,14 @@ testModel: name: schema: *ref_147 rawValue: aaaaaaaaaaaaaaa - language: *ref_898 + language: *ref_910 location: schema: *ref_149 rawValue: aaaaaaaaaaaaa - language: *ref_958 - language: *ref_947 - operation: *ref_960 - operationGroup: *ref_961 + language: *ref_970 + language: *ref_959 + operation: *ref_972 + operationGroup: *ref_973 - operationId: VirtualMachineExtensionImages_ListTypes examples: - name: VirtualMachineExtensionImages_ListTypes_MaximumSet_Gen @@ -27298,26 +27474,26 @@ testModel: - exampleValue: schema: *ref_475 rawValue: '{subscription-id}' - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_5 rawValue: aaaaaaaaaaaaaaaaaaaaaaaaaa - language: *ref_962 + language: *ref_974 parameter: *ref_549 - exampleValue: schema: *ref_5 rawValue: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa - language: *ref_963 + language: *ref_975 parameter: *ref_550 - exampleValue: schema: *ref_478 rawValue: '2022-03-01' - language: *ref_965 - parameter: *ref_964 - operation: *ref_967 - operationGroup: *ref_961 + language: *ref_977 + parameter: *ref_976 + operation: *ref_979 + operationGroup: *ref_973 originalFile: '' responses: '200': @@ -27330,77 +27506,77 @@ testModel: name: schema: *ref_147 rawValue: aaaaaaaaaaaaaaa - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa - language: *ref_899 + language: *ref_911 computeRole: schema: *ref_130 - flattenedNames: *ref_951 + flattenedNames: *ref_963 rawValue: aaaaaaaaaaaaaaaaa - language: *ref_950 + language: *ref_962 handlerSchema: schema: *ref_131 - flattenedNames: *ref_953 + flattenedNames: *ref_965 rawValue: aaaaaaaaaaaaaaaaaaaaaaaaaaaaa - language: *ref_952 + language: *ref_964 id: schema: *ref_146 rawValue: aaaaaaaaaaaaaaaaa - language: *ref_897 + language: *ref_909 location: schema: *ref_149 rawValue: aaaaaaaaaaaaa - language: *ref_958 + language: *ref_970 operatingSystem: schema: *ref_129 - flattenedNames: *ref_949 + flattenedNames: *ref_961 rawValue: aaaaaaaaaaaaaaaaaa - language: *ref_948 + language: *ref_960 supportsMultipleExtensions: schema: *ref_133 - flattenedNames: *ref_957 + flattenedNames: *ref_969 rawValue: true - language: *ref_956 + language: *ref_968 tags: schema: *ref_150 properties: key9885: schema: *ref_2 rawValue: aaaaaaaaa - language: *ref_959 + language: *ref_971 vmScaleSetEnabled: schema: *ref_132 - flattenedNames: *ref_955 + flattenedNames: *ref_967 rawValue: true - language: *ref_954 - language: *ref_966 + language: *ref_966 + language: *ref_978 - name: VirtualMachineExtensionImages_ListTypes_MinimumSet_Gen clientParameters: - exampleValue: schema: *ref_475 rawValue: '{subscription-id}' - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_5 rawValue: aaaa - language: *ref_962 + language: *ref_974 parameter: *ref_549 - exampleValue: schema: *ref_5 rawValue: aa - language: *ref_963 + language: *ref_975 parameter: *ref_550 - exampleValue: schema: *ref_478 rawValue: '2022-03-01' - language: *ref_965 - parameter: *ref_964 - operation: *ref_967 - operationGroup: *ref_961 + language: *ref_977 + parameter: *ref_976 + operation: *ref_979 + operationGroup: *ref_973 originalFile: '' responses: '200': @@ -27413,14 +27589,14 @@ testModel: name: schema: *ref_147 rawValue: aaaaaaaaaaaaaaa - language: *ref_898 + language: *ref_910 location: schema: *ref_149 rawValue: aaaaaaaaaaaaa - language: *ref_958 - language: *ref_966 - operation: *ref_967 - operationGroup: *ref_961 + language: *ref_970 + language: *ref_978 + operation: *ref_979 + operationGroup: *ref_973 - operationId: VirtualMachineExtensionImages_ListVersions examples: - name: VirtualMachineExtensionImages_ListVersions_MaximumSet_Gen @@ -27428,46 +27604,46 @@ testModel: - exampleValue: schema: *ref_475 rawValue: '{subscription-id}' - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_5 rawValue: aaaaaaaaaaaaaaaaaaaaaaaaaa - language: *ref_968 + language: *ref_980 parameter: *ref_553 - exampleValue: schema: *ref_5 rawValue: aaaaaaaaaaaaaaaaaaaa - language: *ref_969 + language: *ref_981 parameter: *ref_554 - exampleValue: schema: *ref_5 rawValue: aaaaaaaaaaaaaaaaaa - language: *ref_970 + language: *ref_982 parameter: *ref_555 - exampleValue: schema: *ref_5 rawValue: aaaaaaaaaaaaaaaaaaaaaaaaa - language: *ref_971 + language: *ref_983 parameter: *ref_556 - exampleValue: schema: *ref_552 rawValue: 22 - language: *ref_972 + language: *ref_984 parameter: *ref_557 - exampleValue: schema: *ref_5 rawValue: a - language: *ref_973 + language: *ref_985 parameter: *ref_558 - exampleValue: schema: *ref_478 rawValue: '2022-03-01' - language: *ref_975 - parameter: *ref_974 - operation: *ref_977 - operationGroup: *ref_961 + language: *ref_987 + parameter: *ref_986 + operation: *ref_989 + operationGroup: *ref_973 originalFile: '' responses: '200': @@ -27480,82 +27656,82 @@ testModel: name: schema: *ref_147 rawValue: aaaaaaaaaaaaaaa - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa - language: *ref_899 + language: *ref_911 computeRole: schema: *ref_130 - flattenedNames: *ref_951 + flattenedNames: *ref_963 rawValue: aaaaaaaaaaaaaaaaa - language: *ref_950 + language: *ref_962 handlerSchema: schema: *ref_131 - flattenedNames: *ref_953 + flattenedNames: *ref_965 rawValue: aaaaaaaaaaaaaaaaaaaaaaaaaaaaa - language: *ref_952 + language: *ref_964 id: schema: *ref_146 rawValue: aaaaaaaaaaaaaaaaa - language: *ref_897 + language: *ref_909 location: schema: *ref_149 rawValue: aaaaaaaaaaaaa - language: *ref_958 + language: *ref_970 operatingSystem: schema: *ref_129 - flattenedNames: *ref_949 + flattenedNames: *ref_961 rawValue: aaaaaaaaaaaaaaaaaa - language: *ref_948 + language: *ref_960 supportsMultipleExtensions: schema: *ref_133 - flattenedNames: *ref_957 + flattenedNames: *ref_969 rawValue: true - language: *ref_956 + language: *ref_968 tags: schema: *ref_150 properties: key9885: schema: *ref_2 rawValue: aaaaaaaaa - language: *ref_959 + language: *ref_971 vmScaleSetEnabled: schema: *ref_132 - flattenedNames: *ref_955 + flattenedNames: *ref_967 rawValue: true - language: *ref_954 - language: *ref_976 + language: *ref_966 + language: *ref_988 - name: VirtualMachineExtensionImages_ListVersions_MinimumSet_Gen clientParameters: - exampleValue: schema: *ref_475 rawValue: '{subscription-id}' - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_5 rawValue: aaaaaaaaa - language: *ref_968 + language: *ref_980 parameter: *ref_553 - exampleValue: schema: *ref_5 rawValue: aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa - language: *ref_969 + language: *ref_981 parameter: *ref_554 - exampleValue: schema: *ref_5 rawValue: aaaa - language: *ref_970 + language: *ref_982 parameter: *ref_555 - exampleValue: schema: *ref_478 rawValue: '2022-03-01' - language: *ref_975 - parameter: *ref_974 - operation: *ref_977 - operationGroup: *ref_961 + language: *ref_987 + parameter: *ref_986 + operation: *ref_989 + operationGroup: *ref_973 originalFile: '' responses: '200': @@ -27568,14 +27744,14 @@ testModel: name: schema: *ref_147 rawValue: aaaaaaaaaaaaaaa - language: *ref_898 + language: *ref_910 location: schema: *ref_149 rawValue: aaaaaaaaaaaaa - language: *ref_958 - language: *ref_976 - operation: *ref_977 - operationGroup: *ref_961 + language: *ref_970 + language: *ref_988 + operation: *ref_989 + operationGroup: *ref_973 - operationId: DiskEncryptionSets_CreateOrUpdate examples: - name: Create a disk encryption set with key vault from a different subscription. @@ -27583,43 +27759,43 @@ testModel: - exampleValue: schema: *ref_475 rawValue: '{subscription-id}' - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: myResourceGroup - language: *ref_978 + language: *ref_990 parameter: *ref_562 - exampleValue: schema: *ref_5 rawValue: myDiskEncryptionSet - language: *ref_979 + language: *ref_991 parameter: *ref_563 - exampleValue: schema: *ref_478 rawValue: '2022-03-02' - language: *ref_981 - parameter: *ref_980 + language: *ref_993 + parameter: *ref_992 - exampleValue: schema: *ref_145 parentsValue: {} properties: activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvaultdifferentsub.vault-int.azure-int.net/keys/{key} - language: *ref_987 - language: *ref_986 + language: *ref_999 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 identity: schema: *ref_67 parentsValue: {} @@ -27627,21 +27803,21 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_983 + language: *ref_723 + language: *ref_995 location: schema: *ref_149 rawValue: West US - language: *ref_958 + language: *ref_970 minimumTlsVersion: schema: *ref_142 - flattenedNames: *ref_990 + flattenedNames: *ref_1002 rawValue: TLS1_1 - language: *ref_989 - language: *ref_982 + language: *ref_1001 + language: *ref_994 parameter: *ref_560 - operation: *ref_995 - operationGroup: *ref_996 + operation: *ref_1007 + operationGroup: *ref_1008 originalFile: '' responses: '200': @@ -27652,22 +27828,22 @@ testModel: name: schema: *ref_147 rawValue: myDiskEncryptionSet - language: *ref_898 + language: *ref_910 activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvaultdifferentsub.vault-int.azure-int.net/keys/{key} - language: *ref_987 - language: *ref_986 + language: *ref_999 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 identity: schema: *ref_67 parentsValue: {} @@ -27675,18 +27851,18 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_983 + language: *ref_723 + language: *ref_995 location: schema: *ref_149 rawValue: West US - language: *ref_958 + language: *ref_970 previousKeys: schema: *ref_413 elements: [] - flattenedNames: *ref_993 - language: *ref_992 - language: *ref_991 + flattenedNames: *ref_1005 + language: *ref_1004 + language: *ref_1003 '202': body: schema: *ref_145 @@ -27695,22 +27871,22 @@ testModel: name: schema: *ref_147 rawValue: myDiskEncryptionSet - language: *ref_898 + language: *ref_910 activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvaultdifferentsub.vault-int.azure-int.net/keys/{key} - language: *ref_987 - language: *ref_986 + language: *ref_999 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 identity: schema: *ref_67 parentsValue: {} @@ -27718,65 +27894,65 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_983 + language: *ref_723 + language: *ref_995 location: schema: *ref_149 rawValue: West US - language: *ref_958 + language: *ref_970 previousKeys: schema: *ref_413 elements: [] - flattenedNames: *ref_993 - language: *ref_992 - language: *ref_994 + flattenedNames: *ref_1005 + language: *ref_1004 + language: *ref_1006 - name: Create a disk encryption set with key vault from a different tenant. clientParameters: - exampleValue: schema: *ref_475 rawValue: '{subscription-id}' - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: myResourceGroup - language: *ref_978 + language: *ref_990 parameter: *ref_562 - exampleValue: schema: *ref_5 rawValue: myDiskEncryptionSet - language: *ref_979 + language: *ref_991 parameter: *ref_563 - exampleValue: schema: *ref_478 rawValue: '2022-03-02' - language: *ref_981 - parameter: *ref_980 + language: *ref_993 + parameter: *ref_992 - exampleValue: schema: *ref_145 parentsValue: {} properties: activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvaultdifferenttenant.vault-int.azure-int.net/keys/{key} - language: *ref_987 - language: *ref_986 + language: *ref_999 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 federatedClientId: schema: *ref_141 - flattenedNames: *ref_999 + flattenedNames: *ref_1011 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_998 + language: *ref_1010 identity: schema: *ref_67 parentsValue: {} @@ -27784,7 +27960,7 @@ testModel: type: schema: *ref_50 rawValue: UserAssigned - language: *ref_711 + language: *ref_723 userAssignedIdentities: schema: *ref_51 properties: @@ -27792,16 +27968,16 @@ testModel: schema: *ref_68 parentsValue: {} properties: {} - language: *ref_997 - language: *ref_983 + language: *ref_1009 + language: *ref_995 location: schema: *ref_149 rawValue: West US - language: *ref_958 - language: *ref_982 + language: *ref_970 + language: *ref_994 parameter: *ref_560 - operation: *ref_995 - operationGroup: *ref_996 + operation: *ref_1007 + operationGroup: *ref_1008 originalFile: '' responses: '200': @@ -27812,27 +27988,27 @@ testModel: name: schema: *ref_147 rawValue: myDiskEncryptionSet - language: *ref_898 + language: *ref_910 activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvaultdifferenttenant.vault-int.azure-int.net/keys/{key} - language: *ref_987 - language: *ref_986 + language: *ref_999 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 federatedClientId: schema: *ref_141 - flattenedNames: *ref_999 + flattenedNames: *ref_1011 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_998 + language: *ref_1010 identity: schema: *ref_67 parentsValue: {} @@ -27840,7 +28016,7 @@ testModel: type: schema: *ref_50 rawValue: UserAssigned - language: *ref_711 + language: *ref_723 userAssignedIdentities: schema: *ref_51 properties: @@ -27848,18 +28024,18 @@ testModel: schema: *ref_68 parentsValue: {} properties: {} - language: *ref_997 - language: *ref_983 + language: *ref_1009 + language: *ref_995 location: schema: *ref_149 rawValue: West US - language: *ref_958 + language: *ref_970 previousKeys: schema: *ref_413 elements: [] - flattenedNames: *ref_993 - language: *ref_992 - language: *ref_991 + flattenedNames: *ref_1005 + language: *ref_1004 + language: *ref_1003 '202': body: schema: *ref_145 @@ -27868,27 +28044,27 @@ testModel: name: schema: *ref_147 rawValue: myDiskEncryptionSet - language: *ref_898 + language: *ref_910 activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvaultdifferenttenant.vault-int.azure-int.net/keys/{key} - language: *ref_987 - language: *ref_986 + language: *ref_999 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 federatedClientId: schema: *ref_141 - flattenedNames: *ref_999 + flattenedNames: *ref_1011 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_998 + language: *ref_1010 identity: schema: *ref_67 parentsValue: {} @@ -27896,7 +28072,7 @@ testModel: type: schema: *ref_50 rawValue: UserAssigned - language: *ref_711 + language: *ref_723 userAssignedIdentities: schema: *ref_51 properties: @@ -27904,54 +28080,54 @@ testModel: schema: *ref_68 parentsValue: {} properties: {} - language: *ref_997 - language: *ref_983 + language: *ref_1009 + language: *ref_995 location: schema: *ref_149 rawValue: West US - language: *ref_958 + language: *ref_970 previousKeys: schema: *ref_413 elements: [] - flattenedNames: *ref_993 - language: *ref_992 - language: *ref_994 + flattenedNames: *ref_1005 + language: *ref_1004 + language: *ref_1006 - name: Create a disk encryption set. clientParameters: - exampleValue: schema: *ref_475 rawValue: '{subscription-id}' - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: myResourceGroup - language: *ref_978 + language: *ref_990 parameter: *ref_562 - exampleValue: schema: *ref_5 rawValue: myDiskEncryptionSet - language: *ref_979 + language: *ref_991 parameter: *ref_563 - exampleValue: schema: *ref_478 rawValue: '2022-03-02' - language: *ref_981 - parameter: *ref_980 + language: *ref_993 + parameter: *ref_992 - exampleValue: schema: *ref_145 parentsValue: {} properties: activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvmvault.vault-int.azure-int.net/keys/{key} - language: *ref_987 + language: *ref_999 sourceVault: schema: *ref_153 parentsValue: {} @@ -27959,14 +28135,14 @@ testModel: id: schema: *ref_135 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.KeyVault/vaults/myVMVault - language: *ref_1001 - language: *ref_1000 - language: *ref_986 + language: *ref_1013 + language: *ref_1012 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 identity: schema: *ref_67 parentsValue: {} @@ -27974,16 +28150,16 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_983 + language: *ref_723 + language: *ref_995 location: schema: *ref_149 rawValue: West US - language: *ref_958 - language: *ref_982 + language: *ref_970 + language: *ref_994 parameter: *ref_560 - operation: *ref_995 - operationGroup: *ref_996 + operation: *ref_1007 + operationGroup: *ref_1008 originalFile: '' responses: '200': @@ -27994,16 +28170,16 @@ testModel: name: schema: *ref_147 rawValue: myDiskEncryptionSet - language: *ref_898 + language: *ref_910 activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvmvault.vault-int.azure-int.net/keys/{key} - language: *ref_987 + language: *ref_999 sourceVault: schema: *ref_153 parentsValue: {} @@ -28011,14 +28187,14 @@ testModel: id: schema: *ref_135 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.KeyVault/vaults/myVMVault - language: *ref_1001 - language: *ref_1000 - language: *ref_986 + language: *ref_1013 + language: *ref_1012 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 identity: schema: *ref_67 parentsValue: {} @@ -28026,18 +28202,18 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_983 + language: *ref_723 + language: *ref_995 location: schema: *ref_149 rawValue: West US - language: *ref_958 + language: *ref_970 previousKeys: schema: *ref_413 elements: [] - flattenedNames: *ref_993 - language: *ref_992 - language: *ref_991 + flattenedNames: *ref_1005 + language: *ref_1004 + language: *ref_1003 '202': body: schema: *ref_145 @@ -28046,16 +28222,16 @@ testModel: name: schema: *ref_147 rawValue: myDiskEncryptionSet - language: *ref_898 + language: *ref_910 activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvmvault.vault-int.azure-int.net/keys/{key} - language: *ref_987 + language: *ref_999 sourceVault: schema: *ref_153 parentsValue: {} @@ -28063,14 +28239,14 @@ testModel: id: schema: *ref_135 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.KeyVault/vaults/myVMVault - language: *ref_1001 - language: *ref_1000 - language: *ref_986 + language: *ref_1013 + language: *ref_1012 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 identity: schema: *ref_67 parentsValue: {} @@ -28078,20 +28254,20 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_983 + language: *ref_723 + language: *ref_995 location: schema: *ref_149 rawValue: West US - language: *ref_958 + language: *ref_970 previousKeys: schema: *ref_413 elements: [] - flattenedNames: *ref_993 - language: *ref_992 - language: *ref_994 - operation: *ref_995 - operationGroup: *ref_996 + flattenedNames: *ref_1005 + language: *ref_1004 + language: *ref_1006 + operation: *ref_1007 + operationGroup: *ref_1008 - operationId: DiskEncryptionSets_Update examples: - name: Update a disk encryption set with rotationToLatestKeyVersionEnabled set to true - Succeeded @@ -28099,43 +28275,43 @@ testModel: - exampleValue: schema: *ref_475 rawValue: '{subscription-id}' - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: myResourceGroup - language: *ref_1002 + language: *ref_1014 parameter: *ref_567 - exampleValue: schema: *ref_5 rawValue: myDiskEncryptionSet - language: *ref_1003 + language: *ref_1015 parameter: *ref_568 - exampleValue: schema: *ref_478 rawValue: '2022-03-02' - language: *ref_1005 - parameter: *ref_1004 + language: *ref_1017 + parameter: *ref_1016 - exampleValue: schema: *ref_564 parentsValue: {} properties: activeKey: schema: *ref_137 - flattenedNames: *ref_1011 + flattenedNames: *ref_1023 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvaultdifferentsub.vault-int.azure-int.net/keys/keyName/keyVersion1 - language: *ref_987 - language: *ref_1010 + language: *ref_999 + language: *ref_1022 encryptionType: schema: *ref_134 - flattenedNames: *ref_1009 + flattenedNames: *ref_1021 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_1008 + language: *ref_1020 identity: schema: *ref_67 parentsValue: {} @@ -28143,17 +28319,17 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_1007 + language: *ref_723 + language: *ref_1019 rotationToLatestKeyVersionEnabled: schema: *ref_139 - flattenedNames: *ref_1013 + flattenedNames: *ref_1025 rawValue: true - language: *ref_1012 - language: *ref_1006 + language: *ref_1024 + language: *ref_1018 parameter: *ref_565 - operation: *ref_1023 - operationGroup: *ref_996 + operation: *ref_1035 + operationGroup: *ref_1008 originalFile: '' responses: '200': @@ -28164,30 +28340,30 @@ testModel: name: schema: *ref_147 rawValue: myDiskEncryptionSet - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: Microsoft.Compute/diskEncryptionSets - language: *ref_899 + language: *ref_911 activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvaultdifferentsub.vault-int.azure-int.net/keys/keyName/KeyVersion2 - language: *ref_987 - language: *ref_986 + language: *ref_999 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 id: schema: *ref_146 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/myDiskEncryptionSet - language: *ref_897 + language: *ref_909 identity: schema: *ref_67 parentsValue: {} @@ -28195,28 +28371,28 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_983 + language: *ref_723 + language: *ref_995 lastKeyRotationTimestamp: schema: *ref_140 - flattenedNames: *ref_1020 + flattenedNames: *ref_1032 rawValue: '2021-04-01T04:41:35.079872+00:00' - language: *ref_1019 + language: *ref_1031 location: schema: *ref_149 rawValue: West US - language: *ref_958 + language: *ref_970 provisioningState: schema: *ref_138 - flattenedNames: *ref_1016 + flattenedNames: *ref_1028 rawValue: Succeeded - language: *ref_1015 + language: *ref_1027 rotationToLatestKeyVersionEnabled: schema: *ref_139 - flattenedNames: *ref_1018 + flattenedNames: *ref_1030 rawValue: true - language: *ref_1017 - language: *ref_1014 + language: *ref_1029 + language: *ref_1026 '202': body: schema: *ref_145 @@ -28225,30 +28401,30 @@ testModel: name: schema: *ref_147 rawValue: myDiskEncryptionSet - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: Microsoft.Compute/diskEncryptionSets - language: *ref_899 + language: *ref_911 activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvaultdifferentsub.vault-int.azure-int.net/keys/keyName/keyVersion1 - language: *ref_987 - language: *ref_986 + language: *ref_999 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 id: schema: *ref_146 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/myDiskEncryptionSet - language: *ref_897 + language: *ref_909 identity: schema: *ref_67 parentsValue: {} @@ -28256,61 +28432,61 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_983 + language: *ref_723 + language: *ref_995 location: schema: *ref_149 rawValue: West US - language: *ref_958 + language: *ref_970 previousKeys: schema: *ref_413 elements: [] - flattenedNames: *ref_993 - language: *ref_992 - language: *ref_1021 - headers: *ref_1022 + flattenedNames: *ref_1005 + language: *ref_1004 + language: *ref_1033 + headers: *ref_1034 - name: Update a disk encryption set with rotationToLatestKeyVersionEnabled set to true - Updating clientParameters: - exampleValue: schema: *ref_475 rawValue: '{subscription-id}' - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: myResourceGroup - language: *ref_1002 + language: *ref_1014 parameter: *ref_567 - exampleValue: schema: *ref_5 rawValue: myDiskEncryptionSet - language: *ref_1003 + language: *ref_1015 parameter: *ref_568 - exampleValue: schema: *ref_478 rawValue: '2022-03-02' - language: *ref_1005 - parameter: *ref_1004 + language: *ref_1017 + parameter: *ref_1016 - exampleValue: schema: *ref_564 parentsValue: {} properties: activeKey: schema: *ref_137 - flattenedNames: *ref_1011 + flattenedNames: *ref_1023 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvaultdifferentsub.vault-int.azure-int.net/keys/keyName/keyVersion1 - language: *ref_987 - language: *ref_1010 + language: *ref_999 + language: *ref_1022 encryptionType: schema: *ref_134 - flattenedNames: *ref_1009 + flattenedNames: *ref_1021 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_1008 + language: *ref_1020 identity: schema: *ref_67 parentsValue: {} @@ -28318,17 +28494,17 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_1007 + language: *ref_723 + language: *ref_1019 rotationToLatestKeyVersionEnabled: schema: *ref_139 - flattenedNames: *ref_1013 + flattenedNames: *ref_1025 rawValue: true - language: *ref_1012 - language: *ref_1006 + language: *ref_1024 + language: *ref_1018 parameter: *ref_565 - operation: *ref_1023 - operationGroup: *ref_996 + operation: *ref_1035 + operationGroup: *ref_1008 originalFile: '' responses: '200': @@ -28339,30 +28515,30 @@ testModel: name: schema: *ref_147 rawValue: myDiskEncryptionSet - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: Microsoft.Compute/diskEncryptionSets - language: *ref_899 + language: *ref_911 activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvaultdifferentsub.vault-int.azure-int.net/keys/keyName/keyVersion2 - language: *ref_987 - language: *ref_986 + language: *ref_999 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 id: schema: *ref_146 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/myDiskEncryptionSet - language: *ref_897 + language: *ref_909 identity: schema: *ref_67 parentsValue: {} @@ -28370,17 +28546,17 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_983 + language: *ref_723 + language: *ref_995 lastKeyRotationTimestamp: schema: *ref_140 - flattenedNames: *ref_1020 + flattenedNames: *ref_1032 rawValue: '2021-04-01T04:41:35.079872+00:00' - language: *ref_1019 + language: *ref_1031 location: schema: *ref_149 rawValue: West US - language: *ref_958 + language: *ref_970 previousKeys: schema: *ref_413 elements: @@ -28390,20 +28566,20 @@ testModel: keyUrl: schema: *ref_136 rawValue: https://myvaultdifferentsub.vault-int.azure-int.net/keys/keyName/keyVersion1 - language: *ref_987 - flattenedNames: *ref_993 - language: *ref_992 + language: *ref_999 + flattenedNames: *ref_1005 + language: *ref_1004 provisioningState: schema: *ref_138 - flattenedNames: *ref_1016 + flattenedNames: *ref_1028 rawValue: Updating - language: *ref_1015 + language: *ref_1027 rotationToLatestKeyVersionEnabled: schema: *ref_139 - flattenedNames: *ref_1018 + flattenedNames: *ref_1030 rawValue: true - language: *ref_1017 - language: *ref_1014 + language: *ref_1029 + language: *ref_1026 '202': body: schema: *ref_145 @@ -28412,30 +28588,30 @@ testModel: name: schema: *ref_147 rawValue: myDiskEncryptionSet - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: Microsoft.Compute/diskEncryptionSets - language: *ref_899 + language: *ref_911 activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvaultdifferentsub.vault-int.azure-int.net/keys/keyName/keyVersion1 - language: *ref_987 - language: *ref_986 + language: *ref_999 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 id: schema: *ref_146 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/myDiskEncryptionSet - language: *ref_897 + language: *ref_909 identity: schema: *ref_67 parentsValue: {} @@ -28443,55 +28619,55 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_983 + language: *ref_723 + language: *ref_995 location: schema: *ref_149 rawValue: West US - language: *ref_958 + language: *ref_970 previousKeys: schema: *ref_413 elements: [] - flattenedNames: *ref_993 - language: *ref_992 - language: *ref_1021 - headers: *ref_1024 + flattenedNames: *ref_1005 + language: *ref_1004 + language: *ref_1033 + headers: *ref_1036 - name: Update a disk encryption set. clientParameters: - exampleValue: schema: *ref_475 rawValue: '{subscription-id}' - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: myResourceGroup - language: *ref_1002 + language: *ref_1014 parameter: *ref_567 - exampleValue: schema: *ref_5 rawValue: myDiskEncryptionSet - language: *ref_1003 + language: *ref_1015 parameter: *ref_568 - exampleValue: schema: *ref_478 rawValue: '2022-03-02' - language: *ref_1005 - parameter: *ref_1004 + language: *ref_1017 + parameter: *ref_1016 - exampleValue: schema: *ref_564 parentsValue: {} properties: activeKey: schema: *ref_137 - flattenedNames: *ref_1011 + flattenedNames: *ref_1023 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvmvault.vault-int.azure-int.net/keys/keyName/keyVersion - language: *ref_987 + language: *ref_999 sourceVault: schema: *ref_153 parentsValue: {} @@ -28499,14 +28675,14 @@ testModel: id: schema: *ref_135 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.KeyVault/vaults/myVMVault - language: *ref_1001 - language: *ref_1000 - language: *ref_1010 + language: *ref_1013 + language: *ref_1012 + language: *ref_1022 encryptionType: schema: *ref_134 - flattenedNames: *ref_1009 + flattenedNames: *ref_1021 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_1008 + language: *ref_1020 tags: schema: *ref_154 properties: @@ -28516,11 +28692,11 @@ testModel: project: schema: *ref_5 rawValue: Encryption - language: *ref_1025 - language: *ref_1006 + language: *ref_1037 + language: *ref_1018 parameter: *ref_565 - operation: *ref_1023 - operationGroup: *ref_996 + operation: *ref_1035 + operationGroup: *ref_1008 originalFile: '' responses: '200': @@ -28531,16 +28707,16 @@ testModel: name: schema: *ref_147 rawValue: myDiskEncryptionSet - language: *ref_898 + language: *ref_910 activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvmvault.vault-int.azure-int.net/keys/keyName/keyVersion - language: *ref_987 + language: *ref_999 sourceVault: schema: *ref_153 parentsValue: {} @@ -28548,14 +28724,14 @@ testModel: id: schema: *ref_135 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.KeyVault/vaults/myVMVault - language: *ref_1001 - language: *ref_1000 - language: *ref_986 + language: *ref_1013 + language: *ref_1012 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 identity: schema: *ref_67 parentsValue: {} @@ -28563,22 +28739,22 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_983 + language: *ref_723 + language: *ref_995 lastKeyRotationTimestamp: schema: *ref_140 - flattenedNames: *ref_1020 + flattenedNames: *ref_1032 rawValue: '2021-04-01T04:41:35.079872+00:00' - language: *ref_1019 + language: *ref_1031 location: schema: *ref_149 rawValue: West US - language: *ref_958 + language: *ref_970 previousKeys: schema: *ref_413 elements: [] - flattenedNames: *ref_993 - language: *ref_992 + flattenedNames: *ref_1005 + language: *ref_1004 tags: schema: *ref_150 properties: @@ -28588,8 +28764,8 @@ testModel: project: schema: *ref_2 rawValue: Encryption - language: *ref_959 - language: *ref_1014 + language: *ref_971 + language: *ref_1026 '202': body: schema: *ref_145 @@ -28598,16 +28774,16 @@ testModel: name: schema: *ref_147 rawValue: myDiskEncryptionSet - language: *ref_898 + language: *ref_910 activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvmvault.vault-int.azure-int.net/keys/keyName/keyVersion - language: *ref_987 + language: *ref_999 sourceVault: schema: *ref_153 parentsValue: {} @@ -28615,14 +28791,14 @@ testModel: id: schema: *ref_135 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.KeyVault/vaults/myVMVault - language: *ref_1001 - language: *ref_1000 - language: *ref_986 + language: *ref_1013 + language: *ref_1012 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 identity: schema: *ref_67 parentsValue: {} @@ -28630,17 +28806,17 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_983 + language: *ref_723 + language: *ref_995 location: schema: *ref_149 rawValue: West US - language: *ref_958 + language: *ref_970 previousKeys: schema: *ref_413 elements: [] - flattenedNames: *ref_993 - language: *ref_992 + flattenedNames: *ref_1005 + language: *ref_1004 tags: schema: *ref_150 properties: @@ -28650,11 +28826,11 @@ testModel: project: schema: *ref_2 rawValue: Encryption - language: *ref_959 - language: *ref_1021 - headers: *ref_1026 - operation: *ref_1023 - operationGroup: *ref_996 + language: *ref_971 + language: *ref_1033 + headers: *ref_1038 + operation: *ref_1035 + operationGroup: *ref_1008 - operationId: DiskEncryptionSets_Get examples: - name: Get information about a disk encryption set when auto-key rotation failed. @@ -28662,26 +28838,26 @@ testModel: - exampleValue: schema: *ref_475 rawValue: '{subscription-id}' - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: myResourceGroup - language: *ref_1027 + language: *ref_1039 parameter: *ref_569 - exampleValue: schema: *ref_5 rawValue: myDiskEncryptionSet - language: *ref_1028 + language: *ref_1040 parameter: *ref_570 - exampleValue: schema: *ref_478 rawValue: '2022-03-02' - language: *ref_1030 - parameter: *ref_1029 - operation: *ref_1032 - operationGroup: *ref_996 + language: *ref_1042 + parameter: *ref_1041 + operation: *ref_1044 + operationGroup: *ref_1008 originalFile: '' responses: '200': @@ -28692,20 +28868,20 @@ testModel: name: schema: *ref_147 rawValue: myDiskEncryptionSet - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: Microsoft.Compute/diskEncryptionSets - language: *ref_899 + language: *ref_911 activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvmvault.vault-int.azure-int.net/keys/{key} - language: *ref_987 + language: *ref_999 sourceVault: schema: *ref_153 parentsValue: {} @@ -28713,18 +28889,18 @@ testModel: id: schema: *ref_135 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.KeyVault/vaults/myVMVault - language: *ref_1001 - language: *ref_1000 - language: *ref_986 + language: *ref_1013 + language: *ref_1012 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 id: schema: *ref_146 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/myDiskEncryptionSet - language: *ref_897 + language: *ref_909 identity: schema: *ref_67 parentsValue: {} @@ -28732,27 +28908,27 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_983 + language: *ref_723 + language: *ref_995 location: schema: *ref_149 rawValue: westus - language: *ref_958 + language: *ref_970 previousKeys: schema: *ref_413 elements: [] - flattenedNames: *ref_993 - language: *ref_992 + flattenedNames: *ref_1005 + language: *ref_1004 provisioningState: schema: *ref_138 - flattenedNames: *ref_1016 + flattenedNames: *ref_1028 rawValue: Succeeded - language: *ref_1015 + language: *ref_1027 rotationToLatestKeyVersionEnabled: schema: *ref_139 - flattenedNames: *ref_1018 + flattenedNames: *ref_1030 rawValue: true - language: *ref_1017 + language: *ref_1029 tags: schema: *ref_150 properties: @@ -28762,33 +28938,33 @@ testModel: project: schema: *ref_2 rawValue: Encryption - language: *ref_959 - language: *ref_1031 + language: *ref_971 + language: *ref_1043 - name: Get information about a disk encryption set. clientParameters: - exampleValue: schema: *ref_475 rawValue: '{subscription-id}' - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: myResourceGroup - language: *ref_1027 + language: *ref_1039 parameter: *ref_569 - exampleValue: schema: *ref_5 rawValue: myDiskEncryptionSet - language: *ref_1028 + language: *ref_1040 parameter: *ref_570 - exampleValue: schema: *ref_478 rawValue: '2022-03-02' - language: *ref_1030 - parameter: *ref_1029 - operation: *ref_1032 - operationGroup: *ref_996 + language: *ref_1042 + parameter: *ref_1041 + operation: *ref_1044 + operationGroup: *ref_1008 originalFile: '' responses: '200': @@ -28799,20 +28975,20 @@ testModel: name: schema: *ref_147 rawValue: myDiskEncryptionSet - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: Microsoft.Compute/diskEncryptionSets - language: *ref_899 + language: *ref_911 activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvmvault.vault-int.azure-int.net/keys/{key} - language: *ref_987 + language: *ref_999 sourceVault: schema: *ref_153 parentsValue: {} @@ -28820,18 +28996,18 @@ testModel: id: schema: *ref_135 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.KeyVault/vaults/myVMVault - language: *ref_1001 - language: *ref_1000 - language: *ref_986 + language: *ref_1013 + language: *ref_1012 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 id: schema: *ref_146 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/myDiskEncryptionSet - language: *ref_897 + language: *ref_909 identity: schema: *ref_67 parentsValue: {} @@ -28839,22 +29015,22 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_983 + language: *ref_723 + language: *ref_995 location: schema: *ref_149 rawValue: westus - language: *ref_958 + language: *ref_970 previousKeys: schema: *ref_413 elements: [] - flattenedNames: *ref_993 - language: *ref_992 + flattenedNames: *ref_1005 + language: *ref_1004 provisioningState: schema: *ref_138 - flattenedNames: *ref_1016 + flattenedNames: *ref_1028 rawValue: Succeeded - language: *ref_1015 + language: *ref_1027 tags: schema: *ref_150 properties: @@ -28864,10 +29040,10 @@ testModel: project: schema: *ref_2 rawValue: Encryption - language: *ref_959 - language: *ref_1031 - operation: *ref_1032 - operationGroup: *ref_996 + language: *ref_971 + language: *ref_1043 + operation: *ref_1044 + operationGroup: *ref_1008 - operationId: DiskEncryptionSets_Delete examples: - name: Delete a disk encryption set. @@ -28875,33 +29051,33 @@ testModel: - exampleValue: schema: *ref_475 rawValue: '{subscription-id}' - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: myResourceGroup - language: *ref_1033 + language: *ref_1045 parameter: *ref_571 - exampleValue: schema: *ref_5 rawValue: myDiskEncryptionSet - language: *ref_1034 + language: *ref_1046 parameter: *ref_572 - exampleValue: schema: *ref_478 rawValue: '2022-03-02' - language: *ref_1036 - parameter: *ref_1035 - operation: *ref_1037 - operationGroup: *ref_996 + language: *ref_1048 + parameter: *ref_1047 + operation: *ref_1049 + operationGroup: *ref_1008 originalFile: '' responses: '200': {} '202': {} '204': {} - operation: *ref_1037 - operationGroup: *ref_996 + operation: *ref_1049 + operationGroup: *ref_1008 - operationId: DiskEncryptionSets_ListByResourceGroup examples: - name: List all disk encryption sets in a resource group. @@ -28909,21 +29085,21 @@ testModel: - exampleValue: schema: *ref_475 rawValue: '{subscription-id}' - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_2 rawValue: myResourceGroup - language: *ref_1038 + language: *ref_1050 parameter: *ref_573 - exampleValue: schema: *ref_478 rawValue: '2022-03-02' - language: *ref_1040 - parameter: *ref_1039 - operation: *ref_1044 - operationGroup: *ref_996 + language: *ref_1052 + parameter: *ref_1051 + operation: *ref_1056 + operationGroup: *ref_1008 originalFile: '' responses: '200': @@ -28934,7 +29110,7 @@ testModel: nextLink: schema: *ref_156 rawValue: https://management.azure.com/subscriptions/{subscriptionId}/providers/Microsoft.Compute/diskEncryptionSets?$skiptoken={token} - language: *ref_1043 + language: *ref_1055 value: schema: *ref_414 elements: @@ -28944,20 +29120,20 @@ testModel: name: schema: *ref_147 rawValue: myDiskEncryptionSet - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: Microsoft.Compute/diskEncryptionSets - language: *ref_899 + language: *ref_911 activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvmvault.vault-int.azure-int.net/keys/{key} - language: *ref_987 + language: *ref_999 sourceVault: schema: *ref_153 parentsValue: {} @@ -28965,18 +29141,18 @@ testModel: id: schema: *ref_135 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.KeyVault/vaults/myVMVault - language: *ref_1001 - language: *ref_1000 - language: *ref_986 + language: *ref_1013 + language: *ref_1012 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 id: schema: *ref_146 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/myDiskEncryptionSet - language: *ref_897 + language: *ref_909 identity: schema: *ref_67 parentsValue: {} @@ -28984,22 +29160,22 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_983 + language: *ref_723 + language: *ref_995 location: schema: *ref_149 rawValue: westus - language: *ref_958 + language: *ref_970 previousKeys: schema: *ref_413 elements: [] - flattenedNames: *ref_993 - language: *ref_992 + flattenedNames: *ref_1005 + language: *ref_1004 provisioningState: schema: *ref_138 - flattenedNames: *ref_1016 + flattenedNames: *ref_1028 rawValue: Succeeded - language: *ref_1015 + language: *ref_1027 tags: schema: *ref_150 properties: @@ -29009,27 +29185,27 @@ testModel: project: schema: *ref_2 rawValue: Encryption - language: *ref_959 + language: *ref_971 - schema: *ref_145 parentsValue: {} properties: name: schema: *ref_147 rawValue: myDiskEncryptionSet2 - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: Microsoft.Compute/diskEncryptionSets - language: *ref_899 + language: *ref_911 activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvmvault.vault-int.azure-int.net/keys/{key} - language: *ref_987 + language: *ref_999 sourceVault: schema: *ref_153 parentsValue: {} @@ -29037,18 +29213,18 @@ testModel: id: schema: *ref_135 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.KeyVault/vaults/myVMVault2 - language: *ref_1001 - language: *ref_1000 - language: *ref_986 + language: *ref_1013 + language: *ref_1012 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 id: schema: *ref_146 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/myDiskEncryptionSet2 - language: *ref_897 + language: *ref_909 identity: schema: *ref_67 parentsValue: {} @@ -29056,22 +29232,22 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_983 + language: *ref_723 + language: *ref_995 location: schema: *ref_149 rawValue: westus - language: *ref_958 + language: *ref_970 previousKeys: schema: *ref_413 elements: [] - flattenedNames: *ref_993 - language: *ref_992 + flattenedNames: *ref_1005 + language: *ref_1004 provisioningState: schema: *ref_138 - flattenedNames: *ref_1016 + flattenedNames: *ref_1028 rawValue: Succeeded - language: *ref_1015 + language: *ref_1027 tags: schema: *ref_150 properties: @@ -29081,11 +29257,11 @@ testModel: project: schema: *ref_2 rawValue: Encryption - language: *ref_959 - language: *ref_1042 - language: *ref_1041 - operation: *ref_1044 - operationGroup: *ref_996 + language: *ref_971 + language: *ref_1054 + language: *ref_1053 + operation: *ref_1056 + operationGroup: *ref_1008 - operationId: DiskEncryptionSets_List examples: - name: List all disk encryption sets in a subscription. @@ -29093,16 +29269,16 @@ testModel: - exampleValue: schema: *ref_475 rawValue: '{subscription-id}' - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_478 rawValue: '2022-03-02' - language: *ref_1046 - parameter: *ref_1045 - operation: *ref_1048 - operationGroup: *ref_996 + language: *ref_1058 + parameter: *ref_1057 + operation: *ref_1060 + operationGroup: *ref_1008 originalFile: '' responses: '200': @@ -29113,7 +29289,7 @@ testModel: nextLink: schema: *ref_156 rawValue: https://management.azure.com/subscriptions/{subscriptionId}/providers/Microsoft.Compute/diskEncryptionSets?$skiptoken={token} - language: *ref_1043 + language: *ref_1055 value: schema: *ref_414 elements: @@ -29123,20 +29299,20 @@ testModel: name: schema: *ref_147 rawValue: myDiskEncryptionSet - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: Microsoft.Compute/diskEncryptionSets - language: *ref_899 + language: *ref_911 activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvmvault.vault-int.azure-int.net/keys/{key} - language: *ref_987 + language: *ref_999 sourceVault: schema: *ref_153 parentsValue: {} @@ -29144,18 +29320,18 @@ testModel: id: schema: *ref_135 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.KeyVault/vaults/myVMVault - language: *ref_1001 - language: *ref_1000 - language: *ref_986 + language: *ref_1013 + language: *ref_1012 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 id: schema: *ref_146 rawValue: /subscriptions/{subscriptionId}/resourceGroups/myResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/myDiskEncryptionSet - language: *ref_897 + language: *ref_909 identity: schema: *ref_67 parentsValue: {} @@ -29163,22 +29339,22 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_983 + language: *ref_723 + language: *ref_995 location: schema: *ref_149 rawValue: westus - language: *ref_958 + language: *ref_970 previousKeys: schema: *ref_413 elements: [] - flattenedNames: *ref_993 - language: *ref_992 + flattenedNames: *ref_1005 + language: *ref_1004 provisioningState: schema: *ref_138 - flattenedNames: *ref_1016 + flattenedNames: *ref_1028 rawValue: Succeeded - language: *ref_1015 + language: *ref_1027 tags: schema: *ref_150 properties: @@ -29188,27 +29364,27 @@ testModel: project: schema: *ref_2 rawValue: Encryption - language: *ref_959 + language: *ref_971 - schema: *ref_145 parentsValue: {} properties: name: schema: *ref_147 rawValue: myDiskEncryptionSet2 - language: *ref_898 + language: *ref_910 type: schema: *ref_148 rawValue: Microsoft.Compute/diskEncryptionSets - language: *ref_899 + language: *ref_911 activeKey: schema: *ref_137 - flattenedNames: *ref_988 + flattenedNames: *ref_1000 parentsValue: {} properties: keyUrl: schema: *ref_136 rawValue: https://myvmvault.vault-int.azure-int.net/keys/{key} - language: *ref_987 + language: *ref_999 sourceVault: schema: *ref_153 parentsValue: {} @@ -29216,18 +29392,18 @@ testModel: id: schema: *ref_135 rawValue: /subscriptions/{subscriptionId}/resourceGroups/mySecondResourceGroup/providers/Microsoft.KeyVault/vaults/myVMVault2 - language: *ref_1001 - language: *ref_1000 - language: *ref_986 + language: *ref_1013 + language: *ref_1012 + language: *ref_998 encryptionType: schema: *ref_134 - flattenedNames: *ref_985 + flattenedNames: *ref_997 rawValue: EncryptionAtRestWithCustomerKey - language: *ref_984 + language: *ref_996 id: schema: *ref_146 rawValue: /subscriptions/{subscriptionId}/resourceGroups/mySecondResourceGroup/providers/Microsoft.Compute/diskEncryptionSets/myDiskEncryptionSet2 - language: *ref_897 + language: *ref_909 identity: schema: *ref_67 parentsValue: {} @@ -29235,22 +29411,22 @@ testModel: type: schema: *ref_50 rawValue: SystemAssigned - language: *ref_711 - language: *ref_983 + language: *ref_723 + language: *ref_995 location: schema: *ref_149 rawValue: westus - language: *ref_958 + language: *ref_970 previousKeys: schema: *ref_413 elements: [] - flattenedNames: *ref_993 - language: *ref_992 + flattenedNames: *ref_1005 + language: *ref_1004 provisioningState: schema: *ref_138 - flattenedNames: *ref_1016 + flattenedNames: *ref_1028 rawValue: Succeeded - language: *ref_1015 + language: *ref_1027 tags: schema: *ref_150 properties: @@ -29260,11 +29436,11 @@ testModel: project: schema: *ref_2 rawValue: Encryption - language: *ref_959 - language: *ref_1042 - language: *ref_1047 - operation: *ref_1048 - operationGroup: *ref_996 + language: *ref_971 + language: *ref_1054 + language: *ref_1059 + operation: *ref_1060 + operationGroup: *ref_1008 - operationId: ManagedHsms_CreateOrUpdate examples: - name: Create a new managed HSM Pool or update an existing managed HSM Pool @@ -29272,24 +29448,24 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_5 rawValue: hsm-group - language: *ref_1049 + language: *ref_1061 parameter: *ref_577 - exampleValue: schema: *ref_5 rawValue: hsm1 - language: *ref_1050 + language: *ref_1062 parameter: *ref_578 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_1052 - parameter: *ref_1051 + language: *ref_1064 + parameter: *ref_1063 - exampleValue: schema: *ref_157 parentsValue: {} @@ -29297,7 +29473,7 @@ testModel: location: schema: *ref_170 rawValue: westus - language: *ref_1067 + language: *ref_1079 properties: schema: *ref_191 parentsValue: {} @@ -29305,17 +29481,17 @@ testModel: enablePurgeProtection: schema: *ref_182 rawValue: true - language: *ref_1063 + language: *ref_1075 enableSoftDelete: schema: *ref_180 rawValue: true - language: *ref_1061 + language: *ref_1073 initialAdminObjectIds: schema: *ref_415 elements: - schema: *ref_178 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1060 + language: *ref_1072 networkAcls: schema: *ref_192 parentsValue: {} @@ -29329,30 +29505,30 @@ testModel: id: schema: *ref_186 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.Network/virtualNetworks/vnet1/subnets/default - language: *ref_1066 - language: *ref_1065 - language: *ref_1064 + language: *ref_1078 + language: *ref_1077 + language: *ref_1076 protectedSettings: schema: *ref_175 - rawValue: *ref_1057 - language: *ref_1056 + rawValue: *ref_1069 + language: *ref_1068 rawMessage: schema: *ref_176 rawValue: PFX-or-PEM-blob - language: *ref_1058 + language: *ref_1070 settings: schema: *ref_174 rawValue: '{"config1":"value1","config2":8427,"config3":false,"config4":["1","2"],"config5":{"inner":"something"}}' - language: *ref_1055 + language: *ref_1067 softDeleteRetentionInDays: schema: *ref_181 rawValue: 90 - language: *ref_1062 + language: *ref_1074 tenantId: schema: *ref_177 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1059 - language: *ref_1054 + language: *ref_1071 + language: *ref_1066 sku: schema: *ref_196 parentsValue: {} @@ -29360,12 +29536,12 @@ testModel: name: schema: *ref_172 rawValue: Standard_B1 - language: *ref_1070 + language: *ref_1082 family: schema: *ref_171 rawValue: B - language: *ref_1069 - language: *ref_1068 + language: *ref_1081 + language: *ref_1080 tags: schema: *ref_173 properties: @@ -29375,11 +29551,11 @@ testModel: Environment: schema: *ref_5 rawValue: dogfood - language: *ref_1071 - language: *ref_1053 + language: *ref_1083 + language: *ref_1065 parameter: *ref_575 - operation: *ref_1080 - operationGroup: *ref_1081 + operation: *ref_1092 + operationGroup: *ref_1093 originalFile: '' responses: '200': @@ -29390,19 +29566,103 @@ testModel: name: schema: *ref_168 rawValue: hsm1 - language: *ref_1077 + language: *ref_1089 + type: + schema: *ref_169 + rawValue: Microsoft.KeyVault/managedHSMs + language: *ref_1090 + id: + schema: *ref_167 + rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.KeyVault/managedHSMs/hsm1 + language: *ref_1088 + location: + schema: *ref_170 + rawValue: westus + language: *ref_1079 + properties: + schema: *ref_191 + parentsValue: {} + properties: + enablePurgeProtection: + schema: *ref_182 + rawValue: true + language: *ref_1075 + enableSoftDelete: + schema: *ref_180 + rawValue: true + language: *ref_1073 + hsmUri: + schema: *ref_179 + rawValue: https://westus.hsm1.managedhsm.azure.net + language: *ref_1085 + initialAdminObjectIds: + schema: *ref_415 + elements: + - schema: *ref_178 + rawValue: 00000000-0000-0000-0000-000000000000 + language: *ref_1072 + provisioningState: + schema: *ref_184 + rawValue: Succeeded + language: *ref_1087 + softDeleteRetentionInDays: + schema: *ref_181 + rawValue: 90 + language: *ref_1074 + statusMessage: + schema: *ref_183 + rawValue: ManagedHsm is functional. + language: *ref_1086 + tenantId: + schema: *ref_177 + rawValue: 00000000-0000-0000-0000-000000000000 + language: *ref_1071 + language: *ref_1066 + sku: + schema: *ref_196 + parentsValue: {} + properties: + name: + schema: *ref_172 + rawValue: Standard_B1 + language: *ref_1082 + family: + schema: *ref_171 + rawValue: B + language: *ref_1081 + language: *ref_1080 + tags: + schema: *ref_173 + properties: + Dept: + schema: *ref_5 + rawValue: hsm + Environment: + schema: *ref_5 + rawValue: dogfood + language: *ref_1083 + language: *ref_1084 + '202': + body: + schema: *ref_157 + parentsValue: {} + properties: + name: + schema: *ref_168 + rawValue: hsm1 + language: *ref_1089 type: schema: *ref_169 rawValue: Microsoft.KeyVault/managedHSMs - language: *ref_1078 + language: *ref_1090 id: schema: *ref_167 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.KeyVault/managedHSMs/hsm1 - language: *ref_1076 + language: *ref_1088 location: schema: *ref_170 rawValue: westus - language: *ref_1067 + language: *ref_1079 properties: schema: *ref_191 parentsValue: {} @@ -29410,122 +29670,38 @@ testModel: enablePurgeProtection: schema: *ref_182 rawValue: true - language: *ref_1063 - enableSoftDelete: - schema: *ref_180 - rawValue: true - language: *ref_1061 - hsmUri: - schema: *ref_179 - rawValue: https://westus.hsm1.managedhsm.azure.net - language: *ref_1073 - initialAdminObjectIds: - schema: *ref_415 - elements: - - schema: *ref_178 - rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1060 - provisioningState: - schema: *ref_184 - rawValue: Succeeded language: *ref_1075 - softDeleteRetentionInDays: - schema: *ref_181 - rawValue: 90 - language: *ref_1062 - statusMessage: - schema: *ref_183 - rawValue: ManagedHsm is functional. - language: *ref_1074 - tenantId: - schema: *ref_177 - rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1059 - language: *ref_1054 - sku: - schema: *ref_196 - parentsValue: {} - properties: - name: - schema: *ref_172 - rawValue: Standard_B1 - language: *ref_1070 - family: - schema: *ref_171 - rawValue: B - language: *ref_1069 - language: *ref_1068 - tags: - schema: *ref_173 - properties: - Dept: - schema: *ref_5 - rawValue: hsm - Environment: - schema: *ref_5 - rawValue: dogfood - language: *ref_1071 - language: *ref_1072 - '202': - body: - schema: *ref_157 - parentsValue: {} - properties: - name: - schema: *ref_168 - rawValue: hsm1 - language: *ref_1077 - type: - schema: *ref_169 - rawValue: Microsoft.KeyVault/managedHSMs - language: *ref_1078 - id: - schema: *ref_167 - rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.KeyVault/managedHSMs/hsm1 - language: *ref_1076 - location: - schema: *ref_170 - rawValue: westus - language: *ref_1067 - properties: - schema: *ref_191 - parentsValue: {} - properties: - enablePurgeProtection: - schema: *ref_182 - rawValue: true - language: *ref_1063 enableSoftDelete: schema: *ref_180 rawValue: true - language: *ref_1061 + language: *ref_1073 hsmUri: schema: *ref_179 rawValue: null - language: *ref_1073 + language: *ref_1085 initialAdminObjectIds: schema: *ref_415 elements: - schema: *ref_178 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1060 + language: *ref_1072 provisioningState: schema: *ref_184 rawValue: Provisioning - language: *ref_1075 + language: *ref_1087 softDeleteRetentionInDays: schema: *ref_181 rawValue: 90 - language: *ref_1062 + language: *ref_1074 statusMessage: schema: *ref_183 rawValue: Allocating hardware - language: *ref_1074 + language: *ref_1086 tenantId: schema: *ref_177 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1059 - language: *ref_1054 + language: *ref_1071 + language: *ref_1066 sku: schema: *ref_196 parentsValue: {} @@ -29533,12 +29709,12 @@ testModel: name: schema: *ref_172 rawValue: Standard_B1 - language: *ref_1070 + language: *ref_1082 family: schema: *ref_171 rawValue: B - language: *ref_1069 - language: *ref_1068 + language: *ref_1081 + language: *ref_1080 tags: schema: *ref_173 properties: @@ -29548,10 +29724,10 @@ testModel: Environment: schema: *ref_5 rawValue: dogfood - language: *ref_1071 - language: *ref_1079 - operation: *ref_1080 - operationGroup: *ref_1081 + language: *ref_1083 + language: *ref_1091 + operation: *ref_1092 + operationGroup: *ref_1093 - operationId: ManagedHsms_Update examples: - name: Update an existing managed HSM Pool @@ -29559,24 +29735,24 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_5 rawValue: hsm-group - language: *ref_1082 + language: *ref_1094 parameter: *ref_582 - exampleValue: schema: *ref_5 rawValue: hsm1 - language: *ref_1083 + language: *ref_1095 parameter: *ref_583 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_1085 - parameter: *ref_1084 + language: *ref_1097 + parameter: *ref_1096 - exampleValue: schema: *ref_157 parentsValue: {} @@ -29593,11 +29769,11 @@ testModel: Slice: schema: *ref_5 rawValue: A - language: *ref_1071 - language: *ref_1086 + language: *ref_1083 + language: *ref_1098 parameter: *ref_580 - operation: *ref_1089 - operationGroup: *ref_1081 + operation: *ref_1101 + operationGroup: *ref_1093 originalFile: '' responses: '200': @@ -29608,19 +29784,19 @@ testModel: name: schema: *ref_168 rawValue: hsm1 - language: *ref_1077 + language: *ref_1089 type: schema: *ref_169 rawValue: Microsoft.KeyVault/managedHSMs - language: *ref_1078 + language: *ref_1090 id: schema: *ref_167 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.KeyVault/managedHSMs/hsm1 - language: *ref_1076 + language: *ref_1088 location: schema: *ref_170 rawValue: westus - language: *ref_1067 + language: *ref_1079 properties: schema: *ref_191 parentsValue: {} @@ -29628,38 +29804,38 @@ testModel: enablePurgeProtection: schema: *ref_182 rawValue: true - language: *ref_1063 + language: *ref_1075 enableSoftDelete: schema: *ref_180 rawValue: true - language: *ref_1061 + language: *ref_1073 hsmUri: schema: *ref_179 rawValue: https://westus.hsm1.managedhsm.azure.net - language: *ref_1073 + language: *ref_1085 initialAdminObjectIds: schema: *ref_415 elements: - schema: *ref_178 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1060 + language: *ref_1072 provisioningState: schema: *ref_184 rawValue: Succeeded - language: *ref_1075 + language: *ref_1087 softDeleteRetentionInDays: schema: *ref_181 rawValue: 90 - language: *ref_1062 + language: *ref_1074 statusMessage: schema: *ref_183 rawValue: ManagedHsm is functional. - language: *ref_1074 + language: *ref_1086 tenantId: schema: *ref_177 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1059 - language: *ref_1054 + language: *ref_1071 + language: *ref_1066 sku: schema: *ref_196 parentsValue: {} @@ -29667,12 +29843,12 @@ testModel: name: schema: *ref_172 rawValue: Standard_B1 - language: *ref_1070 + language: *ref_1082 family: schema: *ref_171 rawValue: B - language: *ref_1069 - language: *ref_1068 + language: *ref_1081 + language: *ref_1080 tags: schema: *ref_173 properties: @@ -29685,8 +29861,8 @@ testModel: Slice: schema: *ref_5 rawValue: A - language: *ref_1071 - language: *ref_1087 + language: *ref_1083 + language: *ref_1099 '202': body: schema: *ref_157 @@ -29695,19 +29871,19 @@ testModel: name: schema: *ref_168 rawValue: hsm1 - language: *ref_1077 + language: *ref_1089 type: schema: *ref_169 rawValue: Microsoft.KeyVault/managedHSMs - language: *ref_1078 + language: *ref_1090 id: schema: *ref_167 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.KeyVault/managedHSMs/hsm1 - language: *ref_1076 + language: *ref_1088 location: schema: *ref_170 rawValue: westus - language: *ref_1067 + language: *ref_1079 properties: schema: *ref_191 parentsValue: {} @@ -29715,38 +29891,38 @@ testModel: enablePurgeProtection: schema: *ref_182 rawValue: true - language: *ref_1063 + language: *ref_1075 enableSoftDelete: schema: *ref_180 rawValue: true - language: *ref_1061 + language: *ref_1073 hsmUri: schema: *ref_179 rawValue: https://westus.hsm1.managedhsm.azure.net - language: *ref_1073 + language: *ref_1085 initialAdminObjectIds: schema: *ref_415 elements: - schema: *ref_178 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1060 + language: *ref_1072 provisioningState: schema: *ref_184 rawValue: Updating - language: *ref_1075 + language: *ref_1087 softDeleteRetentionInDays: schema: *ref_181 rawValue: 90 - language: *ref_1062 + language: *ref_1074 statusMessage: schema: *ref_183 rawValue: ManagedHsm is updating. - language: *ref_1074 + language: *ref_1086 tenantId: schema: *ref_177 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1059 - language: *ref_1054 + language: *ref_1071 + language: *ref_1066 sku: schema: *ref_196 parentsValue: {} @@ -29754,12 +29930,12 @@ testModel: name: schema: *ref_172 rawValue: Standard_B1 - language: *ref_1070 + language: *ref_1082 family: schema: *ref_171 rawValue: B - language: *ref_1069 - language: *ref_1068 + language: *ref_1081 + language: *ref_1080 tags: schema: *ref_173 properties: @@ -29772,10 +29948,10 @@ testModel: Slice: schema: *ref_5 rawValue: A - language: *ref_1071 - language: *ref_1088 - operation: *ref_1089 - operationGroup: *ref_1081 + language: *ref_1083 + language: *ref_1100 + operation: *ref_1101 + operationGroup: *ref_1093 - operationId: ManagedHsms_Delete examples: - name: Delete a managed HSM Pool @@ -29783,33 +29959,33 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_5 rawValue: hsm-group - language: *ref_1090 + language: *ref_1102 parameter: *ref_584 - exampleValue: schema: *ref_5 rawValue: hsm1 - language: *ref_1091 + language: *ref_1103 parameter: *ref_585 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_1093 - parameter: *ref_1092 - operation: *ref_1094 - operationGroup: *ref_1081 + language: *ref_1105 + parameter: *ref_1104 + operation: *ref_1106 + operationGroup: *ref_1093 originalFile: '' responses: '200': {} '202': {} '204': {} - operation: *ref_1094 - operationGroup: *ref_1081 + operation: *ref_1106 + operationGroup: *ref_1093 - operationId: ManagedHsms_Get examples: - name: Retrieve a managed HSM Pool @@ -29817,26 +29993,26 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_5 rawValue: hsm-group - language: *ref_1095 + language: *ref_1107 parameter: *ref_586 - exampleValue: schema: *ref_5 rawValue: hsm1 - language: *ref_1096 + language: *ref_1108 parameter: *ref_587 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_1098 - parameter: *ref_1097 - operation: *ref_1101 - operationGroup: *ref_1081 + language: *ref_1110 + parameter: *ref_1109 + operation: *ref_1113 + operationGroup: *ref_1093 originalFile: '' responses: '200': @@ -29847,19 +30023,19 @@ testModel: name: schema: *ref_168 rawValue: hsm1 - language: *ref_1077 + language: *ref_1089 type: schema: *ref_169 rawValue: Microsoft.KeyVault/managedHSMs - language: *ref_1078 + language: *ref_1090 id: schema: *ref_167 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.KeyVault/managedHSMs/hsm1 - language: *ref_1076 + language: *ref_1088 location: schema: *ref_170 rawValue: westus - language: *ref_1067 + language: *ref_1079 properties: schema: *ref_191 parentsValue: {} @@ -29867,38 +30043,38 @@ testModel: enablePurgeProtection: schema: *ref_182 rawValue: true - language: *ref_1063 + language: *ref_1075 enableSoftDelete: schema: *ref_180 rawValue: true - language: *ref_1061 + language: *ref_1073 hsmUri: schema: *ref_179 rawValue: https://westus.hsm1.managedhsm.azure.net - language: *ref_1073 + language: *ref_1085 initialAdminObjectIds: schema: *ref_415 elements: - schema: *ref_178 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1060 + language: *ref_1072 provisioningState: schema: *ref_184 rawValue: Succeeded - language: *ref_1075 + language: *ref_1087 softDeleteRetentionInDays: schema: *ref_181 rawValue: 90 - language: *ref_1062 + language: *ref_1074 statusMessage: schema: *ref_183 rawValue: ManagedHsm is functional. - language: *ref_1074 + language: *ref_1086 tenantId: schema: *ref_177 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1059 - language: *ref_1054 + language: *ref_1071 + language: *ref_1066 sku: schema: *ref_196 parentsValue: {} @@ -29906,12 +30082,12 @@ testModel: name: schema: *ref_172 rawValue: Standard_B1 - language: *ref_1070 + language: *ref_1082 family: schema: *ref_171 rawValue: B - language: *ref_1069 - language: *ref_1068 + language: *ref_1081 + language: *ref_1080 tags: schema: *ref_173 properties: @@ -29921,13 +30097,13 @@ testModel: Environment: schema: *ref_5 rawValue: dogfood - language: *ref_1071 - language: *ref_1099 + language: *ref_1083 + language: *ref_1111 '202': - headers: *ref_1100 + headers: *ref_1112 '204': {} - operation: *ref_1101 - operationGroup: *ref_1081 + operation: *ref_1113 + operationGroup: *ref_1093 - operationId: ManagedHsms_ListByResourceGroup examples: - name: List managed HSM Pools in a resource group @@ -29935,21 +30111,21 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_5 rawValue: hsm-group - language: *ref_1102 + language: *ref_1114 parameter: *ref_588 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_1104 - parameter: *ref_1103 - operation: *ref_1108 - operationGroup: *ref_1081 + language: *ref_1116 + parameter: *ref_1115 + operation: *ref_1120 + operationGroup: *ref_1093 originalFile: '' responses: '200': @@ -29960,7 +30136,7 @@ testModel: nextLink: schema: *ref_200 rawValue: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.KeyVault/managedHSMs?api-version=2021-10-01&$skiptoken=dmF1bHQtcGVza3ktanVyeS03MzA3Ng== - language: *ref_1107 + language: *ref_1119 value: schema: *ref_419 elements: @@ -29970,19 +30146,19 @@ testModel: name: schema: *ref_168 rawValue: hsm1 - language: *ref_1077 + language: *ref_1089 type: schema: *ref_169 rawValue: Microsoft.KeyVault/managedHSMs - language: *ref_1078 + language: *ref_1090 id: schema: *ref_167 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.KeyVault/managedHSMs/hsm1 - language: *ref_1076 + language: *ref_1088 location: schema: *ref_170 rawValue: westus - language: *ref_1067 + language: *ref_1079 properties: schema: *ref_191 parentsValue: {} @@ -29990,38 +30166,38 @@ testModel: enablePurgeProtection: schema: *ref_182 rawValue: true - language: *ref_1063 + language: *ref_1075 enableSoftDelete: schema: *ref_180 rawValue: true - language: *ref_1061 + language: *ref_1073 hsmUri: schema: *ref_179 rawValue: https://westus.hsm1.managedhsm.azure.net - language: *ref_1073 + language: *ref_1085 initialAdminObjectIds: schema: *ref_415 elements: - schema: *ref_178 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1060 + language: *ref_1072 provisioningState: schema: *ref_184 rawValue: Succeeded - language: *ref_1075 + language: *ref_1087 softDeleteRetentionInDays: schema: *ref_181 rawValue: 90 - language: *ref_1062 + language: *ref_1074 statusMessage: schema: *ref_183 rawValue: ManagedHsm is functional. - language: *ref_1074 + language: *ref_1086 tenantId: schema: *ref_177 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1059 - language: *ref_1054 + language: *ref_1071 + language: *ref_1066 sku: schema: *ref_196 parentsValue: {} @@ -30029,12 +30205,12 @@ testModel: name: schema: *ref_172 rawValue: Standard_B1 - language: *ref_1070 + language: *ref_1082 family: schema: *ref_171 rawValue: B - language: *ref_1069 - language: *ref_1068 + language: *ref_1081 + language: *ref_1080 tags: schema: *ref_173 properties: @@ -30044,26 +30220,26 @@ testModel: Environment: schema: *ref_5 rawValue: dogfood - language: *ref_1071 + language: *ref_1083 - schema: *ref_157 parentsValue: {} properties: name: schema: *ref_168 rawValue: hsm2 - language: *ref_1077 + language: *ref_1089 type: schema: *ref_169 rawValue: Microsoft.KeyVault/managedHSMs - language: *ref_1078 + language: *ref_1090 id: schema: *ref_167 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.KeyVault/managedHSMs/hsm2 - language: *ref_1076 + language: *ref_1088 location: schema: *ref_170 rawValue: westus - language: *ref_1067 + language: *ref_1079 properties: schema: *ref_191 parentsValue: {} @@ -30071,38 +30247,38 @@ testModel: enablePurgeProtection: schema: *ref_182 rawValue: true - language: *ref_1063 + language: *ref_1075 enableSoftDelete: schema: *ref_180 rawValue: true - language: *ref_1061 + language: *ref_1073 hsmUri: schema: *ref_179 rawValue: https://westus.hsm2.managedhsm.azure.net - language: *ref_1073 + language: *ref_1085 initialAdminObjectIds: schema: *ref_415 elements: - schema: *ref_178 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1060 + language: *ref_1072 provisioningState: schema: *ref_184 rawValue: Succeeded - language: *ref_1075 + language: *ref_1087 softDeleteRetentionInDays: schema: *ref_181 rawValue: 90 - language: *ref_1062 + language: *ref_1074 statusMessage: schema: *ref_183 rawValue: ManagedHsm is functional. - language: *ref_1074 + language: *ref_1086 tenantId: schema: *ref_177 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1059 - language: *ref_1054 + language: *ref_1071 + language: *ref_1066 sku: schema: *ref_196 parentsValue: {} @@ -30110,12 +30286,12 @@ testModel: name: schema: *ref_172 rawValue: Standard_B1 - language: *ref_1070 + language: *ref_1082 family: schema: *ref_171 rawValue: B - language: *ref_1069 - language: *ref_1068 + language: *ref_1081 + language: *ref_1080 tags: schema: *ref_173 properties: @@ -30125,11 +30301,11 @@ testModel: Environment: schema: *ref_5 rawValue: production - language: *ref_1071 - language: *ref_1106 - language: *ref_1105 - operation: *ref_1108 - operationGroup: *ref_1081 + language: *ref_1083 + language: *ref_1118 + language: *ref_1117 + operation: *ref_1120 + operationGroup: *ref_1093 - operationId: ManagedHsms_ListBySubscription examples: - name: List managed HSM Pools in a subscription @@ -30137,16 +30313,16 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_1110 - parameter: *ref_1109 - operation: *ref_1112 - operationGroup: *ref_1081 + language: *ref_1122 + parameter: *ref_1121 + operation: *ref_1124 + operationGroup: *ref_1093 originalFile: '' responses: '200': @@ -30157,7 +30333,7 @@ testModel: nextLink: schema: *ref_200 rawValue: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/managedHSMs?api-version=2021-10-01&$skiptoken=dmF1bHQtcGVza3ktanVyeS03MzA3Ng== - language: *ref_1107 + language: *ref_1119 value: schema: *ref_419 elements: @@ -30167,19 +30343,19 @@ testModel: name: schema: *ref_168 rawValue: hsm1 - language: *ref_1077 + language: *ref_1089 type: schema: *ref_169 rawValue: Microsoft.KeyVault/managedHSMs - language: *ref_1078 + language: *ref_1090 id: schema: *ref_167 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.KeyVault/managedHSMs/hsm1 - language: *ref_1076 + language: *ref_1088 location: schema: *ref_170 rawValue: westus - language: *ref_1067 + language: *ref_1079 properties: schema: *ref_191 parentsValue: {} @@ -30187,38 +30363,38 @@ testModel: enablePurgeProtection: schema: *ref_182 rawValue: true - language: *ref_1063 + language: *ref_1075 enableSoftDelete: schema: *ref_180 rawValue: true - language: *ref_1061 + language: *ref_1073 hsmUri: schema: *ref_179 rawValue: https://westus.hsm1.managedhsm.azure.net - language: *ref_1073 + language: *ref_1085 initialAdminObjectIds: schema: *ref_415 elements: - schema: *ref_178 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1060 + language: *ref_1072 provisioningState: schema: *ref_184 rawValue: Succeeded - language: *ref_1075 + language: *ref_1087 softDeleteRetentionInDays: schema: *ref_181 rawValue: 90 - language: *ref_1062 + language: *ref_1074 statusMessage: schema: *ref_183 rawValue: ManagedHsm is functional. - language: *ref_1074 + language: *ref_1086 tenantId: schema: *ref_177 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1059 - language: *ref_1054 + language: *ref_1071 + language: *ref_1066 sku: schema: *ref_196 parentsValue: {} @@ -30226,12 +30402,12 @@ testModel: name: schema: *ref_172 rawValue: Standard_B1 - language: *ref_1070 + language: *ref_1082 family: schema: *ref_171 rawValue: B - language: *ref_1069 - language: *ref_1068 + language: *ref_1081 + language: *ref_1080 tags: schema: *ref_173 properties: @@ -30241,26 +30417,26 @@ testModel: Environment: schema: *ref_5 rawValue: dogfood - language: *ref_1071 + language: *ref_1083 - schema: *ref_157 parentsValue: {} properties: name: schema: *ref_168 rawValue: hsm2 - language: *ref_1077 + language: *ref_1089 type: schema: *ref_169 rawValue: Microsoft.KeyVault/managedHSMs - language: *ref_1078 + language: *ref_1090 id: schema: *ref_167 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.KeyVault/managedHSMs/hsm2 - language: *ref_1076 + language: *ref_1088 location: schema: *ref_170 rawValue: westus - language: *ref_1067 + language: *ref_1079 properties: schema: *ref_191 parentsValue: {} @@ -30268,38 +30444,38 @@ testModel: enablePurgeProtection: schema: *ref_182 rawValue: true - language: *ref_1063 + language: *ref_1075 enableSoftDelete: schema: *ref_180 rawValue: true - language: *ref_1061 + language: *ref_1073 hsmUri: schema: *ref_179 rawValue: https://westus.hsm2.managedhsm.azure.net - language: *ref_1073 + language: *ref_1085 initialAdminObjectIds: schema: *ref_415 elements: - schema: *ref_178 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1060 + language: *ref_1072 provisioningState: schema: *ref_184 rawValue: Succeeded - language: *ref_1075 + language: *ref_1087 softDeleteRetentionInDays: schema: *ref_181 rawValue: 90 - language: *ref_1062 + language: *ref_1074 statusMessage: schema: *ref_183 rawValue: ManagedHsm is functional. - language: *ref_1074 + language: *ref_1086 tenantId: schema: *ref_177 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_1059 - language: *ref_1054 + language: *ref_1071 + language: *ref_1066 sku: schema: *ref_196 parentsValue: {} @@ -30307,12 +30483,12 @@ testModel: name: schema: *ref_172 rawValue: Standard_B1 - language: *ref_1070 + language: *ref_1082 family: schema: *ref_171 rawValue: B - language: *ref_1069 - language: *ref_1068 + language: *ref_1081 + language: *ref_1080 tags: schema: *ref_173 properties: @@ -30322,11 +30498,11 @@ testModel: Environment: schema: *ref_5 rawValue: production - language: *ref_1071 - language: *ref_1106 - language: *ref_1111 - operation: *ref_1112 - operationGroup: *ref_1081 + language: *ref_1083 + language: *ref_1118 + language: *ref_1123 + operation: *ref_1124 + operationGroup: *ref_1093 - operationId: ManagedHsms_ListDeleted examples: - name: List deleted managed HSMs in the specified subscription @@ -30334,16 +30510,16 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_1114 - parameter: *ref_1113 - operation: *ref_1128 - operationGroup: *ref_1081 + language: *ref_1126 + parameter: *ref_1125 + operation: *ref_1140 + operationGroup: *ref_1093 originalFile: '' responses: '200': @@ -30354,7 +30530,7 @@ testModel: nextLink: schema: *ref_211 rawValue: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/deletedManagedHSMs?api-version=2021-10-01&$skiptoken=dmF1bHQtcGVza3ktanVyeS03MzA3Ng== - language: *ref_1127 + language: *ref_1139 value: schema: *ref_421 elements: @@ -30364,15 +30540,15 @@ testModel: name: schema: *ref_203 rawValue: vault-agile-drawer-6404 - language: *ref_1118 + language: *ref_1130 type: schema: *ref_204 rawValue: Microsoft.KeyVault/deletedManagedHSMs - language: *ref_1119 + language: *ref_1131 id: schema: *ref_202 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedManagedHSMs/hsm1 - language: *ref_1117 + language: *ref_1129 properties: schema: *ref_213 parentsValue: {} @@ -30380,23 +30556,23 @@ testModel: deletionDate: schema: *ref_207 rawValue: '2021-04-01T00:00:59Z' - language: *ref_1123 + language: *ref_1135 location: schema: *ref_206 rawValue: westus - language: *ref_1122 + language: *ref_1134 mhsmId: schema: *ref_205 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.KeyVault/managedHSMs/hsm1 - language: *ref_1121 + language: *ref_1133 purgeProtectionEnabled: schema: *ref_209 rawValue: true - language: *ref_1125 + language: *ref_1137 scheduledPurgeDate: schema: *ref_208 rawValue: '2021-04-01T00:00:59Z' - language: *ref_1124 + language: *ref_1136 tags: schema: *ref_210 properties: @@ -30406,23 +30582,23 @@ testModel: Environment: schema: *ref_5 rawValue: production - language: *ref_1126 - language: *ref_1120 + language: *ref_1138 + language: *ref_1132 - schema: *ref_212 parentsValue: {} properties: name: schema: *ref_203 rawValue: vault-agile-drawer-6404 - language: *ref_1118 + language: *ref_1130 type: schema: *ref_204 rawValue: Microsoft.KeyVault/deletedManagedHSMs - language: *ref_1119 + language: *ref_1131 id: schema: *ref_202 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedManagedHSMs/hsm2 - language: *ref_1117 + language: *ref_1129 properties: schema: *ref_213 parentsValue: {} @@ -30430,23 +30606,23 @@ testModel: deletionDate: schema: *ref_207 rawValue: '2021-04-01T00:00:59Z' - language: *ref_1123 + language: *ref_1135 location: schema: *ref_206 rawValue: westus - language: *ref_1122 + language: *ref_1134 mhsmId: schema: *ref_205 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.KeyVault/managedHSMs/hsm2 - language: *ref_1121 + language: *ref_1133 purgeProtectionEnabled: schema: *ref_209 rawValue: true - language: *ref_1125 + language: *ref_1137 scheduledPurgeDate: schema: *ref_208 rawValue: '2021-04-01T00:00:59Z' - language: *ref_1124 + language: *ref_1136 tags: schema: *ref_210 properties: @@ -30456,12 +30632,12 @@ testModel: Environment: schema: *ref_5 rawValue: production - language: *ref_1126 - language: *ref_1120 - language: *ref_1116 - language: *ref_1115 - operation: *ref_1128 - operationGroup: *ref_1081 + language: *ref_1138 + language: *ref_1132 + language: *ref_1128 + language: *ref_1127 + operation: *ref_1140 + operationGroup: *ref_1093 - operationId: ManagedHsms_GetDeleted examples: - name: Retrieve a deleted managed HSM @@ -30469,26 +30645,26 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_5 rawValue: hsm1 - language: *ref_1129 + language: *ref_1141 parameter: *ref_593 - exampleValue: schema: *ref_5 rawValue: westus - language: *ref_1130 + language: *ref_1142 parameter: *ref_594 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_1132 - parameter: *ref_1131 - operation: *ref_1134 - operationGroup: *ref_1081 + language: *ref_1144 + parameter: *ref_1143 + operation: *ref_1146 + operationGroup: *ref_1093 originalFile: '' responses: '200': @@ -30499,15 +30675,15 @@ testModel: name: schema: *ref_203 rawValue: vault-agile-drawer-6404 - language: *ref_1118 + language: *ref_1130 type: schema: *ref_204 rawValue: Microsoft.KeyVault/deletedManagedHSMs - language: *ref_1119 + language: *ref_1131 id: schema: *ref_202 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.KeyVault/locations/westus/deletedManagedHSMs/hsm1 - language: *ref_1117 + language: *ref_1129 properties: schema: *ref_213 parentsValue: {} @@ -30515,23 +30691,23 @@ testModel: deletionDate: schema: *ref_207 rawValue: '2021-04-01T00:00:59Z' - language: *ref_1123 + language: *ref_1135 location: schema: *ref_206 rawValue: westus - language: *ref_1122 + language: *ref_1134 mhsmId: schema: *ref_205 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hsm-group/providers/Microsoft.KeyVault/managedHSMs/hsm1 - language: *ref_1121 + language: *ref_1133 purgeProtectionEnabled: schema: *ref_209 rawValue: true - language: *ref_1125 + language: *ref_1137 scheduledPurgeDate: schema: *ref_208 rawValue: '2021-04-01T00:00:59Z' - language: *ref_1124 + language: *ref_1136 tags: schema: *ref_210 properties: @@ -30541,11 +30717,11 @@ testModel: Environment: schema: *ref_5 rawValue: production - language: *ref_1126 - language: *ref_1120 - language: *ref_1133 - operation: *ref_1134 - operationGroup: *ref_1081 + language: *ref_1138 + language: *ref_1132 + language: *ref_1145 + operation: *ref_1146 + operationGroup: *ref_1093 - operationId: ManagedHsms_PurgeDeleted examples: - name: Purge a managed HSM Pool @@ -30553,31 +30729,31 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_5 rawValue: hsm1 - language: *ref_1135 + language: *ref_1147 parameter: *ref_595 - exampleValue: schema: *ref_5 rawValue: westus - language: *ref_1136 + language: *ref_1148 parameter: *ref_596 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_1138 - parameter: *ref_1137 - operation: *ref_1139 - operationGroup: *ref_1081 + language: *ref_1150 + parameter: *ref_1149 + operation: *ref_1151 + operationGroup: *ref_1093 originalFile: '' responses: '202': {} - operation: *ref_1139 - operationGroup: *ref_1081 + operation: *ref_1151 + operationGroup: *ref_1093 - operationId: MHSMPrivateEndpointConnections_ListByResource examples: - name: List managed HSM Pools in a subscription @@ -30585,26 +30761,26 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_1141 - parameter: *ref_1140 + language: *ref_1153 + parameter: *ref_1152 - exampleValue: schema: *ref_5 rawValue: sample-group - language: *ref_1142 + language: *ref_1154 parameter: *ref_597 - exampleValue: schema: *ref_5 rawValue: sample-mhsm - language: *ref_1143 + language: *ref_1155 parameter: *ref_598 - operation: *ref_1158 - operationGroup: *ref_1159 + operation: *ref_1170 + operationGroup: *ref_1171 originalFile: '' responses: '200': @@ -30615,7 +30791,7 @@ testModel: nextLink: schema: *ref_201 rawValue: null - language: *ref_1157 + language: *ref_1169 value: schema: *ref_420 elements: @@ -30625,108 +30801,108 @@ testModel: name: schema: *ref_168 rawValue: sample-pec1 - language: *ref_1077 + language: *ref_1089 type: schema: *ref_169 rawValue: Microsoft.KeyVault/managedhsms/privateEndpointConnections - language: *ref_1078 + language: *ref_1090 etag: schema: *ref_159 rawValue: '' - language: *ref_1146 + language: *ref_1158 id: schema: *ref_167 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/managedhsms/sample-mhsm/privateEndpointConnections/sample-pec1 - language: *ref_1076 + language: *ref_1088 privateEndpoint: schema: *ref_187 - flattenedNames: *ref_1149 + flattenedNames: *ref_1161 parentsValue: {} properties: id: schema: *ref_160 rawValue: /subscriptions/00000000-0000-0000-1234-000000000000/resourceGroups/sample-group/providers/Microsoft.Network/privateEndpoints/sample-pe1 - language: *ref_1148 - language: *ref_1147 + language: *ref_1160 + language: *ref_1159 privateLinkServiceConnectionState: schema: *ref_188 - flattenedNames: *ref_1154 + flattenedNames: *ref_1166 parentsValue: {} properties: description: schema: *ref_161 rawValue: This was automatically approved by user1234@contoso.com - language: *ref_1152 + language: *ref_1164 actionsRequired: schema: *ref_42 rawValue: None - language: *ref_1153 + language: *ref_1165 status: schema: *ref_40 rawValue: Approved - language: *ref_1151 - language: *ref_1150 + language: *ref_1163 + language: *ref_1162 provisioningState: schema: *ref_43 - flattenedNames: *ref_1156 + flattenedNames: *ref_1168 rawValue: Succeeded - language: *ref_1155 + language: *ref_1167 - schema: *ref_165 parentsValue: {} properties: name: schema: *ref_168 rawValue: sample-pec2 - language: *ref_1077 + language: *ref_1089 type: schema: *ref_169 rawValue: Microsoft.KeyVault/managedhsms/privateEndpointConnections - language: *ref_1078 + language: *ref_1090 etag: schema: *ref_159 rawValue: '' - language: *ref_1146 + language: *ref_1158 id: schema: *ref_167 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/managedhsms/sample-mhsm/privateEndpointConnections/sample-pec2 - language: *ref_1076 + language: *ref_1088 privateEndpoint: schema: *ref_187 - flattenedNames: *ref_1149 + flattenedNames: *ref_1161 parentsValue: {} properties: id: schema: *ref_160 rawValue: /subscriptions/00000000-0000-0000-1234-000000000000/resourceGroups/sample-group/providers/Microsoft.Network/privateEndpoints/sample-pe2 - language: *ref_1148 - language: *ref_1147 + language: *ref_1160 + language: *ref_1159 privateLinkServiceConnectionState: schema: *ref_188 - flattenedNames: *ref_1154 + flattenedNames: *ref_1166 parentsValue: {} properties: description: schema: *ref_161 rawValue: This was automatically approved by user1234@contoso.com - language: *ref_1152 + language: *ref_1164 actionsRequired: schema: *ref_42 rawValue: None - language: *ref_1153 + language: *ref_1165 status: schema: *ref_40 rawValue: Approved - language: *ref_1151 - language: *ref_1150 + language: *ref_1163 + language: *ref_1162 provisioningState: schema: *ref_43 - flattenedNames: *ref_1156 + flattenedNames: *ref_1168 rawValue: Succeeded - language: *ref_1155 - language: *ref_1145 - language: *ref_1144 - operation: *ref_1158 - operationGroup: *ref_1159 + language: *ref_1167 + language: *ref_1157 + language: *ref_1156 + operation: *ref_1170 + operationGroup: *ref_1171 - operationId: MHSMPrivateEndpointConnections_Get examples: - name: ManagedHsmGetPrivateEndpointConnection @@ -30734,31 +30910,31 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_5 rawValue: sample-group - language: *ref_1160 + language: *ref_1172 parameter: *ref_600 - exampleValue: schema: *ref_5 rawValue: sample-mhsm - language: *ref_1161 + language: *ref_1173 parameter: *ref_601 - exampleValue: schema: *ref_5 rawValue: sample-pec - language: *ref_1162 + language: *ref_1174 parameter: *ref_602 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_1164 - parameter: *ref_1163 - operation: *ref_1166 - operationGroup: *ref_1159 + language: *ref_1176 + parameter: *ref_1175 + operation: *ref_1178 + operationGroup: *ref_1171 originalFile: '' responses: '200': @@ -30769,55 +30945,55 @@ testModel: name: schema: *ref_168 rawValue: sample-pec - language: *ref_1077 + language: *ref_1089 type: schema: *ref_169 rawValue: Microsoft.KeyVault/managedhsms/privateEndpointConnections - language: *ref_1078 + language: *ref_1090 etag: schema: *ref_159 rawValue: '' - language: *ref_1146 + language: *ref_1158 id: schema: *ref_167 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/managedhsms/sample-mhsm/privateEndpointConnections/sample-pec - language: *ref_1076 + language: *ref_1088 privateEndpoint: schema: *ref_187 - flattenedNames: *ref_1149 + flattenedNames: *ref_1161 parentsValue: {} properties: id: schema: *ref_160 rawValue: /subscriptions/00000000-0000-0000-1234-000000000000/resourceGroups/sample-group/providers/Microsoft.Network/privateEndpoints/sample-pe - language: *ref_1148 - language: *ref_1147 + language: *ref_1160 + language: *ref_1159 privateLinkServiceConnectionState: schema: *ref_188 - flattenedNames: *ref_1154 + flattenedNames: *ref_1166 parentsValue: {} properties: description: schema: *ref_161 rawValue: This was automatically approved by user1234@contoso.com - language: *ref_1152 + language: *ref_1164 actionsRequired: schema: *ref_42 rawValue: None - language: *ref_1153 + language: *ref_1165 status: schema: *ref_40 rawValue: Approved - language: *ref_1151 - language: *ref_1150 + language: *ref_1163 + language: *ref_1162 provisioningState: schema: *ref_43 - flattenedNames: *ref_1156 + flattenedNames: *ref_1168 rawValue: Succeeded - language: *ref_1155 - language: *ref_1165 - operation: *ref_1166 - operationGroup: *ref_1159 + language: *ref_1167 + language: *ref_1177 + operation: *ref_1178 + operationGroup: *ref_1171 - operationId: MHSMPrivateEndpointConnections_Put examples: - name: ManagedHsmPutPrivateEndpointConnection @@ -30825,51 +31001,51 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_5 rawValue: sample-group - language: *ref_1167 + language: *ref_1179 parameter: *ref_605 - exampleValue: schema: *ref_5 rawValue: sample-mhsm - language: *ref_1168 + language: *ref_1180 parameter: *ref_606 - exampleValue: schema: *ref_5 rawValue: sample-pec - language: *ref_1169 + language: *ref_1181 parameter: *ref_607 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_1171 - parameter: *ref_1170 + language: *ref_1183 + parameter: *ref_1182 - exampleValue: schema: *ref_165 parentsValue: {} properties: privateLinkServiceConnectionState: schema: *ref_188 - flattenedNames: *ref_1154 + flattenedNames: *ref_1166 parentsValue: {} properties: description: schema: *ref_161 rawValue: My name is Joe and I'm approving this. - language: *ref_1152 + language: *ref_1164 status: schema: *ref_40 rawValue: Approved - language: *ref_1151 - language: *ref_1150 - language: *ref_1172 + language: *ref_1163 + language: *ref_1162 + language: *ref_1184 parameter: *ref_603 - operation: *ref_1174 - operationGroup: *ref_1159 + operation: *ref_1186 + operationGroup: *ref_1171 originalFile: '' responses: '200': @@ -30880,51 +31056,51 @@ testModel: name: schema: *ref_168 rawValue: sample-pec - language: *ref_1077 + language: *ref_1089 type: schema: *ref_169 rawValue: Microsoft.KeyVault/managedhsms/privateEndpointConnections - language: *ref_1078 + language: *ref_1090 id: schema: *ref_167 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/managedhsms/sample-mhsm/privateEndpointConnections/sample-pec - language: *ref_1076 + language: *ref_1088 privateEndpoint: schema: *ref_187 - flattenedNames: *ref_1149 + flattenedNames: *ref_1161 parentsValue: {} properties: id: schema: *ref_160 rawValue: /subscriptions/00000000-0000-0000-1234-000000000000/resourceGroups/sample-group/providers/Microsoft.Network/privateEndpoints/sample-pe - language: *ref_1148 - language: *ref_1147 + language: *ref_1160 + language: *ref_1159 privateLinkServiceConnectionState: schema: *ref_188 - flattenedNames: *ref_1154 + flattenedNames: *ref_1166 parentsValue: {} properties: description: schema: *ref_161 rawValue: My name is Joe and I'm approving this. - language: *ref_1152 + language: *ref_1164 actionsRequired: schema: *ref_42 rawValue: None - language: *ref_1153 + language: *ref_1165 status: schema: *ref_40 rawValue: Approved - language: *ref_1151 - language: *ref_1150 + language: *ref_1163 + language: *ref_1162 provisioningState: schema: *ref_43 - flattenedNames: *ref_1156 + flattenedNames: *ref_1168 rawValue: Succeeded - language: *ref_1155 - language: *ref_1173 - operation: *ref_1174 - operationGroup: *ref_1159 + language: *ref_1167 + language: *ref_1185 + operation: *ref_1186 + operationGroup: *ref_1171 - operationId: MHSMPrivateEndpointConnections_Delete examples: - name: ManagedHsmDeletePrivateEndpointConnection @@ -30932,31 +31108,31 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_5 rawValue: sample-group - language: *ref_1175 + language: *ref_1187 parameter: *ref_609 - exampleValue: schema: *ref_608 rawValue: sample-mhsm - language: *ref_1176 + language: *ref_1188 parameter: *ref_610 - exampleValue: schema: *ref_5 rawValue: sample-pec - language: *ref_1177 + language: *ref_1189 parameter: *ref_611 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_1179 - parameter: *ref_1178 - operation: *ref_1182 - operationGroup: *ref_1159 + language: *ref_1191 + parameter: *ref_1190 + operation: *ref_1194 + operationGroup: *ref_1171 originalFile: '' responses: '200': @@ -30967,26 +31143,26 @@ testModel: name: schema: *ref_168 rawValue: sample-pec - language: *ref_1077 + language: *ref_1089 type: schema: *ref_169 rawValue: Microsoft.KeyVault/managedhsms/privateEndpointConnections - language: *ref_1078 + language: *ref_1090 id: schema: *ref_167 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-group/providers/Microsoft.KeyVault/managedhsms/sample-vault/privateEndpointConnections/sample-pec - language: *ref_1076 + language: *ref_1088 provisioningState: schema: *ref_43 - flattenedNames: *ref_1156 + flattenedNames: *ref_1168 rawValue: Disconnected - language: *ref_1155 - language: *ref_1180 + language: *ref_1167 + language: *ref_1192 '202': - headers: *ref_1181 + headers: *ref_1193 '204': {} - operation: *ref_1182 - operationGroup: *ref_1159 + operation: *ref_1194 + operationGroup: *ref_1171 - operationId: MHSMPrivateLinkResources_ListByMHSMResource examples: - name: KeyVaultListPrivateLinkResources @@ -30994,26 +31170,26 @@ testModel: - exampleValue: schema: *ref_475 rawValue: 00000000-0000-0000-0000-000000000000 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_5 rawValue: sample-group - language: *ref_1183 + language: *ref_1195 parameter: *ref_614 - exampleValue: schema: *ref_613 rawValue: sample-mhsm - language: *ref_1184 + language: *ref_1196 parameter: *ref_615 - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_1186 - parameter: *ref_1185 - operation: *ref_1195 - operationGroup: *ref_1196 + language: *ref_1198 + parameter: *ref_1197 + operation: *ref_1207 + operationGroup: *ref_1208 originalFile: '' responses: '200': @@ -31030,38 +31206,38 @@ testModel: name: schema: *ref_168 rawValue: managedhsm - language: *ref_1077 + language: *ref_1089 type: schema: *ref_169 rawValue: Microsoft.KeyVault/managedhsms/privateLinkResources - language: *ref_1078 + language: *ref_1090 groupId: schema: *ref_162 - flattenedNames: *ref_1190 + flattenedNames: *ref_1202 rawValue: managedhsms - language: *ref_1189 + language: *ref_1201 id: schema: *ref_167 rawValue: /subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/sample-resource-group/providers/Microsoft.KeyVault/managedhsms/sample-mhsm/privateLinkResources/managedhsm - language: *ref_1076 + language: *ref_1088 requiredMembers: schema: *ref_422 elements: - schema: *ref_163 rawValue: default - flattenedNames: *ref_1192 - language: *ref_1191 + flattenedNames: *ref_1204 + language: *ref_1203 requiredZoneNames: schema: *ref_423 elements: - schema: *ref_164 rawValue: privatelink.managedhsm.azure.net - flattenedNames: *ref_1194 - language: *ref_1193 - language: *ref_1188 - language: *ref_1187 - operation: *ref_1195 - operationGroup: *ref_1196 + flattenedNames: *ref_1206 + language: *ref_1205 + language: *ref_1200 + language: *ref_1199 + operation: *ref_1207 + operationGroup: *ref_1208 - operationId: FirewallPolicies_Delete examples: - name: Delete Firewall Policy @@ -31069,33 +31245,33 @@ testModel: - exampleValue: schema: *ref_475 rawValue: subid - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_6 rawValue: rg1 - language: *ref_1197 + language: *ref_1209 parameter: *ref_618 - exampleValue: schema: *ref_6 rawValue: firewallPolicy - language: *ref_1198 + language: *ref_1210 parameter: *ref_619 - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1200 - parameter: *ref_1199 - operation: *ref_1201 - operationGroup: *ref_1202 + language: *ref_1212 + parameter: *ref_1211 + operation: *ref_1213 + operationGroup: *ref_1214 originalFile: '' responses: '200': {} '202': {} '204': {} - operation: *ref_1201 - operationGroup: *ref_1202 + operation: *ref_1213 + operationGroup: *ref_1214 - operationId: FirewallPolicies_Get examples: - name: Get FirewallPolicy @@ -31103,26 +31279,26 @@ testModel: - exampleValue: schema: *ref_475 rawValue: subid - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_6 rawValue: rg1 - language: *ref_1203 + language: *ref_1215 parameter: *ref_620 - exampleValue: schema: *ref_6 rawValue: firewallPolicy - language: *ref_1204 + language: *ref_1216 parameter: *ref_621 - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1206 - parameter: *ref_1205 - operation: *ref_1272 - operationGroup: *ref_1202 + language: *ref_1218 + parameter: *ref_1217 + operation: *ref_1284 + operationGroup: *ref_1214 originalFile: '' responses: '200': @@ -31133,53 +31309,53 @@ testModel: name: schema: *ref_216 rawValue: firewallPolicy - language: *ref_1268 + language: *ref_1280 type: schema: *ref_217 rawValue: Microsoft.Network/firewallPolicies - language: *ref_1269 + language: *ref_1281 dnsSettings: schema: *ref_305 - flattenedNames: *ref_1244 + flattenedNames: *ref_1256 parentsValue: {} properties: enableProxy: schema: *ref_285 rawValue: true - language: *ref_1242 + language: *ref_1254 requireProxyForNetworkRules: schema: *ref_286 rawValue: false - language: *ref_1243 + language: *ref_1255 servers: schema: *ref_432 elements: - schema: *ref_284 rawValue: 30.3.4.5 - language: *ref_1241 - language: *ref_1240 + language: *ref_1253 + language: *ref_1252 etag: schema: *ref_221 rawValue: w/\00000000-0000-0000-0000-000000000000\ - language: *ref_1208 + language: *ref_1220 firewalls: schema: *ref_426 elements: [] - flattenedNames: *ref_1223 - language: *ref_1222 + flattenedNames: *ref_1235 + language: *ref_1234 id: schema: *ref_215 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy - language: *ref_1267 + language: *ref_1279 insights: schema: *ref_301 - flattenedNames: *ref_1236 + flattenedNames: *ref_1248 parentsValue: {} properties: isEnabled: schema: *ref_280 rawValue: true - language: *ref_1229 + language: *ref_1241 logAnalyticsResources: schema: *ref_302 parentsValue: {} @@ -31191,8 +31367,8 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/defaultWorkspace - language: *ref_1218 - language: *ref_1235 + language: *ref_1230 + language: *ref_1247 workspaces: schema: *ref_430 elements: @@ -31202,7 +31378,7 @@ testModel: region: schema: *ref_282 rawValue: westus - language: *ref_1233 + language: *ref_1245 workspaceId: schema: *ref_230 parentsValue: {} @@ -31210,15 +31386,15 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/workspace1 - language: *ref_1218 - language: *ref_1234 + language: *ref_1230 + language: *ref_1246 - schema: *ref_303 parentsValue: {} properties: region: schema: *ref_282 rawValue: eastus - language: *ref_1233 + language: *ref_1245 workspaceId: schema: *ref_230 parentsValue: {} @@ -31226,18 +31402,18 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/workspace2 - language: *ref_1218 - language: *ref_1234 - language: *ref_1232 - language: *ref_1231 + language: *ref_1230 + language: *ref_1246 + language: *ref_1244 + language: *ref_1243 retentionDays: schema: *ref_281 rawValue: 100 - language: *ref_1230 - language: *ref_1228 + language: *ref_1242 + language: *ref_1240 intrusionDetection: schema: *ref_306 - flattenedNames: *ref_1258 + flattenedNames: *ref_1270 parentsValue: {} properties: configuration: @@ -31253,34 +31429,34 @@ testModel: name: schema: *ref_289 rawValue: bypassRule1 - language: *ref_1252 + language: *ref_1264 description: schema: *ref_290 rawValue: Rule 1 - language: *ref_1253 + language: *ref_1265 destinationAddresses: schema: *ref_435 elements: - schema: *ref_293 rawValue: 5.6.7.8 - language: *ref_1256 + language: *ref_1268 destinationPorts: schema: *ref_436 elements: - schema: *ref_294 rawValue: '*' - language: *ref_1257 + language: *ref_1269 sourceAddresses: schema: *ref_434 elements: - schema: *ref_292 rawValue: 1.2.3.4 - language: *ref_1255 + language: *ref_1267 protocol: schema: *ref_291 rawValue: TCP - language: *ref_1254 - language: *ref_1251 + language: *ref_1266 + language: *ref_1263 signatureOverrides: schema: *ref_433 elements: @@ -31290,49 +31466,49 @@ testModel: id: schema: *ref_288 rawValue: '2525004' - language: *ref_1249 + language: *ref_1261 mode: schema: *ref_287 rawValue: Deny - language: *ref_1250 - language: *ref_1248 - language: *ref_1247 + language: *ref_1262 + language: *ref_1260 + language: *ref_1259 mode: schema: *ref_287 rawValue: Alert - language: *ref_1246 - language: *ref_1245 + language: *ref_1258 + language: *ref_1257 location: schema: *ref_218 rawValue: West US - language: *ref_1270 + language: *ref_1282 provisioningState: schema: *ref_184 - flattenedNames: *ref_1221 + flattenedNames: *ref_1233 rawValue: Succeeded - language: *ref_1220 + language: *ref_1232 readinessProbe: schema: *ref_228 - flattenedNames: *ref_1216 + flattenedNames: *ref_1228 parentsValue: {} properties: disableProbe: schema: *ref_222 rawValue: false - language: *ref_1212 + language: *ref_1224 failureThreshold: schema: *ref_226 rawValue: 3 - language: *ref_1215 + language: *ref_1227 initialDelaySeconds: schema: *ref_223 rawValue: 30 - language: *ref_1213 + language: *ref_1225 periodSeconds: schema: *ref_224 rawValue: 10 - language: *ref_1214 - language: *ref_1211 + language: *ref_1226 + language: *ref_1223 ruleCollectionGroups: schema: *ref_425 elements: @@ -31342,22 +31518,22 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 - language: *ref_1218 - flattenedNames: *ref_1219 - language: *ref_1217 + language: *ref_1230 + flattenedNames: *ref_1231 + language: *ref_1229 sku: schema: *ref_312 - flattenedNames: *ref_1266 + flattenedNames: *ref_1278 parentsValue: {} properties: tier: schema: *ref_299 rawValue: Premium - language: *ref_1265 - language: *ref_1264 + language: *ref_1277 + language: *ref_1276 snat: schema: *ref_304 - flattenedNames: *ref_1239 + flattenedNames: *ref_1251 parentsValue: {} properties: privateRanges: @@ -31365,23 +31541,23 @@ testModel: elements: - schema: *ref_283 rawValue: IANAPrivateRanges - language: *ref_1238 - language: *ref_1237 + language: *ref_1250 + language: *ref_1249 startupProbe: schema: *ref_228 - flattenedNames: *ref_1210 + flattenedNames: *ref_1222 rawValue: null - language: *ref_1209 + language: *ref_1221 tags: schema: *ref_219 properties: key1: schema: *ref_6 rawValue: value1 - language: *ref_1271 + language: *ref_1283 threatIntelWhitelist: schema: *ref_300 - flattenedNames: *ref_1227 + flattenedNames: *ref_1239 parentsValue: {} properties: fqdns: @@ -31389,17 +31565,17 @@ testModel: elements: - schema: *ref_279 rawValue: '*.microsoft.com' - language: *ref_1226 + language: *ref_1238 ipAddresses: schema: *ref_428 elements: - schema: *ref_278 rawValue: 20.3.4.5 - language: *ref_1225 - language: *ref_1224 + language: *ref_1237 + language: *ref_1236 transportSecurity: schema: *ref_310 - flattenedNames: *ref_1263 + flattenedNames: *ref_1275 parentsValue: {} properties: certificateAuthority: @@ -31409,16 +31585,16 @@ testModel: name: schema: *ref_298 rawValue: clientcert - language: *ref_1262 + language: *ref_1274 keyVaultSecretId: schema: *ref_297 rawValue: https://kv/secret - language: *ref_1261 - language: *ref_1260 - language: *ref_1259 - language: *ref_1207 - operation: *ref_1272 - operationGroup: *ref_1202 + language: *ref_1273 + language: *ref_1272 + language: *ref_1271 + language: *ref_1219 + operation: *ref_1284 + operationGroup: *ref_1214 - operationId: FirewallPolicies_CreateOrUpdate examples: - name: Create FirewallPolicy @@ -31426,62 +31602,62 @@ testModel: - exampleValue: schema: *ref_475 rawValue: subid - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_6 rawValue: rg1 - language: *ref_1273 + language: *ref_1285 parameter: *ref_625 - exampleValue: schema: *ref_6 rawValue: firewallPolicy - language: *ref_1274 + language: *ref_1286 parameter: *ref_626 - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1276 - parameter: *ref_1275 + language: *ref_1288 + parameter: *ref_1287 - exampleValue: schema: *ref_214 parentsValue: {} properties: desiredStatusCode: schema: *ref_229 - flattenedNames: *ref_1279 + flattenedNames: *ref_1291 rawValue: 202 - language: *ref_1278 + language: *ref_1290 dnsSettings: schema: *ref_305 - flattenedNames: *ref_1244 + flattenedNames: *ref_1256 parentsValue: {} properties: enableProxy: schema: *ref_285 rawValue: true - language: *ref_1242 + language: *ref_1254 requireProxyForNetworkRules: schema: *ref_286 rawValue: false - language: *ref_1243 + language: *ref_1255 servers: schema: *ref_432 elements: - schema: *ref_284 rawValue: 30.3.4.5 - language: *ref_1241 - language: *ref_1240 + language: *ref_1253 + language: *ref_1252 insights: schema: *ref_301 - flattenedNames: *ref_1236 + flattenedNames: *ref_1248 parentsValue: {} properties: isEnabled: schema: *ref_280 rawValue: true - language: *ref_1229 + language: *ref_1241 logAnalyticsResources: schema: *ref_302 parentsValue: {} @@ -31493,8 +31669,8 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/defaultWorkspace - language: *ref_1218 - language: *ref_1235 + language: *ref_1230 + language: *ref_1247 workspaces: schema: *ref_430 elements: @@ -31504,7 +31680,7 @@ testModel: region: schema: *ref_282 rawValue: westus - language: *ref_1233 + language: *ref_1245 workspaceId: schema: *ref_230 parentsValue: {} @@ -31512,15 +31688,15 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/workspace1 - language: *ref_1218 - language: *ref_1234 + language: *ref_1230 + language: *ref_1246 - schema: *ref_303 parentsValue: {} properties: region: schema: *ref_282 rawValue: eastus - language: *ref_1233 + language: *ref_1245 workspaceId: schema: *ref_230 parentsValue: {} @@ -31528,18 +31704,18 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/workspace2 - language: *ref_1218 - language: *ref_1234 - language: *ref_1232 - language: *ref_1231 + language: *ref_1230 + language: *ref_1246 + language: *ref_1244 + language: *ref_1243 retentionDays: schema: *ref_281 rawValue: 100 - language: *ref_1230 - language: *ref_1228 + language: *ref_1242 + language: *ref_1240 intrusionDetection: schema: *ref_306 - flattenedNames: *ref_1258 + flattenedNames: *ref_1270 parentsValue: {} properties: configuration: @@ -31555,34 +31731,34 @@ testModel: name: schema: *ref_289 rawValue: bypassRule1 - language: *ref_1252 + language: *ref_1264 description: schema: *ref_290 rawValue: Rule 1 - language: *ref_1253 + language: *ref_1265 destinationAddresses: schema: *ref_435 elements: - schema: *ref_293 rawValue: 5.6.7.8 - language: *ref_1256 + language: *ref_1268 destinationPorts: schema: *ref_436 elements: - schema: *ref_294 rawValue: '*' - language: *ref_1257 + language: *ref_1269 sourceAddresses: schema: *ref_434 elements: - schema: *ref_292 rawValue: 1.2.3.4 - language: *ref_1255 + language: *ref_1267 protocol: schema: *ref_291 rawValue: TCP - language: *ref_1254 - language: *ref_1251 + language: *ref_1266 + language: *ref_1263 signatureOverrides: schema: *ref_433 elements: @@ -31592,57 +31768,57 @@ testModel: id: schema: *ref_288 rawValue: '2525004' - language: *ref_1249 + language: *ref_1261 mode: schema: *ref_287 rawValue: Deny - language: *ref_1250 - language: *ref_1248 - language: *ref_1247 + language: *ref_1262 + language: *ref_1260 + language: *ref_1259 mode: schema: *ref_287 rawValue: Alert - language: *ref_1246 - language: *ref_1245 + language: *ref_1258 + language: *ref_1257 location: schema: *ref_218 rawValue: West US - language: *ref_1270 + language: *ref_1282 readinessProbe: schema: *ref_228 - flattenedNames: *ref_1216 + flattenedNames: *ref_1228 parentsValue: {} properties: disableProbe: schema: *ref_222 rawValue: false - language: *ref_1212 + language: *ref_1224 failureThreshold: schema: *ref_226 rawValue: 3 - language: *ref_1215 + language: *ref_1227 initialDelaySeconds: schema: *ref_223 rawValue: 30 - language: *ref_1213 + language: *ref_1225 periodSeconds: schema: *ref_224 rawValue: 10 - language: *ref_1214 - language: *ref_1211 + language: *ref_1226 + language: *ref_1223 sku: schema: *ref_312 - flattenedNames: *ref_1266 + flattenedNames: *ref_1278 parentsValue: {} properties: tier: schema: *ref_299 rawValue: Premium - language: *ref_1265 - language: *ref_1264 + language: *ref_1277 + language: *ref_1276 snat: schema: *ref_304 - flattenedNames: *ref_1239 + flattenedNames: *ref_1251 parentsValue: {} properties: privateRanges: @@ -31650,23 +31826,23 @@ testModel: elements: - schema: *ref_283 rawValue: IANAPrivateRanges - language: *ref_1238 - language: *ref_1237 + language: *ref_1250 + language: *ref_1249 startupProbe: schema: *ref_228 - flattenedNames: *ref_1210 + flattenedNames: *ref_1222 rawValue: null - language: *ref_1209 + language: *ref_1221 tags: schema: *ref_219 properties: key1: schema: *ref_6 rawValue: value1 - language: *ref_1271 + language: *ref_1283 threatIntelWhitelist: schema: *ref_300 - flattenedNames: *ref_1227 + flattenedNames: *ref_1239 parentsValue: {} properties: fqdns: @@ -31674,17 +31850,17 @@ testModel: elements: - schema: *ref_279 rawValue: '*.microsoft.com' - language: *ref_1226 + language: *ref_1238 ipAddresses: schema: *ref_428 elements: - schema: *ref_278 rawValue: 20.3.4.5 - language: *ref_1225 - language: *ref_1224 + language: *ref_1237 + language: *ref_1236 transportSecurity: schema: *ref_310 - flattenedNames: *ref_1263 + flattenedNames: *ref_1275 parentsValue: {} properties: certificateAuthority: @@ -31694,17 +31870,17 @@ testModel: name: schema: *ref_298 rawValue: clientcert - language: *ref_1262 + language: *ref_1274 keyVaultSecretId: schema: *ref_297 rawValue: https://kv/secret - language: *ref_1261 - language: *ref_1260 - language: *ref_1259 - language: *ref_1277 + language: *ref_1273 + language: *ref_1272 + language: *ref_1271 + language: *ref_1289 parameter: *ref_623 - operation: *ref_1282 - operationGroup: *ref_1202 + operation: *ref_1294 + operationGroup: *ref_1214 originalFile: '' responses: '200': @@ -31715,53 +31891,53 @@ testModel: name: schema: *ref_216 rawValue: firewallPolicy - language: *ref_1268 + language: *ref_1280 type: schema: *ref_217 rawValue: Microsoft.Network/firewallPolicies - language: *ref_1269 + language: *ref_1281 dnsSettings: schema: *ref_305 - flattenedNames: *ref_1244 + flattenedNames: *ref_1256 parentsValue: {} properties: enableProxy: schema: *ref_285 rawValue: true - language: *ref_1242 + language: *ref_1254 requireProxyForNetworkRules: schema: *ref_286 rawValue: false - language: *ref_1243 + language: *ref_1255 servers: schema: *ref_432 elements: - schema: *ref_284 rawValue: 30.3.4.5 - language: *ref_1241 - language: *ref_1240 + language: *ref_1253 + language: *ref_1252 etag: schema: *ref_221 rawValue: w/\00000000-0000-0000-0000-000000000000\ - language: *ref_1208 + language: *ref_1220 firewalls: schema: *ref_426 elements: [] - flattenedNames: *ref_1223 - language: *ref_1222 + flattenedNames: *ref_1235 + language: *ref_1234 id: schema: *ref_215 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy - language: *ref_1267 + language: *ref_1279 insights: schema: *ref_301 - flattenedNames: *ref_1236 + flattenedNames: *ref_1248 parentsValue: {} properties: isEnabled: schema: *ref_280 rawValue: true - language: *ref_1229 + language: *ref_1241 logAnalyticsResources: schema: *ref_302 parentsValue: {} @@ -31773,8 +31949,8 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/defaultWorkspace - language: *ref_1218 - language: *ref_1235 + language: *ref_1230 + language: *ref_1247 workspaces: schema: *ref_430 elements: @@ -31784,7 +31960,7 @@ testModel: region: schema: *ref_282 rawValue: westus - language: *ref_1233 + language: *ref_1245 workspaceId: schema: *ref_230 parentsValue: {} @@ -31792,15 +31968,15 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/workspace1 - language: *ref_1218 - language: *ref_1234 + language: *ref_1230 + language: *ref_1246 - schema: *ref_303 parentsValue: {} properties: region: schema: *ref_282 rawValue: eastus - language: *ref_1233 + language: *ref_1245 workspaceId: schema: *ref_230 parentsValue: {} @@ -31808,18 +31984,18 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/workspace2 - language: *ref_1218 - language: *ref_1234 - language: *ref_1232 - language: *ref_1231 + language: *ref_1230 + language: *ref_1246 + language: *ref_1244 + language: *ref_1243 retentionDays: schema: *ref_281 rawValue: 100 - language: *ref_1230 - language: *ref_1228 + language: *ref_1242 + language: *ref_1240 intrusionDetection: schema: *ref_306 - flattenedNames: *ref_1258 + flattenedNames: *ref_1270 parentsValue: {} properties: configuration: @@ -31835,34 +32011,34 @@ testModel: name: schema: *ref_289 rawValue: bypassRule1 - language: *ref_1252 + language: *ref_1264 description: schema: *ref_290 rawValue: Rule 1 - language: *ref_1253 + language: *ref_1265 destinationAddresses: schema: *ref_435 elements: - schema: *ref_293 rawValue: 5.6.7.8 - language: *ref_1256 + language: *ref_1268 destinationPorts: schema: *ref_436 elements: - schema: *ref_294 rawValue: '*' - language: *ref_1257 + language: *ref_1269 sourceAddresses: schema: *ref_434 elements: - schema: *ref_292 rawValue: 1.2.3.4 - language: *ref_1255 + language: *ref_1267 protocol: schema: *ref_291 rawValue: TCP - language: *ref_1254 - language: *ref_1251 + language: *ref_1266 + language: *ref_1263 signatureOverrides: schema: *ref_433 elements: @@ -31872,49 +32048,49 @@ testModel: id: schema: *ref_288 rawValue: '2525004' - language: *ref_1249 + language: *ref_1261 mode: schema: *ref_287 rawValue: Deny - language: *ref_1250 - language: *ref_1248 - language: *ref_1247 + language: *ref_1262 + language: *ref_1260 + language: *ref_1259 mode: schema: *ref_287 rawValue: Alert - language: *ref_1246 - language: *ref_1245 + language: *ref_1258 + language: *ref_1257 location: schema: *ref_218 rawValue: West US - language: *ref_1270 + language: *ref_1282 provisioningState: schema: *ref_184 - flattenedNames: *ref_1221 + flattenedNames: *ref_1233 rawValue: Succeeded - language: *ref_1220 + language: *ref_1232 readinessProbe: schema: *ref_228 - flattenedNames: *ref_1216 + flattenedNames: *ref_1228 parentsValue: {} properties: disableProbe: schema: *ref_222 rawValue: false - language: *ref_1212 + language: *ref_1224 failureThreshold: schema: *ref_226 rawValue: 3 - language: *ref_1215 + language: *ref_1227 initialDelaySeconds: schema: *ref_223 rawValue: 30 - language: *ref_1213 + language: *ref_1225 periodSeconds: schema: *ref_224 rawValue: 10 - language: *ref_1214 - language: *ref_1211 + language: *ref_1226 + language: *ref_1223 ruleCollectionGroups: schema: *ref_425 elements: @@ -31924,29 +32100,29 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 - language: *ref_1218 + language: *ref_1230 - schema: *ref_230 parentsValue: {} properties: id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup2 - language: *ref_1218 - flattenedNames: *ref_1219 - language: *ref_1217 + language: *ref_1230 + flattenedNames: *ref_1231 + language: *ref_1229 sku: schema: *ref_312 - flattenedNames: *ref_1266 + flattenedNames: *ref_1278 parentsValue: {} properties: tier: schema: *ref_299 rawValue: Premium - language: *ref_1265 - language: *ref_1264 + language: *ref_1277 + language: *ref_1276 snat: schema: *ref_304 - flattenedNames: *ref_1239 + flattenedNames: *ref_1251 parentsValue: {} properties: privateRanges: @@ -31954,23 +32130,23 @@ testModel: elements: - schema: *ref_283 rawValue: IANAPrivateRanges - language: *ref_1238 - language: *ref_1237 + language: *ref_1250 + language: *ref_1249 startupProbe: schema: *ref_228 - flattenedNames: *ref_1210 + flattenedNames: *ref_1222 rawValue: null - language: *ref_1209 + language: *ref_1221 tags: schema: *ref_219 properties: key1: schema: *ref_6 rawValue: value1 - language: *ref_1271 + language: *ref_1283 threatIntelWhitelist: schema: *ref_300 - flattenedNames: *ref_1227 + flattenedNames: *ref_1239 parentsValue: {} properties: fqdns: @@ -31978,17 +32154,17 @@ testModel: elements: - schema: *ref_279 rawValue: '*.microsoft.com' - language: *ref_1226 + language: *ref_1238 ipAddresses: schema: *ref_428 elements: - schema: *ref_278 rawValue: 20.3.4.5 - language: *ref_1225 - language: *ref_1224 + language: *ref_1237 + language: *ref_1236 transportSecurity: schema: *ref_310 - flattenedNames: *ref_1263 + flattenedNames: *ref_1275 parentsValue: {} properties: certificateAuthority: @@ -31998,14 +32174,14 @@ testModel: name: schema: *ref_298 rawValue: clientcert - language: *ref_1262 + language: *ref_1274 keyVaultSecretId: schema: *ref_297 rawValue: https://kv/secret - language: *ref_1261 - language: *ref_1260 - language: *ref_1259 - language: *ref_1280 + language: *ref_1273 + language: *ref_1272 + language: *ref_1271 + language: *ref_1292 '201': body: schema: *ref_214 @@ -32014,53 +32190,53 @@ testModel: name: schema: *ref_216 rawValue: firewallPolicy - language: *ref_1268 + language: *ref_1280 type: schema: *ref_217 rawValue: Microsoft.Network/firewallPolicies - language: *ref_1269 + language: *ref_1281 dnsSettings: schema: *ref_305 - flattenedNames: *ref_1244 + flattenedNames: *ref_1256 parentsValue: {} properties: enableProxy: schema: *ref_285 rawValue: true - language: *ref_1242 + language: *ref_1254 requireProxyForNetworkRules: schema: *ref_286 rawValue: false - language: *ref_1243 + language: *ref_1255 servers: schema: *ref_432 elements: - schema: *ref_284 rawValue: 30.3.4.5 - language: *ref_1241 - language: *ref_1240 + language: *ref_1253 + language: *ref_1252 etag: schema: *ref_221 rawValue: w/\00000000-0000-0000-0000-000000000000\ - language: *ref_1208 + language: *ref_1220 firewalls: schema: *ref_426 elements: [] - flattenedNames: *ref_1223 - language: *ref_1222 + flattenedNames: *ref_1235 + language: *ref_1234 id: schema: *ref_215 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy - language: *ref_1267 + language: *ref_1279 insights: schema: *ref_301 - flattenedNames: *ref_1236 + flattenedNames: *ref_1248 parentsValue: {} properties: isEnabled: schema: *ref_280 rawValue: true - language: *ref_1229 + language: *ref_1241 logAnalyticsResources: schema: *ref_302 parentsValue: {} @@ -32072,8 +32248,8 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/defaultWorkspace - language: *ref_1218 - language: *ref_1235 + language: *ref_1230 + language: *ref_1247 workspaces: schema: *ref_430 elements: @@ -32083,7 +32259,7 @@ testModel: region: schema: *ref_282 rawValue: westus - language: *ref_1233 + language: *ref_1245 workspaceId: schema: *ref_230 parentsValue: {} @@ -32091,15 +32267,15 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/workspace1 - language: *ref_1218 - language: *ref_1234 + language: *ref_1230 + language: *ref_1246 - schema: *ref_303 parentsValue: {} properties: region: schema: *ref_282 rawValue: eastus - language: *ref_1233 + language: *ref_1245 workspaceId: schema: *ref_230 parentsValue: {} @@ -32107,18 +32283,18 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/workspace2 - language: *ref_1218 - language: *ref_1234 - language: *ref_1232 - language: *ref_1231 + language: *ref_1230 + language: *ref_1246 + language: *ref_1244 + language: *ref_1243 retentionDays: schema: *ref_281 rawValue: 100 - language: *ref_1230 - language: *ref_1228 + language: *ref_1242 + language: *ref_1240 intrusionDetection: schema: *ref_306 - flattenedNames: *ref_1258 + flattenedNames: *ref_1270 parentsValue: {} properties: configuration: @@ -32134,34 +32310,34 @@ testModel: name: schema: *ref_289 rawValue: bypassRule1 - language: *ref_1252 + language: *ref_1264 description: schema: *ref_290 rawValue: Rule 1 - language: *ref_1253 + language: *ref_1265 destinationAddresses: schema: *ref_435 elements: - schema: *ref_293 rawValue: 5.6.7.8 - language: *ref_1256 + language: *ref_1268 destinationPorts: schema: *ref_436 elements: - schema: *ref_294 rawValue: '*' - language: *ref_1257 + language: *ref_1269 sourceAddresses: schema: *ref_434 elements: - schema: *ref_292 rawValue: 1.2.3.4 - language: *ref_1255 + language: *ref_1267 protocol: schema: *ref_291 rawValue: TCP - language: *ref_1254 - language: *ref_1251 + language: *ref_1266 + language: *ref_1263 signatureOverrides: schema: *ref_433 elements: @@ -32171,27 +32347,27 @@ testModel: id: schema: *ref_288 rawValue: '2525004' - language: *ref_1249 + language: *ref_1261 mode: schema: *ref_287 rawValue: Deny - language: *ref_1250 - language: *ref_1248 - language: *ref_1247 + language: *ref_1262 + language: *ref_1260 + language: *ref_1259 mode: schema: *ref_287 rawValue: Alert - language: *ref_1246 - language: *ref_1245 + language: *ref_1258 + language: *ref_1257 location: schema: *ref_218 rawValue: West US - language: *ref_1270 + language: *ref_1282 provisioningState: schema: *ref_184 - flattenedNames: *ref_1221 + flattenedNames: *ref_1233 rawValue: Succeeded - language: *ref_1220 + language: *ref_1232 ruleCollectionGroups: schema: *ref_425 elements: @@ -32201,29 +32377,29 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 - language: *ref_1218 + language: *ref_1230 - schema: *ref_230 parentsValue: {} properties: id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup2 - language: *ref_1218 - flattenedNames: *ref_1219 - language: *ref_1217 + language: *ref_1230 + flattenedNames: *ref_1231 + language: *ref_1229 sku: schema: *ref_312 - flattenedNames: *ref_1266 + flattenedNames: *ref_1278 parentsValue: {} properties: tier: schema: *ref_299 rawValue: Premium - language: *ref_1265 - language: *ref_1264 + language: *ref_1277 + language: *ref_1276 snat: schema: *ref_304 - flattenedNames: *ref_1239 + flattenedNames: *ref_1251 parentsValue: {} properties: privateRanges: @@ -32231,18 +32407,18 @@ testModel: elements: - schema: *ref_283 rawValue: IANAPrivateRanges - language: *ref_1238 - language: *ref_1237 + language: *ref_1250 + language: *ref_1249 tags: schema: *ref_219 properties: key1: schema: *ref_6 rawValue: value1 - language: *ref_1271 + language: *ref_1283 threatIntelWhitelist: schema: *ref_300 - flattenedNames: *ref_1227 + flattenedNames: *ref_1239 parentsValue: {} properties: fqdns: @@ -32250,17 +32426,17 @@ testModel: elements: - schema: *ref_279 rawValue: '*.microsoft.com' - language: *ref_1226 + language: *ref_1238 ipAddresses: schema: *ref_428 elements: - schema: *ref_278 rawValue: 20.3.4.5 - language: *ref_1225 - language: *ref_1224 + language: *ref_1237 + language: *ref_1236 transportSecurity: schema: *ref_310 - flattenedNames: *ref_1263 + flattenedNames: *ref_1275 parentsValue: {} properties: certificateAuthority: @@ -32270,75 +32446,75 @@ testModel: name: schema: *ref_298 rawValue: clientcert - language: *ref_1262 + language: *ref_1274 keyVaultSecretId: schema: *ref_297 rawValue: https://kv/secret - language: *ref_1261 - language: *ref_1260 - language: *ref_1259 - language: *ref_1281 + language: *ref_1273 + language: *ref_1272 + language: *ref_1271 + language: *ref_1293 - name: Create FirewallPolicy with different values clientParameters: - exampleValue: schema: *ref_475 rawValue: subid - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_6 rawValue: rg1 - language: *ref_1273 + language: *ref_1285 parameter: *ref_625 - exampleValue: schema: *ref_6 rawValue: firewallPolicy - language: *ref_1274 + language: *ref_1286 parameter: *ref_626 - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1276 - parameter: *ref_1275 + language: *ref_1288 + parameter: *ref_1287 - exampleValue: schema: *ref_214 parentsValue: {} properties: desiredStatusCode: schema: *ref_229 - flattenedNames: *ref_1279 + flattenedNames: *ref_1291 rawValue: 600 - language: *ref_1278 + language: *ref_1290 dnsSettings: schema: *ref_305 - flattenedNames: *ref_1244 + flattenedNames: *ref_1256 parentsValue: {} properties: enableProxy: schema: *ref_285 rawValue: true - language: *ref_1242 + language: *ref_1254 requireProxyForNetworkRules: schema: *ref_286 rawValue: false - language: *ref_1243 + language: *ref_1255 servers: schema: *ref_432 elements: - schema: *ref_284 rawValue: 30.3.4.5 - language: *ref_1241 - language: *ref_1240 + language: *ref_1253 + language: *ref_1252 insights: schema: *ref_301 - flattenedNames: *ref_1236 + flattenedNames: *ref_1248 parentsValue: {} properties: isEnabled: schema: *ref_280 rawValue: true - language: *ref_1229 + language: *ref_1241 logAnalyticsResources: schema: *ref_302 parentsValue: {} @@ -32350,8 +32526,8 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/defaultWorkspace - language: *ref_1218 - language: *ref_1235 + language: *ref_1230 + language: *ref_1247 workspaces: schema: *ref_430 elements: @@ -32361,7 +32537,7 @@ testModel: region: schema: *ref_282 rawValue: westus - language: *ref_1233 + language: *ref_1245 workspaceId: schema: *ref_230 parentsValue: {} @@ -32369,15 +32545,15 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/workspace1 - language: *ref_1218 - language: *ref_1234 + language: *ref_1230 + language: *ref_1246 - schema: *ref_303 parentsValue: {} properties: region: schema: *ref_282 rawValue: eastus - language: *ref_1233 + language: *ref_1245 workspaceId: schema: *ref_230 parentsValue: {} @@ -32385,18 +32561,18 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/workspace2 - language: *ref_1218 - language: *ref_1234 - language: *ref_1232 - language: *ref_1231 + language: *ref_1230 + language: *ref_1246 + language: *ref_1244 + language: *ref_1243 retentionDays: schema: *ref_281 rawValue: 100 - language: *ref_1230 - language: *ref_1228 + language: *ref_1242 + language: *ref_1240 intrusionDetection: schema: *ref_306 - flattenedNames: *ref_1258 + flattenedNames: *ref_1270 parentsValue: {} properties: configuration: @@ -32412,34 +32588,34 @@ testModel: name: schema: *ref_289 rawValue: bypassRule1 - language: *ref_1252 + language: *ref_1264 description: schema: *ref_290 rawValue: Rule 1 - language: *ref_1253 + language: *ref_1265 destinationAddresses: schema: *ref_435 elements: - schema: *ref_293 rawValue: 5.6.7.8 - language: *ref_1256 + language: *ref_1268 destinationPorts: schema: *ref_436 elements: - schema: *ref_294 rawValue: '*' - language: *ref_1257 + language: *ref_1269 sourceAddresses: schema: *ref_434 elements: - schema: *ref_292 rawValue: 1.2.3.4 - language: *ref_1255 + language: *ref_1267 protocol: schema: *ref_291 rawValue: TCP - language: *ref_1254 - language: *ref_1251 + language: *ref_1266 + language: *ref_1263 signatureOverrides: schema: *ref_433 elements: @@ -32449,57 +32625,57 @@ testModel: id: schema: *ref_288 rawValue: '2525004' - language: *ref_1249 + language: *ref_1261 mode: schema: *ref_287 rawValue: Deny - language: *ref_1250 - language: *ref_1248 - language: *ref_1247 + language: *ref_1262 + language: *ref_1260 + language: *ref_1259 mode: schema: *ref_287 rawValue: Alert - language: *ref_1246 - language: *ref_1245 + language: *ref_1258 + language: *ref_1257 location: schema: *ref_218 rawValue: West US - language: *ref_1270 + language: *ref_1282 readinessProbe: schema: *ref_228 - flattenedNames: *ref_1216 + flattenedNames: *ref_1228 parentsValue: {} properties: disableProbe: schema: *ref_222 rawValue: false - language: *ref_1212 + language: *ref_1224 failureThreshold: schema: *ref_226 rawValue: 3 - language: *ref_1215 + language: *ref_1227 initialDelaySeconds: schema: *ref_223 rawValue: 30 - language: *ref_1213 + language: *ref_1225 periodSeconds: schema: *ref_224 rawValue: 10 - language: *ref_1214 - language: *ref_1211 + language: *ref_1226 + language: *ref_1223 sku: schema: *ref_312 - flattenedNames: *ref_1266 + flattenedNames: *ref_1278 parentsValue: {} properties: tier: schema: *ref_299 rawValue: Premium - language: *ref_1265 - language: *ref_1264 + language: *ref_1277 + language: *ref_1276 snat: schema: *ref_304 - flattenedNames: *ref_1239 + flattenedNames: *ref_1251 parentsValue: {} properties: privateRanges: @@ -32507,23 +32683,23 @@ testModel: elements: - schema: *ref_283 rawValue: IANAPrivateRanges - language: *ref_1238 - language: *ref_1237 + language: *ref_1250 + language: *ref_1249 startupProbe: schema: *ref_228 - flattenedNames: *ref_1210 + flattenedNames: *ref_1222 rawValue: null - language: *ref_1209 + language: *ref_1221 tags: schema: *ref_219 properties: key1: schema: *ref_6 rawValue: value1 - language: *ref_1271 + language: *ref_1283 threatIntelWhitelist: schema: *ref_300 - flattenedNames: *ref_1227 + flattenedNames: *ref_1239 parentsValue: {} properties: fqdns: @@ -32531,17 +32707,17 @@ testModel: elements: - schema: *ref_279 rawValue: '*.microsoft.com' - language: *ref_1226 + language: *ref_1238 ipAddresses: schema: *ref_428 elements: - schema: *ref_278 rawValue: 20.3.4.5 - language: *ref_1225 - language: *ref_1224 + language: *ref_1237 + language: *ref_1236 transportSecurity: schema: *ref_310 - flattenedNames: *ref_1263 + flattenedNames: *ref_1275 parentsValue: {} properties: certificateAuthority: @@ -32551,17 +32727,17 @@ testModel: name: schema: *ref_298 rawValue: clientcert - language: *ref_1262 + language: *ref_1274 keyVaultSecretId: schema: *ref_297 rawValue: https://kv/secret - language: *ref_1261 - language: *ref_1260 - language: *ref_1259 - language: *ref_1277 + language: *ref_1273 + language: *ref_1272 + language: *ref_1271 + language: *ref_1289 parameter: *ref_623 - operation: *ref_1282 - operationGroup: *ref_1202 + operation: *ref_1294 + operationGroup: *ref_1214 originalFile: '' responses: '200': @@ -32572,53 +32748,53 @@ testModel: name: schema: *ref_216 rawValue: firewallPolicy - language: *ref_1268 + language: *ref_1280 type: schema: *ref_217 rawValue: Microsoft.Network/firewallPolicies - language: *ref_1269 + language: *ref_1281 dnsSettings: schema: *ref_305 - flattenedNames: *ref_1244 + flattenedNames: *ref_1256 parentsValue: {} properties: enableProxy: schema: *ref_285 rawValue: true - language: *ref_1242 + language: *ref_1254 requireProxyForNetworkRules: schema: *ref_286 rawValue: false - language: *ref_1243 + language: *ref_1255 servers: schema: *ref_432 elements: - schema: *ref_284 rawValue: 30.3.4.5 - language: *ref_1241 - language: *ref_1240 + language: *ref_1253 + language: *ref_1252 etag: schema: *ref_221 rawValue: w/\00000000-0000-0000-0000-000000000000\ - language: *ref_1208 + language: *ref_1220 firewalls: schema: *ref_426 elements: [] - flattenedNames: *ref_1223 - language: *ref_1222 + flattenedNames: *ref_1235 + language: *ref_1234 id: schema: *ref_215 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy - language: *ref_1267 + language: *ref_1279 insights: schema: *ref_301 - flattenedNames: *ref_1236 + flattenedNames: *ref_1248 parentsValue: {} properties: isEnabled: schema: *ref_280 rawValue: true - language: *ref_1229 + language: *ref_1241 logAnalyticsResources: schema: *ref_302 parentsValue: {} @@ -32630,8 +32806,8 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/defaultWorkspace - language: *ref_1218 - language: *ref_1235 + language: *ref_1230 + language: *ref_1247 workspaces: schema: *ref_430 elements: @@ -32641,7 +32817,7 @@ testModel: region: schema: *ref_282 rawValue: westus - language: *ref_1233 + language: *ref_1245 workspaceId: schema: *ref_230 parentsValue: {} @@ -32649,15 +32825,15 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/workspace1 - language: *ref_1218 - language: *ref_1234 + language: *ref_1230 + language: *ref_1246 - schema: *ref_303 parentsValue: {} properties: region: schema: *ref_282 rawValue: eastus - language: *ref_1233 + language: *ref_1245 workspaceId: schema: *ref_230 parentsValue: {} @@ -32665,18 +32841,18 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/workspace2 - language: *ref_1218 - language: *ref_1234 - language: *ref_1232 - language: *ref_1231 + language: *ref_1230 + language: *ref_1246 + language: *ref_1244 + language: *ref_1243 retentionDays: schema: *ref_281 rawValue: 100 - language: *ref_1230 - language: *ref_1228 + language: *ref_1242 + language: *ref_1240 intrusionDetection: schema: *ref_306 - flattenedNames: *ref_1258 + flattenedNames: *ref_1270 parentsValue: {} properties: configuration: @@ -32692,34 +32868,34 @@ testModel: name: schema: *ref_289 rawValue: bypassRule1 - language: *ref_1252 + language: *ref_1264 description: schema: *ref_290 rawValue: Rule 1 - language: *ref_1253 + language: *ref_1265 destinationAddresses: schema: *ref_435 elements: - schema: *ref_293 rawValue: 5.6.7.8 - language: *ref_1256 + language: *ref_1268 destinationPorts: schema: *ref_436 elements: - schema: *ref_294 rawValue: '*' - language: *ref_1257 + language: *ref_1269 sourceAddresses: schema: *ref_434 elements: - schema: *ref_292 rawValue: 1.2.3.4 - language: *ref_1255 + language: *ref_1267 protocol: schema: *ref_291 rawValue: TCP - language: *ref_1254 - language: *ref_1251 + language: *ref_1266 + language: *ref_1263 signatureOverrides: schema: *ref_433 elements: @@ -32729,326 +32905,49 @@ testModel: id: schema: *ref_288 rawValue: '2525004' - language: *ref_1249 + language: *ref_1261 mode: schema: *ref_287 rawValue: Deny - language: *ref_1250 - language: *ref_1248 - language: *ref_1247 + language: *ref_1262 + language: *ref_1260 + language: *ref_1259 mode: schema: *ref_287 rawValue: Alert - language: *ref_1246 - language: *ref_1245 + language: *ref_1258 + language: *ref_1257 location: schema: *ref_218 rawValue: West US - language: *ref_1270 + language: *ref_1282 provisioningState: schema: *ref_184 - flattenedNames: *ref_1221 + flattenedNames: *ref_1233 rawValue: Succeeded - language: *ref_1220 + language: *ref_1232 readinessProbe: schema: *ref_228 - flattenedNames: *ref_1216 + flattenedNames: *ref_1228 parentsValue: {} properties: disableProbe: schema: *ref_222 rawValue: false - language: *ref_1212 + language: *ref_1224 failureThreshold: schema: *ref_226 rawValue: 3 - language: *ref_1215 + language: *ref_1227 initialDelaySeconds: schema: *ref_223 rawValue: 30 - language: *ref_1213 + language: *ref_1225 periodSeconds: schema: *ref_224 rawValue: 10 - language: *ref_1214 - language: *ref_1211 - ruleCollectionGroups: - schema: *ref_425 - elements: - - schema: *ref_230 - parentsValue: {} - properties: - id: - schema: *ref_277 - rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 - language: *ref_1218 - - schema: *ref_230 - parentsValue: {} - properties: - id: - schema: *ref_277 - rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup2 - language: *ref_1218 - flattenedNames: *ref_1219 - language: *ref_1217 - sku: - schema: *ref_312 - flattenedNames: *ref_1266 - parentsValue: {} - properties: - tier: - schema: *ref_299 - rawValue: Premium - language: *ref_1265 - language: *ref_1264 - snat: - schema: *ref_304 - flattenedNames: *ref_1239 - parentsValue: {} - properties: - privateRanges: - schema: *ref_431 - elements: - - schema: *ref_283 - rawValue: IANAPrivateRanges - language: *ref_1238 - language: *ref_1237 - startupProbe: - schema: *ref_228 - flattenedNames: *ref_1210 - rawValue: null - language: *ref_1209 - tags: - schema: *ref_219 - properties: - key1: - schema: *ref_6 - rawValue: value1 - language: *ref_1271 - threatIntelWhitelist: - schema: *ref_300 - flattenedNames: *ref_1227 - parentsValue: {} - properties: - fqdns: - schema: *ref_429 - elements: - - schema: *ref_279 - rawValue: '*.microsoft.com' language: *ref_1226 - ipAddresses: - schema: *ref_428 - elements: - - schema: *ref_278 - rawValue: 20.3.4.5 - language: *ref_1225 - language: *ref_1224 - transportSecurity: - schema: *ref_310 - flattenedNames: *ref_1263 - parentsValue: {} - properties: - certificateAuthority: - schema: *ref_311 - parentsValue: {} - properties: - name: - schema: *ref_298 - rawValue: clientcert - language: *ref_1262 - keyVaultSecretId: - schema: *ref_297 - rawValue: https://kv/secret - language: *ref_1261 - language: *ref_1260 - language: *ref_1259 - language: *ref_1280 - '201': - body: - schema: *ref_214 - parentsValue: {} - properties: - name: - schema: *ref_216 - rawValue: firewallPolicy - language: *ref_1268 - type: - schema: *ref_217 - rawValue: Microsoft.Network/firewallPolicies - language: *ref_1269 - dnsSettings: - schema: *ref_305 - flattenedNames: *ref_1244 - parentsValue: {} - properties: - enableProxy: - schema: *ref_285 - rawValue: true - language: *ref_1242 - requireProxyForNetworkRules: - schema: *ref_286 - rawValue: false - language: *ref_1243 - servers: - schema: *ref_432 - elements: - - schema: *ref_284 - rawValue: 30.3.4.5 - language: *ref_1241 - language: *ref_1240 - etag: - schema: *ref_221 - rawValue: w/\00000000-0000-0000-0000-000000000000\ - language: *ref_1208 - firewalls: - schema: *ref_426 - elements: [] - flattenedNames: *ref_1223 - language: *ref_1222 - id: - schema: *ref_215 - rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy - language: *ref_1267 - insights: - schema: *ref_301 - flattenedNames: *ref_1236 - parentsValue: {} - properties: - isEnabled: - schema: *ref_280 - rawValue: true - language: *ref_1229 - logAnalyticsResources: - schema: *ref_302 - parentsValue: {} - properties: - defaultWorkspaceId: - schema: *ref_230 - parentsValue: {} - properties: - id: - schema: *ref_277 - rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/defaultWorkspace - language: *ref_1218 - language: *ref_1235 - workspaces: - schema: *ref_430 - elements: - - schema: *ref_303 - parentsValue: {} - properties: - region: - schema: *ref_282 - rawValue: westus - language: *ref_1233 - workspaceId: - schema: *ref_230 - parentsValue: {} - properties: - id: - schema: *ref_277 - rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/workspace1 - language: *ref_1218 - language: *ref_1234 - - schema: *ref_303 - parentsValue: {} - properties: - region: - schema: *ref_282 - rawValue: eastus - language: *ref_1233 - workspaceId: - schema: *ref_230 - parentsValue: {} - properties: - id: - schema: *ref_277 - rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/workspace2 - language: *ref_1218 - language: *ref_1234 - language: *ref_1232 - language: *ref_1231 - retentionDays: - schema: *ref_281 - rawValue: 100 - language: *ref_1230 - language: *ref_1228 - intrusionDetection: - schema: *ref_306 - flattenedNames: *ref_1258 - parentsValue: {} - properties: - configuration: - schema: *ref_307 - parentsValue: {} - properties: - bypassTrafficSettings: - schema: *ref_439 - elements: - - schema: *ref_309 - parentsValue: {} - properties: - name: - schema: *ref_289 - rawValue: bypassRule1 - language: *ref_1252 - description: - schema: *ref_290 - rawValue: Rule 1 - language: *ref_1253 - destinationAddresses: - schema: *ref_435 - elements: - - schema: *ref_293 - rawValue: 5.6.7.8 - language: *ref_1256 - destinationPorts: - schema: *ref_436 - elements: - - schema: *ref_294 - rawValue: '*' - language: *ref_1257 - sourceAddresses: - schema: *ref_434 - elements: - - schema: *ref_292 - rawValue: 1.2.3.4 - language: *ref_1255 - protocol: - schema: *ref_291 - rawValue: TCP - language: *ref_1254 - language: *ref_1251 - signatureOverrides: - schema: *ref_433 - elements: - - schema: *ref_308 - parentsValue: {} - properties: - id: - schema: *ref_288 - rawValue: '2525004' - language: *ref_1249 - mode: - schema: *ref_287 - rawValue: Deny - language: *ref_1250 - language: *ref_1248 - language: *ref_1247 - mode: - schema: *ref_287 - rawValue: Alert - language: *ref_1246 - language: *ref_1245 - location: - schema: *ref_218 - rawValue: West US - language: *ref_1270 - provisioningState: - schema: *ref_184 - flattenedNames: *ref_1221 - rawValue: Succeeded - language: *ref_1220 + language: *ref_1223 ruleCollectionGroups: schema: *ref_425 elements: @@ -33058,29 +32957,29 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 - language: *ref_1218 + language: *ref_1230 - schema: *ref_230 parentsValue: {} properties: id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup2 - language: *ref_1218 - flattenedNames: *ref_1219 - language: *ref_1217 + language: *ref_1230 + flattenedNames: *ref_1231 + language: *ref_1229 sku: schema: *ref_312 - flattenedNames: *ref_1266 + flattenedNames: *ref_1278 parentsValue: {} properties: tier: schema: *ref_299 rawValue: Premium - language: *ref_1265 - language: *ref_1264 + language: *ref_1277 + language: *ref_1276 snat: schema: *ref_304 - flattenedNames: *ref_1239 + flattenedNames: *ref_1251 parentsValue: {} properties: privateRanges: @@ -33088,18 +32987,295 @@ testModel: elements: - schema: *ref_283 rawValue: IANAPrivateRanges - language: *ref_1238 - language: *ref_1237 + language: *ref_1250 + language: *ref_1249 + startupProbe: + schema: *ref_228 + flattenedNames: *ref_1222 + rawValue: null + language: *ref_1221 tags: schema: *ref_219 properties: key1: schema: *ref_6 rawValue: value1 + language: *ref_1283 + threatIntelWhitelist: + schema: *ref_300 + flattenedNames: *ref_1239 + parentsValue: {} + properties: + fqdns: + schema: *ref_429 + elements: + - schema: *ref_279 + rawValue: '*.microsoft.com' + language: *ref_1238 + ipAddresses: + schema: *ref_428 + elements: + - schema: *ref_278 + rawValue: 20.3.4.5 + language: *ref_1237 + language: *ref_1236 + transportSecurity: + schema: *ref_310 + flattenedNames: *ref_1275 + parentsValue: {} + properties: + certificateAuthority: + schema: *ref_311 + parentsValue: {} + properties: + name: + schema: *ref_298 + rawValue: clientcert + language: *ref_1274 + keyVaultSecretId: + schema: *ref_297 + rawValue: https://kv/secret + language: *ref_1273 + language: *ref_1272 language: *ref_1271 + language: *ref_1292 + '201': + body: + schema: *ref_214 + parentsValue: {} + properties: + name: + schema: *ref_216 + rawValue: firewallPolicy + language: *ref_1280 + type: + schema: *ref_217 + rawValue: Microsoft.Network/firewallPolicies + language: *ref_1281 + dnsSettings: + schema: *ref_305 + flattenedNames: *ref_1256 + parentsValue: {} + properties: + enableProxy: + schema: *ref_285 + rawValue: true + language: *ref_1254 + requireProxyForNetworkRules: + schema: *ref_286 + rawValue: false + language: *ref_1255 + servers: + schema: *ref_432 + elements: + - schema: *ref_284 + rawValue: 30.3.4.5 + language: *ref_1253 + language: *ref_1252 + etag: + schema: *ref_221 + rawValue: w/\00000000-0000-0000-0000-000000000000\ + language: *ref_1220 + firewalls: + schema: *ref_426 + elements: [] + flattenedNames: *ref_1235 + language: *ref_1234 + id: + schema: *ref_215 + rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy + language: *ref_1279 + insights: + schema: *ref_301 + flattenedNames: *ref_1248 + parentsValue: {} + properties: + isEnabled: + schema: *ref_280 + rawValue: true + language: *ref_1241 + logAnalyticsResources: + schema: *ref_302 + parentsValue: {} + properties: + defaultWorkspaceId: + schema: *ref_230 + parentsValue: {} + properties: + id: + schema: *ref_277 + rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/defaultWorkspace + language: *ref_1230 + language: *ref_1247 + workspaces: + schema: *ref_430 + elements: + - schema: *ref_303 + parentsValue: {} + properties: + region: + schema: *ref_282 + rawValue: westus + language: *ref_1245 + workspaceId: + schema: *ref_230 + parentsValue: {} + properties: + id: + schema: *ref_277 + rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/workspace1 + language: *ref_1230 + language: *ref_1246 + - schema: *ref_303 + parentsValue: {} + properties: + region: + schema: *ref_282 + rawValue: eastus + language: *ref_1245 + workspaceId: + schema: *ref_230 + parentsValue: {} + properties: + id: + schema: *ref_277 + rawValue: /subscriptions/subid/resourcegroups/rg1/providers/microsoft.operationalinsights/workspaces/workspace2 + language: *ref_1230 + language: *ref_1246 + language: *ref_1244 + language: *ref_1243 + retentionDays: + schema: *ref_281 + rawValue: 100 + language: *ref_1242 + language: *ref_1240 + intrusionDetection: + schema: *ref_306 + flattenedNames: *ref_1270 + parentsValue: {} + properties: + configuration: + schema: *ref_307 + parentsValue: {} + properties: + bypassTrafficSettings: + schema: *ref_439 + elements: + - schema: *ref_309 + parentsValue: {} + properties: + name: + schema: *ref_289 + rawValue: bypassRule1 + language: *ref_1264 + description: + schema: *ref_290 + rawValue: Rule 1 + language: *ref_1265 + destinationAddresses: + schema: *ref_435 + elements: + - schema: *ref_293 + rawValue: 5.6.7.8 + language: *ref_1268 + destinationPorts: + schema: *ref_436 + elements: + - schema: *ref_294 + rawValue: '*' + language: *ref_1269 + sourceAddresses: + schema: *ref_434 + elements: + - schema: *ref_292 + rawValue: 1.2.3.4 + language: *ref_1267 + protocol: + schema: *ref_291 + rawValue: TCP + language: *ref_1266 + language: *ref_1263 + signatureOverrides: + schema: *ref_433 + elements: + - schema: *ref_308 + parentsValue: {} + properties: + id: + schema: *ref_288 + rawValue: '2525004' + language: *ref_1261 + mode: + schema: *ref_287 + rawValue: Deny + language: *ref_1262 + language: *ref_1260 + language: *ref_1259 + mode: + schema: *ref_287 + rawValue: Alert + language: *ref_1258 + language: *ref_1257 + location: + schema: *ref_218 + rawValue: West US + language: *ref_1282 + provisioningState: + schema: *ref_184 + flattenedNames: *ref_1233 + rawValue: Succeeded + language: *ref_1232 + ruleCollectionGroups: + schema: *ref_425 + elements: + - schema: *ref_230 + parentsValue: {} + properties: + id: + schema: *ref_277 + rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 + language: *ref_1230 + - schema: *ref_230 + parentsValue: {} + properties: + id: + schema: *ref_277 + rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup2 + language: *ref_1230 + flattenedNames: *ref_1231 + language: *ref_1229 + sku: + schema: *ref_312 + flattenedNames: *ref_1278 + parentsValue: {} + properties: + tier: + schema: *ref_299 + rawValue: Premium + language: *ref_1277 + language: *ref_1276 + snat: + schema: *ref_304 + flattenedNames: *ref_1251 + parentsValue: {} + properties: + privateRanges: + schema: *ref_431 + elements: + - schema: *ref_283 + rawValue: IANAPrivateRanges + language: *ref_1250 + language: *ref_1249 + tags: + schema: *ref_219 + properties: + key1: + schema: *ref_6 + rawValue: value1 + language: *ref_1283 threatIntelWhitelist: schema: *ref_300 - flattenedNames: *ref_1227 + flattenedNames: *ref_1239 parentsValue: {} properties: fqdns: @@ -33107,17 +33283,17 @@ testModel: elements: - schema: *ref_279 rawValue: '*.microsoft.com' - language: *ref_1226 + language: *ref_1238 ipAddresses: schema: *ref_428 elements: - schema: *ref_278 rawValue: 20.3.4.5 - language: *ref_1225 - language: *ref_1224 + language: *ref_1237 + language: *ref_1236 transportSecurity: schema: *ref_310 - flattenedNames: *ref_1263 + flattenedNames: *ref_1275 parentsValue: {} properties: certificateAuthority: @@ -33127,16 +33303,16 @@ testModel: name: schema: *ref_298 rawValue: clientcert - language: *ref_1262 + language: *ref_1274 keyVaultSecretId: schema: *ref_297 rawValue: https://kv/secret - language: *ref_1261 - language: *ref_1260 - language: *ref_1259 - language: *ref_1281 - operation: *ref_1282 - operationGroup: *ref_1202 + language: *ref_1273 + language: *ref_1272 + language: *ref_1271 + language: *ref_1293 + operation: *ref_1294 + operationGroup: *ref_1214 - operationId: FirewallPolicies_List examples: - name: List all Firewall Policies for a given resource group @@ -33144,21 +33320,21 @@ testModel: - exampleValue: schema: *ref_475 rawValue: subid - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_6 rawValue: rg1 - language: *ref_1283 + language: *ref_1295 parameter: *ref_627 - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1285 - parameter: *ref_1284 - operation: *ref_1288 - operationGroup: *ref_1202 + language: *ref_1297 + parameter: *ref_1296 + operation: *ref_1300 + operationGroup: *ref_1214 originalFile: '' responses: '200': @@ -33175,53 +33351,53 @@ testModel: name: schema: *ref_216 rawValue: firewallPolicy - language: *ref_1268 + language: *ref_1280 type: schema: *ref_217 rawValue: Microsoft.Network/firewallPolicies - language: *ref_1269 + language: *ref_1281 dnsSettings: schema: *ref_305 - flattenedNames: *ref_1244 + flattenedNames: *ref_1256 parentsValue: {} properties: enableProxy: schema: *ref_285 rawValue: true - language: *ref_1242 + language: *ref_1254 requireProxyForNetworkRules: schema: *ref_286 rawValue: false - language: *ref_1243 + language: *ref_1255 servers: schema: *ref_432 elements: - schema: *ref_284 rawValue: 30.3.4.5 - language: *ref_1241 - language: *ref_1240 + language: *ref_1253 + language: *ref_1252 etag: schema: *ref_221 rawValue: w/\00000000-0000-0000-0000-000000000000\ - language: *ref_1208 + language: *ref_1220 firewalls: schema: *ref_426 elements: [] - flattenedNames: *ref_1223 - language: *ref_1222 + flattenedNames: *ref_1235 + language: *ref_1234 id: schema: *ref_215 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy - language: *ref_1267 + language: *ref_1279 location: schema: *ref_218 rawValue: West US - language: *ref_1270 + language: *ref_1282 provisioningState: schema: *ref_184 - flattenedNames: *ref_1221 + flattenedNames: *ref_1233 rawValue: Succeeded - language: *ref_1220 + language: *ref_1232 ruleCollectionGroups: schema: *ref_425 elements: @@ -33231,22 +33407,22 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 - language: *ref_1218 - flattenedNames: *ref_1219 - language: *ref_1217 + language: *ref_1230 + flattenedNames: *ref_1231 + language: *ref_1229 sku: schema: *ref_312 - flattenedNames: *ref_1266 + flattenedNames: *ref_1278 parentsValue: {} properties: tier: schema: *ref_299 rawValue: Standard - language: *ref_1265 - language: *ref_1264 + language: *ref_1277 + language: *ref_1276 snat: schema: *ref_304 - flattenedNames: *ref_1239 + flattenedNames: *ref_1251 parentsValue: {} properties: privateRanges: @@ -33254,19 +33430,19 @@ testModel: elements: - schema: *ref_283 rawValue: IANAPrivateRanges - language: *ref_1238 - language: *ref_1237 + language: *ref_1250 + language: *ref_1249 tags: schema: *ref_219 properties: key1: schema: *ref_6 rawValue: value1 - language: *ref_1271 - language: *ref_1287 - language: *ref_1286 - operation: *ref_1288 - operationGroup: *ref_1202 + language: *ref_1283 + language: *ref_1299 + language: *ref_1298 + operation: *ref_1300 + operationGroup: *ref_1214 - operationId: FirewallPolicies_ListAll examples: - name: List all Firewall Policies for a given subscription @@ -33274,16 +33450,16 @@ testModel: - exampleValue: schema: *ref_475 rawValue: subid - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1290 - parameter: *ref_1289 - operation: *ref_1292 - operationGroup: *ref_1202 + language: *ref_1302 + parameter: *ref_1301 + operation: *ref_1304 + operationGroup: *ref_1214 originalFile: '' responses: '200': @@ -33300,53 +33476,53 @@ testModel: name: schema: *ref_216 rawValue: firewallPolicy - language: *ref_1268 + language: *ref_1280 type: schema: *ref_217 rawValue: Microsoft.Network/firewallPolicies - language: *ref_1269 + language: *ref_1281 dnsSettings: schema: *ref_305 - flattenedNames: *ref_1244 + flattenedNames: *ref_1256 parentsValue: {} properties: enableProxy: schema: *ref_285 rawValue: true - language: *ref_1242 + language: *ref_1254 requireProxyForNetworkRules: schema: *ref_286 rawValue: false - language: *ref_1243 + language: *ref_1255 servers: schema: *ref_432 elements: - schema: *ref_284 rawValue: 30.3.4.5 - language: *ref_1241 - language: *ref_1240 + language: *ref_1253 + language: *ref_1252 etag: schema: *ref_221 rawValue: w/\00000000-0000-0000-0000-000000000000\ - language: *ref_1208 + language: *ref_1220 firewalls: schema: *ref_426 elements: [] - flattenedNames: *ref_1223 - language: *ref_1222 + flattenedNames: *ref_1235 + language: *ref_1234 id: schema: *ref_215 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy - language: *ref_1267 + language: *ref_1279 location: schema: *ref_218 rawValue: West US - language: *ref_1270 + language: *ref_1282 provisioningState: schema: *ref_184 - flattenedNames: *ref_1221 + flattenedNames: *ref_1233 rawValue: Succeeded - language: *ref_1220 + language: *ref_1232 ruleCollectionGroups: schema: *ref_425 elements: @@ -33356,22 +33532,22 @@ testModel: id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 - language: *ref_1218 - flattenedNames: *ref_1219 - language: *ref_1217 + language: *ref_1230 + flattenedNames: *ref_1231 + language: *ref_1229 sku: schema: *ref_312 - flattenedNames: *ref_1266 + flattenedNames: *ref_1278 parentsValue: {} properties: tier: schema: *ref_299 rawValue: Standard - language: *ref_1265 - language: *ref_1264 + language: *ref_1277 + language: *ref_1276 snat: schema: *ref_304 - flattenedNames: *ref_1239 + flattenedNames: *ref_1251 parentsValue: {} properties: privateRanges: @@ -33379,19 +33555,19 @@ testModel: elements: - schema: *ref_283 rawValue: IANAPrivateRanges - language: *ref_1238 - language: *ref_1237 + language: *ref_1250 + language: *ref_1249 tags: schema: *ref_219 properties: key1: schema: *ref_6 rawValue: value1 - language: *ref_1271 - language: *ref_1287 - language: *ref_1291 - operation: *ref_1292 - operationGroup: *ref_1202 + language: *ref_1283 + language: *ref_1299 + language: *ref_1303 + operation: *ref_1304 + operationGroup: *ref_1214 - operationId: FirewallPolicyRuleCollectionGroups_Delete examples: - name: Delete FirewallPolicyRuleCollectionGroup @@ -33399,38 +33575,38 @@ testModel: - exampleValue: schema: *ref_475 rawValue: subid - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_6 rawValue: rg1 - language: *ref_1293 + language: *ref_1305 parameter: *ref_629 - exampleValue: schema: *ref_6 rawValue: firewallPolicy - language: *ref_1294 + language: *ref_1306 parameter: *ref_630 - exampleValue: schema: *ref_6 rawValue: ruleCollectionGroup1 - language: *ref_1295 + language: *ref_1307 parameter: *ref_631 - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1297 - parameter: *ref_1296 - operation: *ref_1298 - operationGroup: *ref_1299 + language: *ref_1309 + parameter: *ref_1308 + operation: *ref_1310 + operationGroup: *ref_1311 originalFile: '' responses: '200': {} '202': {} '204': {} - operation: *ref_1298 - operationGroup: *ref_1299 + operation: *ref_1310 + operationGroup: *ref_1311 - operationId: FirewallPolicyRuleCollectionGroups_Get examples: - name: Get FirewallPolicyNatRuleCollectionGroup @@ -33438,31 +33614,31 @@ testModel: - exampleValue: schema: *ref_475 rawValue: subid - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_6 rawValue: rg1 - language: *ref_1300 + language: *ref_1312 parameter: *ref_632 - exampleValue: schema: *ref_6 rawValue: firewallPolicy - language: *ref_1301 + language: *ref_1313 parameter: *ref_633 - exampleValue: schema: *ref_6 rawValue: ruleCollectionGroup1 - language: *ref_1302 + language: *ref_1314 parameter: *ref_634 - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1304 - parameter: *ref_1303 - operation: *ref_1329 - operationGroup: *ref_1299 + language: *ref_1316 + parameter: *ref_1315 + operation: *ref_1341 + operationGroup: *ref_1311 originalFile: '' responses: '200': @@ -33473,25 +33649,25 @@ testModel: name: schema: *ref_231 rawValue: ruleCollectionGroup1 - language: *ref_1306 + language: *ref_1318 etag: schema: *ref_232 rawValue: W/"72090554-7e3b-43f2-80ad-99a9020dcb11" - language: *ref_1307 + language: *ref_1319 id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 - language: *ref_1218 + language: *ref_1230 priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 100 - language: *ref_1308 + language: *ref_1320 provisioningState: schema: *ref_184 - flattenedNames: *ref_1328 + flattenedNames: *ref_1340 rawValue: Succeeded - language: *ref_1327 + language: *ref_1339 ruleCollections: schema: *ref_441 elements: @@ -33501,7 +33677,7 @@ testModel: name: schema: *ref_274 rawValue: NatRC - language: *ref_1324 + language: *ref_1336 action: schema: *ref_384 parentsValue: {} @@ -33509,16 +33685,16 @@ testModel: type: schema: *ref_236 rawValue: DNAT - language: *ref_1312 - language: *ref_1311 + language: *ref_1324 + language: *ref_1323 priority: schema: *ref_275 rawValue: 100 - language: *ref_1325 + language: *ref_1337 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyNatRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_453 elements: @@ -33528,19 +33704,19 @@ testModel: name: schema: *ref_266 rawValue: NatRule1 - language: *ref_1321 + language: *ref_1333 destinationAddresses: schema: *ref_465 elements: - schema: *ref_250 rawValue: 152.23.32.23 - language: *ref_1316 + language: *ref_1328 destinationPorts: schema: *ref_466 elements: - schema: *ref_251 rawValue: '8080' - language: *ref_1317 + language: *ref_1329 ipProtocols: schema: *ref_463 elements: @@ -33548,63 +33724,63 @@ testModel: rawValue: TCP - schema: *ref_248 rawValue: UDP - language: *ref_1314 + language: *ref_1326 ruleType: schema: *ref_265 rawValue: NatRule - language: *ref_1322 + language: *ref_1334 sourceAddresses: schema: *ref_464 elements: - schema: *ref_249 rawValue: 2.2.2.2 - language: *ref_1315 + language: *ref_1327 sourceIpGroups: schema: *ref_467 elements: [] - language: *ref_1319 + language: *ref_1331 translatedFqdn: schema: *ref_255 rawValue: internalhttpserver - language: *ref_1320 + language: *ref_1332 translatedPort: schema: *ref_253 rawValue: '8080' - language: *ref_1318 - language: *ref_1313 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1305 + language: *ref_1330 + language: *ref_1325 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1317 - name: Get FirewallPolicyRuleCollectionGroup clientParameters: - exampleValue: schema: *ref_475 rawValue: subid - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_6 rawValue: rg1 - language: *ref_1300 + language: *ref_1312 parameter: *ref_632 - exampleValue: schema: *ref_6 rawValue: firewallPolicy - language: *ref_1301 + language: *ref_1313 parameter: *ref_633 - exampleValue: schema: *ref_6 rawValue: ruleCollectionGroup1 - language: *ref_1302 + language: *ref_1314 parameter: *ref_634 - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1304 - parameter: *ref_1303 - operation: *ref_1329 - operationGroup: *ref_1299 + language: *ref_1316 + parameter: *ref_1315 + operation: *ref_1341 + operationGroup: *ref_1311 originalFile: '' responses: '200': @@ -33615,25 +33791,25 @@ testModel: name: schema: *ref_231 rawValue: ruleCollectionGroup1 - language: *ref_1306 + language: *ref_1318 etag: schema: *ref_232 rawValue: W/"72090554-7e3b-43f2-80ad-99a9020dcb11" - language: *ref_1307 + language: *ref_1319 id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 - language: *ref_1218 + language: *ref_1230 priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 110 - language: *ref_1308 + language: *ref_1320 provisioningState: schema: *ref_184 - flattenedNames: *ref_1328 + flattenedNames: *ref_1340 rawValue: Succeeded - language: *ref_1327 + language: *ref_1339 ruleCollections: schema: *ref_441 elements: @@ -33643,7 +33819,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Filter-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_385 parentsValue: {} @@ -33651,16 +33827,16 @@ testModel: type: schema: *ref_269 rawValue: Deny - language: *ref_1331 - language: *ref_1330 + language: *ref_1343 + language: *ref_1342 priority: schema: *ref_275 rawValue: 200 - language: *ref_1325 + language: *ref_1337 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyFilterRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_454 elements: @@ -33670,69 +33846,69 @@ testModel: name: schema: *ref_266 rawValue: network-rule1 - language: *ref_1321 + language: *ref_1333 destinationAddresses: schema: *ref_470 elements: - schema: *ref_257 rawValue: '*' - language: *ref_1335 + language: *ref_1347 destinationPorts: schema: *ref_471 elements: - schema: *ref_258 rawValue: '*' - language: *ref_1336 + language: *ref_1348 ipProtocols: schema: *ref_468 elements: - schema: *ref_248 rawValue: TCP - language: *ref_1333 + language: *ref_1345 ruleType: schema: *ref_265 rawValue: NetworkRule - language: *ref_1322 + language: *ref_1334 sourceAddresses: schema: *ref_469 elements: - schema: *ref_256 rawValue: 10.1.25.0/24 - language: *ref_1334 - language: *ref_1332 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1305 + language: *ref_1346 + language: *ref_1344 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1317 - name: Get FirewallPolicyRuleCollectionGroup With IpGroups clientParameters: - exampleValue: schema: *ref_475 rawValue: subid - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_6 rawValue: rg1 - language: *ref_1300 + language: *ref_1312 parameter: *ref_632 - exampleValue: schema: *ref_6 rawValue: firewallPolicy - language: *ref_1301 + language: *ref_1313 parameter: *ref_633 - exampleValue: schema: *ref_6 rawValue: ruleGroup1 - language: *ref_1302 + language: *ref_1314 parameter: *ref_634 - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1304 - parameter: *ref_1303 - operation: *ref_1329 - operationGroup: *ref_1299 + language: *ref_1316 + parameter: *ref_1315 + operation: *ref_1341 + operationGroup: *ref_1311 originalFile: '' responses: '200': @@ -33743,25 +33919,25 @@ testModel: name: schema: *ref_231 rawValue: ruleGroup1 - language: *ref_1306 + language: *ref_1318 etag: schema: *ref_232 rawValue: W/"72090554-7e3b-43f2-80ad-99a9020dcb11" - language: *ref_1307 + language: *ref_1319 id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleGroups/ruleGroup1 - language: *ref_1218 + language: *ref_1230 priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 110 - language: *ref_1308 + language: *ref_1320 provisioningState: schema: *ref_184 - flattenedNames: *ref_1328 + flattenedNames: *ref_1340 rawValue: Succeeded - language: *ref_1327 + language: *ref_1339 ruleCollections: schema: *ref_441 elements: @@ -33771,7 +33947,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Filter-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_385 parentsValue: {} @@ -33779,16 +33955,16 @@ testModel: type: schema: *ref_269 rawValue: Deny - language: *ref_1331 - language: *ref_1330 + language: *ref_1343 + language: *ref_1342 priority: schema: *ref_275 rawValue: 200 - language: *ref_1325 + language: *ref_1337 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyFilterRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_454 elements: @@ -33798,69 +33974,69 @@ testModel: name: schema: *ref_266 rawValue: network-rule1 - language: *ref_1321 + language: *ref_1333 destinationIpGroups: schema: *ref_473 elements: - schema: *ref_260 rawValue: /subscriptions/subid/providers/Microsoft.Network/resourceGroup/rg1/ipGroups/ipGroups2 - language: *ref_1338 + language: *ref_1350 destinationPorts: schema: *ref_471 elements: - schema: *ref_258 rawValue: '*' - language: *ref_1336 + language: *ref_1348 ipProtocols: schema: *ref_468 elements: - schema: *ref_248 rawValue: TCP - language: *ref_1333 + language: *ref_1345 ruleType: schema: *ref_265 rawValue: NetworkRule - language: *ref_1322 + language: *ref_1334 sourceIpGroups: schema: *ref_472 elements: - schema: *ref_259 rawValue: /subscriptions/subid/providers/Microsoft.Network/resourceGroup/rg1/ipGroups/ipGroups1 - language: *ref_1337 - language: *ref_1332 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1305 + language: *ref_1349 + language: *ref_1344 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1317 - name: Get FirewallPolicyRuleCollectionGroup With Web Categories clientParameters: - exampleValue: schema: *ref_475 rawValue: e747cc13-97d4-4a79-b463-42d7f4e558f2 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_6 rawValue: rg1 - language: *ref_1300 + language: *ref_1312 parameter: *ref_632 - exampleValue: schema: *ref_6 rawValue: firewallPolicy - language: *ref_1301 + language: *ref_1313 parameter: *ref_633 - exampleValue: schema: *ref_6 rawValue: ruleCollectionGroup1 - language: *ref_1302 + language: *ref_1314 parameter: *ref_634 - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1304 - parameter: *ref_1303 - operation: *ref_1329 - operationGroup: *ref_1299 + language: *ref_1316 + parameter: *ref_1315 + operation: *ref_1341 + operationGroup: *ref_1311 originalFile: '' responses: '200': @@ -33871,25 +34047,25 @@ testModel: name: schema: *ref_231 rawValue: ruleCollectionGroup1 - language: *ref_1306 + language: *ref_1318 etag: schema: *ref_232 rawValue: W/"72090554-7e3b-43f2-80ad-99a9020dcb11" - language: *ref_1307 + language: *ref_1319 id: schema: *ref_277 rawValue: /subscriptions/e747cc13-97d4-4a79-b463-42d7f4e558f2/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 - language: *ref_1218 + language: *ref_1230 priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 110 - language: *ref_1308 + language: *ref_1320 provisioningState: schema: *ref_184 - flattenedNames: *ref_1328 + flattenedNames: *ref_1340 rawValue: Succeeded - language: *ref_1327 + language: *ref_1339 ruleCollections: schema: *ref_441 elements: @@ -33899,7 +34075,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Filter-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_385 parentsValue: {} @@ -33907,16 +34083,16 @@ testModel: type: schema: *ref_269 rawValue: Deny - language: *ref_1331 - language: *ref_1330 + language: *ref_1343 + language: *ref_1342 priority: schema: *ref_275 rawValue: 200 - language: *ref_1325 + language: *ref_1337 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyFilterRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_454 elements: @@ -33926,11 +34102,11 @@ testModel: name: schema: *ref_266 rawValue: rule1 - language: *ref_1321 + language: *ref_1333 description: schema: *ref_267 rawValue: Deny inbound rule - language: *ref_1344 + language: *ref_1356 protocols: schema: *ref_457 elements: @@ -33940,16 +34116,16 @@ testModel: port: schema: *ref_241 rawValue: 443 - language: *ref_1342 + language: *ref_1354 protocolType: schema: *ref_240 rawValue: Https - language: *ref_1341 - language: *ref_1340 + language: *ref_1353 + language: *ref_1352 ruleType: schema: *ref_265 rawValue: ApplicationRule - language: *ref_1322 + language: *ref_1334 sourceAddresses: schema: *ref_455 elements: @@ -33957,19 +34133,19 @@ testModel: rawValue: 216.58.216.164 - schema: *ref_238 rawValue: 10.0.0.0/24 - language: *ref_1339 + language: *ref_1351 webCategories: schema: *ref_462 elements: - schema: *ref_247 rawValue: Hacking - language: *ref_1343 - language: *ref_1332 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1305 - operation: *ref_1329 - operationGroup: *ref_1299 + language: *ref_1355 + language: *ref_1344 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1317 + operation: *ref_1341 + operationGroup: *ref_1311 - operationId: FirewallPolicyRuleCollectionGroups_CreateOrUpdate examples: - name: Create FirewallPolicyNatRuleCollectionGroup @@ -33977,38 +34153,38 @@ testModel: - exampleValue: schema: *ref_475 rawValue: subid - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_6 rawValue: rg1 - language: *ref_1345 + language: *ref_1357 parameter: *ref_637 - exampleValue: schema: *ref_6 rawValue: firewallPolicy - language: *ref_1346 + language: *ref_1358 parameter: *ref_638 - exampleValue: schema: *ref_6 rawValue: ruleCollectionGroup1 - language: *ref_1347 + language: *ref_1359 parameter: *ref_639 - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1349 - parameter: *ref_1348 + language: *ref_1361 + parameter: *ref_1360 - exampleValue: schema: *ref_276 parentsValue: {} properties: priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 100 - language: *ref_1308 + language: *ref_1320 ruleCollections: schema: *ref_441 elements: @@ -34018,7 +34194,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Nat-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_384 parentsValue: {} @@ -34026,16 +34202,16 @@ testModel: type: schema: *ref_236 rawValue: DNAT - language: *ref_1312 - language: *ref_1311 + language: *ref_1324 + language: *ref_1323 priority: schema: *ref_275 rawValue: 100 - language: *ref_1325 + language: *ref_1337 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyNatRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_453 elements: @@ -34045,19 +34221,19 @@ testModel: name: schema: *ref_266 rawValue: nat-rule1 - language: *ref_1321 + language: *ref_1333 destinationAddresses: schema: *ref_465 elements: - schema: *ref_250 rawValue: 152.23.32.23 - language: *ref_1316 + language: *ref_1328 destinationPorts: schema: *ref_466 elements: - schema: *ref_251 rawValue: '8080' - language: *ref_1317 + language: *ref_1329 ipProtocols: schema: *ref_463 elements: @@ -34065,36 +34241,36 @@ testModel: rawValue: TCP - schema: *ref_248 rawValue: UDP - language: *ref_1314 + language: *ref_1326 ruleType: schema: *ref_265 rawValue: NatRule - language: *ref_1322 + language: *ref_1334 sourceAddresses: schema: *ref_464 elements: - schema: *ref_249 rawValue: 2.2.2.2 - language: *ref_1315 + language: *ref_1327 sourceIpGroups: schema: *ref_467 elements: [] - language: *ref_1319 + language: *ref_1331 translatedFqdn: schema: *ref_255 rawValue: internalhttp.server.net - language: *ref_1320 + language: *ref_1332 translatedPort: schema: *ref_253 rawValue: '8080' - language: *ref_1318 - language: *ref_1313 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1350 + language: *ref_1330 + language: *ref_1325 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1362 parameter: *ref_635 - operation: *ref_1353 - operationGroup: *ref_1299 + operation: *ref_1365 + operationGroup: *ref_1311 originalFile: '' responses: '200': @@ -34105,25 +34281,25 @@ testModel: name: schema: *ref_231 rawValue: ruleCollectionGroup1 - language: *ref_1306 + language: *ref_1318 etag: schema: *ref_232 rawValue: w/\00000000-0000-0000-0000-000000000000\ - language: *ref_1307 + language: *ref_1319 id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 - language: *ref_1218 + language: *ref_1230 priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 100 - language: *ref_1308 + language: *ref_1320 provisioningState: schema: *ref_184 - flattenedNames: *ref_1328 + flattenedNames: *ref_1340 rawValue: Succeeded - language: *ref_1327 + language: *ref_1339 ruleCollections: schema: *ref_441 elements: @@ -34133,7 +34309,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Nat-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_384 parentsValue: {} @@ -34141,16 +34317,16 @@ testModel: type: schema: *ref_236 rawValue: DNAT - language: *ref_1312 - language: *ref_1311 + language: *ref_1324 + language: *ref_1323 priority: schema: *ref_275 rawValue: 100 - language: *ref_1325 + language: *ref_1337 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyNatRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_453 elements: @@ -34160,19 +34336,19 @@ testModel: name: schema: *ref_266 rawValue: nat-rule1 - language: *ref_1321 + language: *ref_1333 destinationAddresses: schema: *ref_465 elements: - schema: *ref_250 rawValue: 152.23.32.23 - language: *ref_1316 + language: *ref_1328 destinationPorts: schema: *ref_466 elements: - schema: *ref_251 rawValue: '8080' - language: *ref_1317 + language: *ref_1329 ipProtocols: schema: *ref_463 elements: @@ -34180,33 +34356,33 @@ testModel: rawValue: TCP - schema: *ref_248 rawValue: UDP - language: *ref_1314 + language: *ref_1326 ruleType: schema: *ref_265 rawValue: NatRule - language: *ref_1322 + language: *ref_1334 sourceAddresses: schema: *ref_464 elements: - schema: *ref_249 rawValue: 2.2.2.2 - language: *ref_1315 + language: *ref_1327 sourceIpGroups: schema: *ref_467 elements: [] - language: *ref_1319 + language: *ref_1331 translatedFqdn: schema: *ref_255 rawValue: internalhttp.server.net - language: *ref_1320 + language: *ref_1332 translatedPort: schema: *ref_253 rawValue: '8080' - language: *ref_1318 - language: *ref_1313 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1351 + language: *ref_1330 + language: *ref_1325 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1363 '201': body: schema: *ref_276 @@ -34215,20 +34391,20 @@ testModel: name: schema: *ref_231 rawValue: firewallPolicy - language: *ref_1306 + language: *ref_1318 etag: schema: *ref_232 rawValue: w/\00000000-0000-0000-0000-000000000000\ - language: *ref_1307 + language: *ref_1319 id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy - language: *ref_1218 + language: *ref_1230 provisioningState: schema: *ref_184 - flattenedNames: *ref_1328 + flattenedNames: *ref_1340 rawValue: Succeeded - language: *ref_1327 + language: *ref_1339 ruleCollections: schema: *ref_441 elements: @@ -34238,7 +34414,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Nat-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_384 parentsValue: {} @@ -34246,16 +34422,16 @@ testModel: type: schema: *ref_236 rawValue: DNAT - language: *ref_1312 - language: *ref_1311 + language: *ref_1324 + language: *ref_1323 priority: schema: *ref_275 rawValue: 100 - language: *ref_1325 + language: *ref_1337 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyNatRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_453 elements: @@ -34265,19 +34441,19 @@ testModel: name: schema: *ref_266 rawValue: nat-rule1 - language: *ref_1321 + language: *ref_1333 destinationAddresses: schema: *ref_465 elements: - schema: *ref_250 rawValue: 152.23.32.23 - language: *ref_1316 + language: *ref_1328 destinationPorts: schema: *ref_466 elements: - schema: *ref_251 rawValue: '8080' - language: *ref_1317 + language: *ref_1329 ipProtocols: schema: *ref_463 elements: @@ -34285,70 +34461,70 @@ testModel: rawValue: TCP - schema: *ref_248 rawValue: UDP - language: *ref_1314 + language: *ref_1326 ruleType: schema: *ref_265 rawValue: NatRule - language: *ref_1322 + language: *ref_1334 sourceAddresses: schema: *ref_464 elements: - schema: *ref_249 rawValue: 2.2.2.2 - language: *ref_1315 + language: *ref_1327 sourceIpGroups: schema: *ref_467 elements: [] - language: *ref_1319 + language: *ref_1331 translatedFqdn: schema: *ref_255 rawValue: internalhttp.server.net - language: *ref_1320 + language: *ref_1332 translatedPort: schema: *ref_253 rawValue: '8080' - language: *ref_1318 - language: *ref_1313 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1352 + language: *ref_1330 + language: *ref_1325 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1364 - name: Create FirewallPolicyRuleCollectionGroup clientParameters: - exampleValue: schema: *ref_475 rawValue: subid - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_6 rawValue: rg1 - language: *ref_1345 + language: *ref_1357 parameter: *ref_637 - exampleValue: schema: *ref_6 rawValue: firewallPolicy - language: *ref_1346 + language: *ref_1358 parameter: *ref_638 - exampleValue: schema: *ref_6 rawValue: ruleCollectionGroup1 - language: *ref_1347 + language: *ref_1359 parameter: *ref_639 - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1349 - parameter: *ref_1348 + language: *ref_1361 + parameter: *ref_1360 - exampleValue: schema: *ref_276 parentsValue: {} properties: priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 100 - language: *ref_1308 + language: *ref_1320 ruleCollections: schema: *ref_441 elements: @@ -34358,7 +34534,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Filter-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_385 parentsValue: {} @@ -34366,16 +34542,16 @@ testModel: type: schema: *ref_269 rawValue: Deny - language: *ref_1331 - language: *ref_1330 + language: *ref_1343 + language: *ref_1342 priority: schema: *ref_275 rawValue: 100 - language: *ref_1325 + language: *ref_1337 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyFilterRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_454 elements: @@ -34385,42 +34561,42 @@ testModel: name: schema: *ref_266 rawValue: network-rule1 - language: *ref_1321 + language: *ref_1333 destinationAddresses: schema: *ref_470 elements: - schema: *ref_257 rawValue: '*' - language: *ref_1335 + language: *ref_1347 destinationPorts: schema: *ref_471 elements: - schema: *ref_258 rawValue: '*' - language: *ref_1336 + language: *ref_1348 ipProtocols: schema: *ref_468 elements: - schema: *ref_248 rawValue: TCP - language: *ref_1333 + language: *ref_1345 ruleType: schema: *ref_265 rawValue: NetworkRule - language: *ref_1322 + language: *ref_1334 sourceAddresses: schema: *ref_469 elements: - schema: *ref_256 rawValue: 10.1.25.0/24 - language: *ref_1334 - language: *ref_1332 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1350 + language: *ref_1346 + language: *ref_1344 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1362 parameter: *ref_635 - operation: *ref_1353 - operationGroup: *ref_1299 + operation: *ref_1365 + operationGroup: *ref_1311 originalFile: '' responses: '200': @@ -34431,25 +34607,25 @@ testModel: name: schema: *ref_231 rawValue: ruleCollectionGroup1 - language: *ref_1306 + language: *ref_1318 etag: schema: *ref_232 rawValue: w/\00000000-0000-0000-0000-000000000000\ - language: *ref_1307 + language: *ref_1319 id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 - language: *ref_1218 + language: *ref_1230 priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 100 - language: *ref_1308 + language: *ref_1320 provisioningState: schema: *ref_184 - flattenedNames: *ref_1328 + flattenedNames: *ref_1340 rawValue: Succeeded - language: *ref_1327 + language: *ref_1339 ruleCollections: schema: *ref_441 elements: @@ -34459,7 +34635,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Filter-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_385 parentsValue: {} @@ -34467,16 +34643,16 @@ testModel: type: schema: *ref_269 rawValue: Deny - language: *ref_1331 - language: *ref_1330 + language: *ref_1343 + language: *ref_1342 priority: schema: *ref_275 rawValue: 100 - language: *ref_1325 + language: *ref_1337 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyFilterRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_454 elements: @@ -34486,39 +34662,39 @@ testModel: name: schema: *ref_266 rawValue: network-rule1 - language: *ref_1321 + language: *ref_1333 destinationAddresses: schema: *ref_470 elements: - schema: *ref_257 rawValue: '*' - language: *ref_1335 + language: *ref_1347 destinationPorts: schema: *ref_471 elements: - schema: *ref_258 rawValue: '*' - language: *ref_1336 + language: *ref_1348 ipProtocols: schema: *ref_468 elements: - schema: *ref_248 rawValue: TCP - language: *ref_1333 + language: *ref_1345 ruleType: schema: *ref_265 rawValue: NetworkRule - language: *ref_1322 + language: *ref_1334 sourceAddresses: schema: *ref_469 elements: - schema: *ref_256 rawValue: 10.1.25.0/24 - language: *ref_1334 - language: *ref_1332 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1351 + language: *ref_1346 + language: *ref_1344 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1363 '201': body: schema: *ref_276 @@ -34527,25 +34703,25 @@ testModel: name: schema: *ref_231 rawValue: firewallPolicy - language: *ref_1306 + language: *ref_1318 etag: schema: *ref_232 rawValue: w/\00000000-0000-0000-0000-000000000000\ - language: *ref_1307 + language: *ref_1319 id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy - language: *ref_1218 + language: *ref_1230 priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 100 - language: *ref_1308 + language: *ref_1320 provisioningState: schema: *ref_184 - flattenedNames: *ref_1328 + flattenedNames: *ref_1340 rawValue: Succeeded - language: *ref_1327 + language: *ref_1339 ruleCollections: schema: *ref_441 elements: @@ -34555,7 +34731,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Filter-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_385 parentsValue: {} @@ -34563,16 +34739,16 @@ testModel: type: schema: *ref_269 rawValue: Deny - language: *ref_1331 - language: *ref_1330 + language: *ref_1343 + language: *ref_1342 priority: schema: *ref_275 rawValue: 100 - language: *ref_1325 + language: *ref_1337 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyFilterRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_454 elements: @@ -34582,69 +34758,69 @@ testModel: name: schema: *ref_266 rawValue: network-rule1 - language: *ref_1321 + language: *ref_1333 destinationAddresses: schema: *ref_470 elements: - schema: *ref_257 rawValue: '*' - language: *ref_1335 + language: *ref_1347 destinationPorts: schema: *ref_471 elements: - schema: *ref_258 rawValue: '*' - language: *ref_1336 + language: *ref_1348 ipProtocols: schema: *ref_468 elements: - schema: *ref_248 rawValue: TCP - language: *ref_1333 + language: *ref_1345 ruleType: schema: *ref_265 rawValue: NetworkRule - language: *ref_1322 + language: *ref_1334 sourceAddresses: schema: *ref_469 elements: - schema: *ref_256 rawValue: 10.1.25.0/24 - language: *ref_1334 - language: *ref_1332 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1352 + language: *ref_1346 + language: *ref_1344 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1364 - name: Create FirewallPolicyRuleCollectionGroup With All Default Values clientParameters: - exampleValue: schema: *ref_475 rawValue: e747cc13-97d4-4a79-b463-42d7f4e558f2 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_6 rawValue: rg1 - language: *ref_1345 + language: *ref_1357 parameter: *ref_637 - exampleValue: schema: *ref_6 rawValue: firewallPolicy - language: *ref_1346 + language: *ref_1358 parameter: *ref_638 - exampleValue: schema: *ref_6 rawValue: ruleCollectionGroup1 - language: *ref_1347 + language: *ref_1359 parameter: *ref_639 - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1349 - parameter: *ref_1348 - operation: *ref_1353 - operationGroup: *ref_1299 + language: *ref_1361 + parameter: *ref_1360 + operation: *ref_1365 + operationGroup: *ref_1311 originalFile: '' responses: '200': @@ -34655,25 +34831,25 @@ testModel: name: schema: *ref_231 rawValue: ruleCollectionGroup1 - language: *ref_1306 + language: *ref_1318 etag: schema: *ref_232 rawValue: w/\00000000-0000-0000-0000-000000000000\ - language: *ref_1307 + language: *ref_1319 id: schema: *ref_277 rawValue: /subscriptions/e747cc13-97d4-4a79-b463-42d7f4e558f2/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 - language: *ref_1218 + language: *ref_1230 priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 110 - language: *ref_1308 + language: *ref_1320 provisioningState: schema: *ref_184 - flattenedNames: *ref_1328 + flattenedNames: *ref_1340 rawValue: Succeeded - language: *ref_1327 + language: *ref_1339 ruleCollections: schema: *ref_441 elements: @@ -34683,7 +34859,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Filter-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_385 parentsValue: {} @@ -34691,12 +34867,12 @@ testModel: type: schema: *ref_269 rawValue: Deny - language: *ref_1331 - language: *ref_1330 + language: *ref_1343 + language: *ref_1342 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyFilterRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_454 elements: @@ -34706,11 +34882,11 @@ testModel: name: schema: *ref_266 rawValue: rule1 - language: *ref_1321 + language: *ref_1333 description: schema: *ref_267 rawValue: Deny inbound rule - language: *ref_1344 + language: *ref_1356 protocols: schema: *ref_457 elements: @@ -34720,16 +34896,16 @@ testModel: port: schema: *ref_241 rawValue: 443 - language: *ref_1342 + language: *ref_1354 protocolType: schema: *ref_240 rawValue: Https - language: *ref_1341 - language: *ref_1340 + language: *ref_1353 + language: *ref_1352 ruleType: schema: *ref_265 rawValue: ApplicationRule - language: *ref_1322 + language: *ref_1334 sourceAddresses: schema: *ref_455 elements: @@ -34737,17 +34913,17 @@ testModel: rawValue: 216.58.216.164 - schema: *ref_238 rawValue: 10.0.0.0/24 - language: *ref_1339 + language: *ref_1351 webCategories: schema: *ref_462 elements: - schema: *ref_247 rawValue: Hacking - language: *ref_1343 - language: *ref_1332 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1351 + language: *ref_1355 + language: *ref_1344 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1363 '201': body: schema: *ref_276 @@ -34756,25 +34932,25 @@ testModel: name: schema: *ref_231 rawValue: firewallPolicy - language: *ref_1306 + language: *ref_1318 etag: schema: *ref_232 rawValue: w/\00000000-0000-0000-0000-000000000000\ - language: *ref_1307 + language: *ref_1319 id: schema: *ref_277 rawValue: /subscriptions/e747cc13-97d4-4a79-b463-42d7f4e558f2/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy - language: *ref_1218 + language: *ref_1230 priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 110 - language: *ref_1308 + language: *ref_1320 provisioningState: schema: *ref_184 - flattenedNames: *ref_1328 + flattenedNames: *ref_1340 rawValue: Succeeded - language: *ref_1327 + language: *ref_1339 ruleCollections: schema: *ref_441 elements: @@ -34784,7 +34960,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Filter-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_385 parentsValue: {} @@ -34792,12 +34968,12 @@ testModel: type: schema: *ref_269 rawValue: Deny - language: *ref_1331 - language: *ref_1330 + language: *ref_1343 + language: *ref_1342 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyFilterRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_454 elements: @@ -34807,11 +34983,11 @@ testModel: name: schema: *ref_266 rawValue: rule1 - language: *ref_1321 + language: *ref_1333 description: schema: *ref_267 rawValue: Deny inbound rule - language: *ref_1344 + language: *ref_1356 protocols: schema: *ref_457 elements: @@ -34821,16 +34997,16 @@ testModel: port: schema: *ref_241 rawValue: 443 - language: *ref_1342 + language: *ref_1354 protocolType: schema: *ref_240 rawValue: Https - language: *ref_1341 - language: *ref_1340 + language: *ref_1353 + language: *ref_1352 ruleType: schema: *ref_265 rawValue: ApplicationRule - language: *ref_1322 + language: *ref_1334 sourceAddresses: schema: *ref_455 elements: @@ -34838,54 +35014,54 @@ testModel: rawValue: 216.58.216.164 - schema: *ref_238 rawValue: 10.0.0.0/24 - language: *ref_1339 + language: *ref_1351 webCategories: schema: *ref_462 elements: - schema: *ref_247 rawValue: Hacking - language: *ref_1343 - language: *ref_1332 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1352 + language: *ref_1355 + language: *ref_1344 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1364 - name: Create FirewallPolicyRuleCollectionGroup With IpGroups clientParameters: - exampleValue: schema: *ref_475 rawValue: subid - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_6 rawValue: rg1 - language: *ref_1345 + language: *ref_1357 parameter: *ref_637 - exampleValue: schema: *ref_6 rawValue: firewallPolicy - language: *ref_1346 + language: *ref_1358 parameter: *ref_638 - exampleValue: schema: *ref_6 rawValue: ruleCollectionGroup1 - language: *ref_1347 + language: *ref_1359 parameter: *ref_639 - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1349 - parameter: *ref_1348 + language: *ref_1361 + parameter: *ref_1360 - exampleValue: schema: *ref_276 parentsValue: {} properties: priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 110 - language: *ref_1308 + language: *ref_1320 ruleCollections: schema: *ref_441 elements: @@ -34895,7 +35071,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Filter-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_385 parentsValue: {} @@ -34903,12 +35079,12 @@ testModel: type: schema: *ref_269 rawValue: Deny - language: *ref_1331 - language: *ref_1330 + language: *ref_1343 + language: *ref_1342 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyFilterRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_454 elements: @@ -34918,42 +35094,42 @@ testModel: name: schema: *ref_266 rawValue: network-1 - language: *ref_1321 + language: *ref_1333 destinationIpGroups: schema: *ref_473 elements: - schema: *ref_260 rawValue: /subscriptions/subid/providers/Microsoft.Network/resourceGroup/rg1/ipGroups/ipGroups2 - language: *ref_1338 + language: *ref_1350 destinationPorts: schema: *ref_471 elements: - schema: *ref_258 rawValue: '*' - language: *ref_1336 + language: *ref_1348 ipProtocols: schema: *ref_468 elements: - schema: *ref_248 rawValue: TCP - language: *ref_1333 + language: *ref_1345 ruleType: schema: *ref_265 rawValue: NetworkRule - language: *ref_1322 + language: *ref_1334 sourceIpGroups: schema: *ref_472 elements: - schema: *ref_259 rawValue: /subscriptions/subid/providers/Microsoft.Network/resourceGroup/rg1/ipGroups/ipGroups1 - language: *ref_1337 - language: *ref_1332 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1350 + language: *ref_1349 + language: *ref_1344 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1362 parameter: *ref_635 - operation: *ref_1353 - operationGroup: *ref_1299 + operation: *ref_1365 + operationGroup: *ref_1311 originalFile: '' responses: '200': @@ -34964,25 +35140,25 @@ testModel: name: schema: *ref_231 rawValue: ruleCollectionGroup1 - language: *ref_1306 + language: *ref_1318 etag: schema: *ref_232 rawValue: w/\00000000-0000-0000-0000-000000000000\ - language: *ref_1307 + language: *ref_1319 id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 - language: *ref_1218 + language: *ref_1230 priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 110 - language: *ref_1308 + language: *ref_1320 provisioningState: schema: *ref_184 - flattenedNames: *ref_1328 + flattenedNames: *ref_1340 rawValue: Succeeded - language: *ref_1327 + language: *ref_1339 ruleCollections: schema: *ref_441 elements: @@ -34992,7 +35168,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Filter-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_385 parentsValue: {} @@ -35000,12 +35176,12 @@ testModel: type: schema: *ref_269 rawValue: Deny - language: *ref_1331 - language: *ref_1330 + language: *ref_1343 + language: *ref_1342 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyFilterRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_454 elements: @@ -35015,39 +35191,39 @@ testModel: name: schema: *ref_266 rawValue: network-1 - language: *ref_1321 + language: *ref_1333 destinationIpGroups: schema: *ref_473 elements: - schema: *ref_260 rawValue: /subscriptions/subid/providers/Microsoft.Network/resourceGroup/rg1/ipGroups/ipGroups2 - language: *ref_1338 + language: *ref_1350 destinationPorts: schema: *ref_471 elements: - schema: *ref_258 rawValue: '*' - language: *ref_1336 + language: *ref_1348 ipProtocols: schema: *ref_468 elements: - schema: *ref_248 rawValue: TCP - language: *ref_1333 + language: *ref_1345 ruleType: schema: *ref_265 rawValue: NetworkRule - language: *ref_1322 + language: *ref_1334 sourceIpGroups: schema: *ref_472 elements: - schema: *ref_259 rawValue: /subscriptions/subid/providers/Microsoft.Network/resourceGroup/rg1/ipGroups/ipGroups1 - language: *ref_1337 - language: *ref_1332 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1351 + language: *ref_1349 + language: *ref_1344 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1363 '201': body: schema: *ref_276 @@ -35056,25 +35232,25 @@ testModel: name: schema: *ref_231 rawValue: firewallPolicy - language: *ref_1306 + language: *ref_1318 etag: schema: *ref_232 rawValue: w/\00000000-0000-0000-0000-000000000000\ - language: *ref_1307 + language: *ref_1319 id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy - language: *ref_1218 + language: *ref_1230 priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 110 - language: *ref_1308 + language: *ref_1320 provisioningState: schema: *ref_184 - flattenedNames: *ref_1328 + flattenedNames: *ref_1340 rawValue: Succeeded - language: *ref_1327 + language: *ref_1339 ruleCollections: schema: *ref_441 elements: @@ -35084,7 +35260,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Filter-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_385 parentsValue: {} @@ -35092,12 +35268,12 @@ testModel: type: schema: *ref_269 rawValue: Deny - language: *ref_1331 - language: *ref_1330 + language: *ref_1343 + language: *ref_1342 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyFilterRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_454 elements: @@ -35107,76 +35283,76 @@ testModel: name: schema: *ref_266 rawValue: network-1 - language: *ref_1321 + language: *ref_1333 destinationIpGroups: schema: *ref_473 elements: - schema: *ref_260 rawValue: /subscriptions/subid/providers/Microsoft.Network/resourceGroup/rg1/ipGroups/ipGroups2 - language: *ref_1338 + language: *ref_1350 destinationPorts: schema: *ref_471 elements: - schema: *ref_258 rawValue: '*' - language: *ref_1336 + language: *ref_1348 ipProtocols: schema: *ref_468 elements: - schema: *ref_248 rawValue: TCP - language: *ref_1333 + language: *ref_1345 ruleType: schema: *ref_265 rawValue: NetworkRule - language: *ref_1322 + language: *ref_1334 sourceIpGroups: schema: *ref_472 elements: - schema: *ref_259 rawValue: /subscriptions/subid/providers/Microsoft.Network/resourceGroup/rg1/ipGroups/ipGroups1 - language: *ref_1337 - language: *ref_1332 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1352 + language: *ref_1349 + language: *ref_1344 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1364 - name: Create FirewallPolicyRuleCollectionGroup With Web Categories clientParameters: - exampleValue: schema: *ref_475 rawValue: e747cc13-97d4-4a79-b463-42d7f4e558f2 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_6 rawValue: rg1 - language: *ref_1345 + language: *ref_1357 parameter: *ref_637 - exampleValue: schema: *ref_6 rawValue: firewallPolicy - language: *ref_1346 + language: *ref_1358 parameter: *ref_638 - exampleValue: schema: *ref_6 rawValue: ruleCollectionGroup1 - language: *ref_1347 + language: *ref_1359 parameter: *ref_639 - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1349 - parameter: *ref_1348 + language: *ref_1361 + parameter: *ref_1360 - exampleValue: schema: *ref_276 parentsValue: {} properties: priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 110 - language: *ref_1308 + language: *ref_1320 ruleCollections: schema: *ref_441 elements: @@ -35186,7 +35362,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Filter-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_385 parentsValue: {} @@ -35194,12 +35370,12 @@ testModel: type: schema: *ref_269 rawValue: Deny - language: *ref_1331 - language: *ref_1330 + language: *ref_1343 + language: *ref_1342 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyFilterRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_454 elements: @@ -35209,11 +35385,11 @@ testModel: name: schema: *ref_266 rawValue: rule1 - language: *ref_1321 + language: *ref_1333 description: schema: *ref_267 rawValue: Deny inbound rule - language: *ref_1344 + language: *ref_1356 protocols: schema: *ref_457 elements: @@ -35223,16 +35399,16 @@ testModel: port: schema: *ref_241 rawValue: 443 - language: *ref_1342 + language: *ref_1354 protocolType: schema: *ref_240 rawValue: Https - language: *ref_1341 - language: *ref_1340 + language: *ref_1353 + language: *ref_1352 ruleType: schema: *ref_265 rawValue: ApplicationRule - language: *ref_1322 + language: *ref_1334 sourceAddresses: schema: *ref_455 elements: @@ -35240,20 +35416,20 @@ testModel: rawValue: 216.58.216.164 - schema: *ref_238 rawValue: 10.0.0.0/24 - language: *ref_1339 + language: *ref_1351 webCategories: schema: *ref_462 elements: - schema: *ref_247 rawValue: Hacking - language: *ref_1343 - language: *ref_1332 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1350 + language: *ref_1355 + language: *ref_1344 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1362 parameter: *ref_635 - operation: *ref_1353 - operationGroup: *ref_1299 + operation: *ref_1365 + operationGroup: *ref_1311 originalFile: '' responses: '200': @@ -35264,25 +35440,25 @@ testModel: name: schema: *ref_231 rawValue: ruleCollectionGroup1 - language: *ref_1306 + language: *ref_1318 etag: schema: *ref_232 rawValue: w/\00000000-0000-0000-0000-000000000000\ - language: *ref_1307 + language: *ref_1319 id: schema: *ref_277 rawValue: /subscriptions/e747cc13-97d4-4a79-b463-42d7f4e558f2/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 - language: *ref_1218 + language: *ref_1230 priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 110 - language: *ref_1308 + language: *ref_1320 provisioningState: schema: *ref_184 - flattenedNames: *ref_1328 + flattenedNames: *ref_1340 rawValue: Succeeded - language: *ref_1327 + language: *ref_1339 ruleCollections: schema: *ref_441 elements: @@ -35292,7 +35468,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Filter-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_385 parentsValue: {} @@ -35300,12 +35476,12 @@ testModel: type: schema: *ref_269 rawValue: Deny - language: *ref_1331 - language: *ref_1330 + language: *ref_1343 + language: *ref_1342 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyFilterRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_454 elements: @@ -35315,11 +35491,11 @@ testModel: name: schema: *ref_266 rawValue: rule1 - language: *ref_1321 + language: *ref_1333 description: schema: *ref_267 rawValue: Deny inbound rule - language: *ref_1344 + language: *ref_1356 protocols: schema: *ref_457 elements: @@ -35329,16 +35505,16 @@ testModel: port: schema: *ref_241 rawValue: 443 - language: *ref_1342 + language: *ref_1354 protocolType: schema: *ref_240 rawValue: Https - language: *ref_1341 - language: *ref_1340 + language: *ref_1353 + language: *ref_1352 ruleType: schema: *ref_265 rawValue: ApplicationRule - language: *ref_1322 + language: *ref_1334 sourceAddresses: schema: *ref_455 elements: @@ -35346,17 +35522,17 @@ testModel: rawValue: 216.58.216.164 - schema: *ref_238 rawValue: 10.0.0.0/24 - language: *ref_1339 + language: *ref_1351 webCategories: schema: *ref_462 elements: - schema: *ref_247 rawValue: Hacking - language: *ref_1343 - language: *ref_1332 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1351 + language: *ref_1355 + language: *ref_1344 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1363 '201': body: schema: *ref_276 @@ -35365,25 +35541,25 @@ testModel: name: schema: *ref_231 rawValue: firewallPolicy - language: *ref_1306 + language: *ref_1318 etag: schema: *ref_232 rawValue: w/\00000000-0000-0000-0000-000000000000\ - language: *ref_1307 + language: *ref_1319 id: schema: *ref_277 rawValue: /subscriptions/e747cc13-97d4-4a79-b463-42d7f4e558f2/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy - language: *ref_1218 + language: *ref_1230 priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 110 - language: *ref_1308 + language: *ref_1320 provisioningState: schema: *ref_184 - flattenedNames: *ref_1328 + flattenedNames: *ref_1340 rawValue: Succeeded - language: *ref_1327 + language: *ref_1339 ruleCollections: schema: *ref_441 elements: @@ -35393,7 +35569,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Filter-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_385 parentsValue: {} @@ -35401,12 +35577,12 @@ testModel: type: schema: *ref_269 rawValue: Deny - language: *ref_1331 - language: *ref_1330 + language: *ref_1343 + language: *ref_1342 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyFilterRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_454 elements: @@ -35416,11 +35592,11 @@ testModel: name: schema: *ref_266 rawValue: rule1 - language: *ref_1321 + language: *ref_1333 description: schema: *ref_267 rawValue: Deny inbound rule - language: *ref_1344 + language: *ref_1356 protocols: schema: *ref_457 elements: @@ -35430,16 +35606,16 @@ testModel: port: schema: *ref_241 rawValue: 443 - language: *ref_1342 + language: *ref_1354 protocolType: schema: *ref_240 rawValue: Https - language: *ref_1341 - language: *ref_1340 + language: *ref_1353 + language: *ref_1352 ruleType: schema: *ref_265 rawValue: ApplicationRule - language: *ref_1322 + language: *ref_1334 sourceAddresses: schema: *ref_455 elements: @@ -35447,19 +35623,19 @@ testModel: rawValue: 216.58.216.164 - schema: *ref_238 rawValue: 10.0.0.0/24 - language: *ref_1339 + language: *ref_1351 webCategories: schema: *ref_462 elements: - schema: *ref_247 rawValue: Hacking - language: *ref_1343 - language: *ref_1332 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1352 - operation: *ref_1353 - operationGroup: *ref_1299 + language: *ref_1355 + language: *ref_1344 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1364 + operation: *ref_1365 + operationGroup: *ref_1311 - operationId: FirewallPolicyRuleCollectionGroups_List examples: - name: List all FirewallPolicyRuleCollectionGroup With Web Categories @@ -35467,26 +35643,26 @@ testModel: - exampleValue: schema: *ref_475 rawValue: e747cc13-97d4-4a79-b463-42d7f4e558f2 - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_6 rawValue: rg1 - language: *ref_1354 + language: *ref_1366 parameter: *ref_640 - exampleValue: schema: *ref_6 rawValue: firewallPolicy - language: *ref_1355 + language: *ref_1367 parameter: *ref_641 - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1357 - parameter: *ref_1356 - operation: *ref_1360 - operationGroup: *ref_1299 + language: *ref_1369 + parameter: *ref_1368 + operation: *ref_1372 + operationGroup: *ref_1311 originalFile: '' responses: '200': @@ -35503,25 +35679,25 @@ testModel: name: schema: *ref_231 rawValue: ruleCollectionGroup1 - language: *ref_1306 + language: *ref_1318 etag: schema: *ref_232 rawValue: W/"72090554-7e3b-43f2-80ad-99a9020dcb11" - language: *ref_1307 + language: *ref_1319 id: schema: *ref_277 rawValue: /subscriptions/e747cc13-97d4-4a79-b463-42d7f4e558f2/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 - language: *ref_1218 + language: *ref_1230 priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 110 - language: *ref_1308 + language: *ref_1320 provisioningState: schema: *ref_184 - flattenedNames: *ref_1328 + flattenedNames: *ref_1340 rawValue: Succeeded - language: *ref_1327 + language: *ref_1339 ruleCollections: schema: *ref_441 elements: @@ -35531,7 +35707,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Filter-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_385 parentsValue: {} @@ -35539,16 +35715,16 @@ testModel: type: schema: *ref_269 rawValue: Deny - language: *ref_1331 - language: *ref_1330 + language: *ref_1343 + language: *ref_1342 priority: schema: *ref_275 rawValue: 120 - language: *ref_1325 + language: *ref_1337 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyFilterRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_454 elements: @@ -35558,11 +35734,11 @@ testModel: name: schema: *ref_266 rawValue: rule1 - language: *ref_1321 + language: *ref_1333 description: schema: *ref_267 rawValue: Deny inbound rule - language: *ref_1344 + language: *ref_1356 protocols: schema: *ref_457 elements: @@ -35572,16 +35748,16 @@ testModel: port: schema: *ref_241 rawValue: 443 - language: *ref_1342 + language: *ref_1354 protocolType: schema: *ref_240 rawValue: Https - language: *ref_1341 - language: *ref_1340 + language: *ref_1353 + language: *ref_1352 ruleType: schema: *ref_265 rawValue: ApplicationRule - language: *ref_1322 + language: *ref_1334 sourceAddresses: schema: *ref_455 elements: @@ -35589,43 +35765,43 @@ testModel: rawValue: 216.58.216.164 - schema: *ref_238 rawValue: 10.0.0.0/24 - language: *ref_1339 + language: *ref_1351 webCategories: schema: *ref_462 elements: - schema: *ref_247 rawValue: Hacking - language: *ref_1343 - language: *ref_1332 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1359 - language: *ref_1358 + language: *ref_1355 + language: *ref_1344 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1371 + language: *ref_1370 - name: List all FirewallPolicyRuleCollectionGroups for a given FirewallPolicy clientParameters: - exampleValue: schema: *ref_475 rawValue: subid - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_6 rawValue: rg1 - language: *ref_1354 + language: *ref_1366 parameter: *ref_640 - exampleValue: schema: *ref_6 rawValue: firewallPolicy - language: *ref_1355 + language: *ref_1367 parameter: *ref_641 - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1357 - parameter: *ref_1356 - operation: *ref_1360 - operationGroup: *ref_1299 + language: *ref_1369 + parameter: *ref_1368 + operation: *ref_1372 + operationGroup: *ref_1311 originalFile: '' responses: '200': @@ -35642,25 +35818,25 @@ testModel: name: schema: *ref_231 rawValue: ruleCollectionGroup1 - language: *ref_1306 + language: *ref_1318 etag: schema: *ref_232 rawValue: W/"72090554-7e3b-43f2-80ad-99a9020dcb11" - language: *ref_1307 + language: *ref_1319 id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 - language: *ref_1218 + language: *ref_1230 priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 110 - language: *ref_1308 + language: *ref_1320 provisioningState: schema: *ref_184 - flattenedNames: *ref_1328 + flattenedNames: *ref_1340 rawValue: Succeeded - language: *ref_1327 + language: *ref_1339 ruleCollections: schema: *ref_441 elements: @@ -35670,7 +35846,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Filter-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_385 parentsValue: {} @@ -35678,16 +35854,16 @@ testModel: type: schema: *ref_269 rawValue: Deny - language: *ref_1331 - language: *ref_1330 + language: *ref_1343 + language: *ref_1342 priority: schema: *ref_275 rawValue: 120 - language: *ref_1325 + language: *ref_1337 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyFilterRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_454 elements: @@ -35697,69 +35873,69 @@ testModel: name: schema: *ref_266 rawValue: network-rule-1 - language: *ref_1321 + language: *ref_1333 description: schema: *ref_267 rawValue: Network rule - language: *ref_1344 + language: *ref_1356 destinationAddresses: schema: *ref_470 elements: - schema: *ref_257 rawValue: '*' - language: *ref_1335 + language: *ref_1347 destinationPorts: schema: *ref_471 elements: - schema: *ref_258 rawValue: '*' - language: *ref_1336 + language: *ref_1348 ipProtocols: schema: *ref_468 elements: - schema: *ref_248 rawValue: TCP - language: *ref_1333 + language: *ref_1345 ruleType: schema: *ref_265 rawValue: NetworkRule - language: *ref_1322 + language: *ref_1334 sourceAddresses: schema: *ref_469 elements: - schema: *ref_256 rawValue: 10.1.25.0/24 - language: *ref_1334 - language: *ref_1332 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1359 - language: *ref_1358 + language: *ref_1346 + language: *ref_1344 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1371 + language: *ref_1370 - name: List all FirewallPolicyRuleCollectionGroups with IpGroups for a given FirewallPolicy clientParameters: - exampleValue: schema: *ref_475 rawValue: subid - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_6 rawValue: rg1 - language: *ref_1354 + language: *ref_1366 parameter: *ref_640 - exampleValue: schema: *ref_6 rawValue: firewallPolicy - language: *ref_1355 + language: *ref_1367 parameter: *ref_641 - exampleValue: schema: *ref_617 rawValue: '2021-02-01' - language: *ref_1357 - parameter: *ref_1356 - operation: *ref_1360 - operationGroup: *ref_1299 + language: *ref_1369 + parameter: *ref_1368 + operation: *ref_1372 + operationGroup: *ref_1311 originalFile: '' responses: '200': @@ -35776,25 +35952,25 @@ testModel: name: schema: *ref_231 rawValue: ruleCollectionGroup1 - language: *ref_1306 + language: *ref_1318 etag: schema: *ref_232 rawValue: W/"72090554-7e3b-43f2-80ad-99a9020dcb11" - language: *ref_1307 + language: *ref_1319 id: schema: *ref_277 rawValue: /subscriptions/subid/resourceGroups/rg1/providers/Microsoft.Network/firewallPolicies/firewallPolicy/ruleCollectionGroups/ruleCollectionGroup1 - language: *ref_1218 + language: *ref_1230 priority: schema: *ref_234 - flattenedNames: *ref_1309 + flattenedNames: *ref_1321 rawValue: 110 - language: *ref_1308 + language: *ref_1320 provisioningState: schema: *ref_184 - flattenedNames: *ref_1328 + flattenedNames: *ref_1340 rawValue: Succeeded - language: *ref_1327 + language: *ref_1339 ruleCollections: schema: *ref_441 elements: @@ -35804,7 +35980,7 @@ testModel: name: schema: *ref_274 rawValue: Example-Filter-Rule-Collection - language: *ref_1324 + language: *ref_1336 action: schema: *ref_385 parentsValue: {} @@ -35812,16 +35988,16 @@ testModel: type: schema: *ref_269 rawValue: Deny - language: *ref_1331 - language: *ref_1330 + language: *ref_1343 + language: *ref_1342 priority: schema: *ref_275 rawValue: 120 - language: *ref_1325 + language: *ref_1337 ruleCollectionType: schema: *ref_272 rawValue: FirewallPolicyFilterRuleCollection - language: *ref_1323 + language: *ref_1335 rules: schema: *ref_454 elements: @@ -35831,46 +36007,46 @@ testModel: name: schema: *ref_266 rawValue: network-rule-1 - language: *ref_1321 + language: *ref_1333 description: schema: *ref_267 rawValue: Network rule - language: *ref_1344 + language: *ref_1356 destinationIpGroups: schema: *ref_473 elements: - schema: *ref_260 rawValue: /subscriptions/subid/providers/Microsoft.Network/resourceGroup/rg1/ipGroups/ipGroups2 - language: *ref_1338 + language: *ref_1350 destinationPorts: schema: *ref_471 elements: - schema: *ref_258 rawValue: '*' - language: *ref_1336 + language: *ref_1348 ipProtocols: schema: *ref_468 elements: - schema: *ref_248 rawValue: TCP - language: *ref_1333 + language: *ref_1345 ruleType: schema: *ref_265 rawValue: NetworkRule - language: *ref_1322 + language: *ref_1334 sourceIpGroups: schema: *ref_472 elements: - schema: *ref_259 rawValue: /subscriptions/subid/providers/Microsoft.Network/resourceGroup/rg1/ipGroups/ipGroups1 - language: *ref_1337 - language: *ref_1332 - flattenedNames: *ref_1326 - language: *ref_1310 - language: *ref_1359 - language: *ref_1358 - operation: *ref_1360 - operationGroup: *ref_1299 + language: *ref_1349 + language: *ref_1344 + flattenedNames: *ref_1338 + language: *ref_1322 + language: *ref_1371 + language: *ref_1370 + operation: *ref_1372 + operationGroup: *ref_1311 - operationId: Operations_List examples: - name: Lists available Rest API operations. @@ -35879,10 +36055,10 @@ testModel: - exampleValue: schema: *ref_478 rawValue: '2021-10-01' - language: *ref_1362 - parameter: *ref_1361 - operation: *ref_1394 - operationGroup: *ref_1395 + language: *ref_1374 + parameter: *ref_1373 + operation: *ref_1406 + operationGroup: *ref_1407 originalFile: '' responses: '200': @@ -35899,7 +36075,7 @@ testModel: name: schema: *ref_315 rawValue: Microsoft.KeyVault/vaults/read - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -35907,31 +36083,31 @@ testModel: description: schema: *ref_319 rawValue: View the properties of a key vault - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: View Key Vault - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Key Vault - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/vaults/write - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -35939,31 +36115,31 @@ testModel: description: schema: *ref_319 rawValue: Create a new key vault or update the properties of an existing key vault - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Update Key Vault - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Key Vault - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/vaults/delete - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -35971,31 +36147,31 @@ testModel: description: schema: *ref_319 rawValue: Delete a key vault - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Delete Key Vault - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Key Vault - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/vaults/deploy/action - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36003,31 +36179,31 @@ testModel: description: schema: *ref_319 rawValue: Enables access to secrets in a key vault when deploying Azure resources - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Use Vault for Azure Deployments - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Key Vault - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/vaults/secrets/read - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36035,31 +36211,31 @@ testModel: description: schema: *ref_319 rawValue: View the properties of a secret, but not its value - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: View Secret Properties - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Secret - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/vaults/secrets/write - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36067,31 +36243,31 @@ testModel: description: schema: *ref_319 rawValue: Create a new secret or update the value of an existing secret - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Update Secret - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Secret - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/vaults/accessPolicies/write - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36099,31 +36275,31 @@ testModel: description: schema: *ref_319 rawValue: Update an existing access policy by merging or replacing, or add a new access policy to a vault. - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Update Access Policy - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Access Policy - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/vaults/providers/Microsoft.Insights/logDefinitions/read - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36131,31 +36307,31 @@ testModel: description: schema: *ref_319 rawValue: Gets the available logs for a key vault - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Read log definition - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Key Vault Log Definition - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 origin: schema: *ref_320 rawValue: system - language: *ref_1372 + language: *ref_1384 serviceSpecification: schema: *ref_341 - flattenedNames: *ref_1393 + flattenedNames: *ref_1405 parentsValue: {} properties: logSpecifications: @@ -36167,16 +36343,16 @@ testModel: name: schema: *ref_322 rawValue: AuditEvent - language: *ref_1375 + language: *ref_1387 blobDuration: schema: *ref_324 rawValue: PT1H - language: *ref_1377 + language: *ref_1389 displayName: schema: *ref_323 rawValue: Audit Logs - language: *ref_1376 - language: *ref_1374 + language: *ref_1388 + language: *ref_1386 metricSpecifications: schema: *ref_447 elements: @@ -36186,11 +36362,11 @@ testModel: name: schema: *ref_325 rawValue: ServiceApiHit - language: *ref_1379 + language: *ref_1391 aggregationType: schema: *ref_329 rawValue: '' - language: *ref_1383 + language: *ref_1395 dimensions: schema: *ref_446 elements: @@ -36200,76 +36376,76 @@ testModel: name: schema: *ref_333 rawValue: ActivityType - language: *ref_1388 + language: *ref_1400 displayName: schema: *ref_334 rawValue: '' - language: *ref_1389 + language: *ref_1401 toBeExportedForShoebox: schema: *ref_335 rawValue: true - language: *ref_1390 + language: *ref_1402 - schema: *ref_344 parentsValue: {} properties: name: schema: *ref_333 rawValue: ActivityName - language: *ref_1388 + language: *ref_1400 displayName: schema: *ref_334 rawValue: '' - language: *ref_1389 + language: *ref_1401 toBeExportedForShoebox: schema: *ref_335 rawValue: true - language: *ref_1390 - language: *ref_1387 + language: *ref_1402 + language: *ref_1399 displayDescription: schema: *ref_327 rawValue: '' - language: *ref_1381 + language: *ref_1393 displayName: schema: *ref_326 rawValue: '' - language: *ref_1380 + language: *ref_1392 fillGapWithZero: schema: *ref_336 rawValue: false - language: *ref_1391 + language: *ref_1403 internalMetricName: schema: *ref_337 rawValue: AuditEvent - language: *ref_1392 + language: *ref_1404 lockAggregationType: schema: *ref_332 rawValue: '' - language: *ref_1386 + language: *ref_1398 supportedAggregationTypes: schema: *ref_444 elements: - schema: *ref_330 rawValue: '' - language: *ref_1384 + language: *ref_1396 supportedTimeGrainTypes: schema: *ref_445 elements: - schema: *ref_331 rawValue: '' - language: *ref_1385 + language: *ref_1397 unit: schema: *ref_328 rawValue: '' - language: *ref_1382 - language: *ref_1378 - language: *ref_1373 + language: *ref_1394 + language: *ref_1390 + language: *ref_1385 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/vaults/providers/Microsoft.Insights/diagnosticSettings/Read - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36277,35 +36453,35 @@ testModel: description: schema: *ref_319 rawValue: Gets the diagnostic setting for the resource - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Read diagnostic setting - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Key Vault Diagnostic Settings - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 origin: schema: *ref_320 rawValue: system - language: *ref_1372 + language: *ref_1384 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/vaults/providers/Microsoft.Insights/diagnosticSettings/Write - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36313,35 +36489,35 @@ testModel: description: schema: *ref_319 rawValue: Creates or updates the diagnostic setting for the resource - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Write diagnostic setting - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Key Vault Diagnostic Settings - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 origin: schema: *ref_320 rawValue: system - language: *ref_1372 + language: *ref_1384 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/register/action - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36349,31 +36525,31 @@ testModel: description: schema: *ref_319 rawValue: Registers a subscription - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Register Subscription - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Subscription - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/unregister/action - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36381,31 +36557,31 @@ testModel: description: schema: *ref_319 rawValue: Unregisters a subscription - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Unregister Subscription - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Subscription - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/operations/read - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36413,31 +36589,31 @@ testModel: description: schema: *ref_319 rawValue: Lists operations available on Microsoft.KeyVault resource provider - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Available Key Vault Operations - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Operations - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/checkNameAvailability/read - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36445,31 +36621,31 @@ testModel: description: schema: *ref_319 rawValue: Checks that a key vault name is valid and is not in use - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Check Name Availability - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Name Availability - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/deletedVaults/read - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36477,31 +36653,31 @@ testModel: description: schema: *ref_319 rawValue: View the properties of soft deleted key vaults - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: View Soft Deleted Vaults - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Soft Deleted Key Vault - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/locations/deletedVaults/read - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36509,31 +36685,31 @@ testModel: description: schema: *ref_319 rawValue: View the properties of a soft deleted key vault - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: View Soft Deleted Key Vault - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Soft Deleted Key Vault - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/locations/deletedVaults/purge/action - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36541,31 +36717,31 @@ testModel: description: schema: *ref_319 rawValue: Purge a soft deleted key vault - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Purge Soft Deleted Key Vault - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Soft Deleted Key Vault - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/locations/operationResults/read - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36573,31 +36749,31 @@ testModel: description: schema: *ref_319 rawValue: Check the result of a long run operation - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Check Operation Result - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Long Run Operation Result - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/hsmPools/read - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36605,31 +36781,31 @@ testModel: description: schema: *ref_319 rawValue: View the properties of an HSM pool - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: View HSM pool - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: HSM pool - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/hsmPools/write - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36637,31 +36813,31 @@ testModel: description: schema: *ref_319 rawValue: Create a new HSM pool of update the properties of an existing HSM pool - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Create or Update HSM pool - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: HSM pool - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/hsmPools/delete - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36669,31 +36845,31 @@ testModel: description: schema: *ref_319 rawValue: Delete an HSM pool - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Delete HSM pool - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: HSM pool - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/hsmPools/joinVault/action - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36701,31 +36877,31 @@ testModel: description: schema: *ref_319 rawValue: Join a key vault to an HSM pool - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Join KeyVault to HSM pool - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: HSM pool - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/managedHSMs/read - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36733,31 +36909,31 @@ testModel: description: schema: *ref_319 rawValue: View the properties of a Managed HSM - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: View Managed HSM - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Managed HSM - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/managedHSMs/write - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36765,31 +36941,31 @@ testModel: description: schema: *ref_319 rawValue: Create a new Managed HSM of update the properties of an existing Managed HSM - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Create or Update Managed HSM - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Managed HSM - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/managedHSMs/delete - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36797,31 +36973,31 @@ testModel: description: schema: *ref_319 rawValue: Delete a Managed HSM - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Delete Managed HSM - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Managed HSM - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/vaults/providers/Microsoft.Insights/metricDefinitions/read - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36829,41 +37005,41 @@ testModel: description: schema: *ref_319 rawValue: Gets the available metrics for a key vault - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: Read metric definition - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Key Vault Metric Definition - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 origin: schema: *ref_320 rawValue: system - language: *ref_1372 + language: *ref_1384 serviceSpecification: schema: *ref_341 - flattenedNames: *ref_1393 + flattenedNames: *ref_1405 parentsValue: {} properties: {} - language: *ref_1373 + language: *ref_1385 - schema: *ref_339 parentsValue: {} properties: name: schema: *ref_315 rawValue: Microsoft.KeyVault/locations/deleteVirtualNetworkOrSubnets/action - language: *ref_1365 + language: *ref_1377 display: schema: *ref_340 parentsValue: {} @@ -36871,32 +37047,32 @@ testModel: description: schema: *ref_319 rawValue: Notifies Microsoft.KeyVault that a virtual network or subnet is being deleted - language: *ref_1370 + language: *ref_1382 operation: schema: *ref_318 rawValue: 'Modify Network ACLs containing the deleted Vitual Network or Subnet ' - language: *ref_1369 + language: *ref_1381 provider: schema: *ref_316 rawValue: Microsoft Key Vault - language: *ref_1367 + language: *ref_1379 resource: schema: *ref_317 rawValue: Location - language: *ref_1368 - language: *ref_1366 + language: *ref_1380 + language: *ref_1378 isDataAction: schema: *ref_321 rawValue: false - language: *ref_1371 + language: *ref_1383 origin: schema: *ref_320 rawValue: system - language: *ref_1372 - language: *ref_1364 - language: *ref_1363 - operation: *ref_1394 - operationGroup: *ref_1395 + language: *ref_1384 + language: *ref_1376 + language: *ref_1375 + operation: *ref_1406 + operationGroup: *ref_1407 - operationId: RoleAssignments_Delete examples: - name: Delete role assignment by name @@ -36905,20 +37081,20 @@ testModel: - exampleValue: schema: *ref_644 rawValue: scope - language: *ref_1396 + language: *ref_1408 parameter: *ref_646 - exampleValue: schema: *ref_644 rawValue: roleAssignmentName - language: *ref_1397 + language: *ref_1409 parameter: *ref_647 - exampleValue: schema: *ref_645 rawValue: 2017-10-01-preview - language: *ref_1399 - parameter: *ref_1398 - operation: *ref_1412 - operationGroup: *ref_1413 + language: *ref_1411 + parameter: *ref_1410 + operation: *ref_1424 + operationGroup: *ref_1425 originalFile: '' responses: '200': @@ -36929,39 +37105,39 @@ testModel: name: schema: *ref_346 rawValue: roleassignmentId - language: *ref_1402 + language: *ref_1414 type: schema: *ref_347 rawValue: Microsoft.Authorization/roleAssignments - language: *ref_1403 + language: *ref_1415 canDelegate: schema: *ref_351 - flattenedNames: *ref_1411 + flattenedNames: *ref_1423 rawValue: false - language: *ref_1410 + language: *ref_1422 id: schema: *ref_345 rawValue: /subscriptions/subId/resourcegroups/rgname/providers/Microsoft.Authorization/roleAssignments/roleassignmentId - language: *ref_1401 + language: *ref_1413 principalId: schema: *ref_350 - flattenedNames: *ref_1409 + flattenedNames: *ref_1421 rawValue: Pid - language: *ref_1408 + language: *ref_1420 roleDefinitionId: schema: *ref_349 - flattenedNames: *ref_1407 + flattenedNames: *ref_1419 rawValue: /subscriptions/subId/providers/Microsoft.Authorization/roleDefinitions/roledefinitionId - language: *ref_1406 + language: *ref_1418 scope: schema: *ref_348 - flattenedNames: *ref_1405 + flattenedNames: *ref_1417 rawValue: /subscriptions/subId/resourcegroups/rgname - language: *ref_1404 - language: *ref_1400 + language: *ref_1416 + language: *ref_1412 '204': {} - operation: *ref_1412 - operationGroup: *ref_1413 + operation: *ref_1424 + operationGroup: *ref_1425 - operationId: RoleAssignments_Create examples: - name: Create role assignment @@ -36970,41 +37146,41 @@ testModel: - exampleValue: schema: *ref_644 rawValue: scope - language: *ref_1414 + language: *ref_1426 parameter: *ref_651 - exampleValue: schema: *ref_644 rawValue: roleAssignmentName - language: *ref_1415 + language: *ref_1427 parameter: *ref_652 - exampleValue: schema: *ref_645 rawValue: 2017-10-01-preview - language: *ref_1417 - parameter: *ref_1416 + language: *ref_1429 + parameter: *ref_1428 - exampleValue: schema: *ref_648 parentsValue: {} properties: canDelegate: schema: *ref_354 - flattenedNames: *ref_1424 + flattenedNames: *ref_1436 rawValue: false - language: *ref_1423 + language: *ref_1435 principalId: schema: *ref_353 - flattenedNames: *ref_1422 + flattenedNames: *ref_1434 rawValue: d93a38bc-d029-4160-bfb0-fbda779ac214 - language: *ref_1421 + language: *ref_1433 roleDefinitionId: schema: *ref_352 - flattenedNames: *ref_1420 + flattenedNames: *ref_1432 rawValue: /subscriptions/4004a9fd-d58e-48dc-aeb2-4a4aec58606f/providers/Microsoft.Authorization/roleDefinitions/de139f84-1756-47ae-9be6-808fbbe84772 - language: *ref_1419 - language: *ref_1418 + language: *ref_1431 + language: *ref_1430 parameter: *ref_649 - operation: *ref_1426 - operationGroup: *ref_1413 + operation: *ref_1438 + operationGroup: *ref_1425 originalFile: '' responses: '201': @@ -37015,38 +37191,38 @@ testModel: name: schema: *ref_346 rawValue: roleassignmentId - language: *ref_1402 + language: *ref_1414 type: schema: *ref_347 rawValue: Microsoft.Authorization/roleAssignments - language: *ref_1403 + language: *ref_1415 canDelegate: schema: *ref_351 - flattenedNames: *ref_1411 + flattenedNames: *ref_1423 rawValue: false - language: *ref_1410 + language: *ref_1422 id: schema: *ref_345 rawValue: /subscriptions/subId/resourcegroups/rgname/providers/Microsoft.Authorization/roleAssignments/roleassignmentId - language: *ref_1401 + language: *ref_1413 principalId: schema: *ref_350 - flattenedNames: *ref_1409 + flattenedNames: *ref_1421 rawValue: Pid - language: *ref_1408 + language: *ref_1420 roleDefinitionId: schema: *ref_349 - flattenedNames: *ref_1407 + flattenedNames: *ref_1419 rawValue: /subscriptions/subId/providers/Microsoft.Authorization/roleDefinitions/roledefinitionId - language: *ref_1406 + language: *ref_1418 scope: schema: *ref_348 - flattenedNames: *ref_1405 + flattenedNames: *ref_1417 rawValue: /subscriptions/subId/resourcegroups/rgname - language: *ref_1404 - language: *ref_1425 - operation: *ref_1426 - operationGroup: *ref_1413 + language: *ref_1416 + language: *ref_1437 + operation: *ref_1438 + operationGroup: *ref_1425 - operationId: RoleAssignments_Get examples: - name: Get role assignment by name @@ -37055,20 +37231,20 @@ testModel: - exampleValue: schema: *ref_644 rawValue: scope - language: *ref_1427 + language: *ref_1439 parameter: *ref_653 - exampleValue: schema: *ref_644 rawValue: roleAssignmentName - language: *ref_1428 + language: *ref_1440 parameter: *ref_654 - exampleValue: schema: *ref_645 rawValue: 2017-10-01-preview - language: *ref_1430 - parameter: *ref_1429 - operation: *ref_1432 - operationGroup: *ref_1413 + language: *ref_1442 + parameter: *ref_1441 + operation: *ref_1444 + operationGroup: *ref_1425 originalFile: '' responses: '200': @@ -37079,38 +37255,38 @@ testModel: name: schema: *ref_346 rawValue: raId - language: *ref_1402 + language: *ref_1414 type: schema: *ref_347 rawValue: Microsoft.Authorization/roleAssignments - language: *ref_1403 + language: *ref_1415 canDelegate: schema: *ref_351 - flattenedNames: *ref_1411 + flattenedNames: *ref_1423 rawValue: false - language: *ref_1410 + language: *ref_1422 id: schema: *ref_345 rawValue: /subscriptions/subId/resourcegroups/rgname/providers/Microsoft.Authorization/roleAssignments/roleassignmentId - language: *ref_1401 + language: *ref_1413 principalId: schema: *ref_350 - flattenedNames: *ref_1409 + flattenedNames: *ref_1421 rawValue: Pid - language: *ref_1408 + language: *ref_1420 roleDefinitionId: schema: *ref_349 - flattenedNames: *ref_1407 + flattenedNames: *ref_1419 rawValue: /subscriptions/subId/providers/Microsoft.Authorization/roleDefinitions/roledefinitionId - language: *ref_1406 + language: *ref_1418 scope: schema: *ref_348 - flattenedNames: *ref_1405 + flattenedNames: *ref_1417 rawValue: /subscriptions/subId/resourcegroups/rgname - language: *ref_1404 - language: *ref_1431 - operation: *ref_1432 - operationGroup: *ref_1413 + language: *ref_1416 + language: *ref_1443 + operation: *ref_1444 + operationGroup: *ref_1425 - operationId: RoleAssignments_Validate examples: - name: Validate role assignments for subscription @@ -37118,26 +37294,26 @@ testModel: - exampleValue: schema: *ref_475 rawValue: subId - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: schema: *ref_645 rawValue: 2017-10-01-preview - language: *ref_1434 - parameter: *ref_1433 + language: *ref_1446 + parameter: *ref_1445 - exampleValue: schema: *ref_644 rawValue: roleAssignmentId - language: *ref_1435 + language: *ref_1447 parameter: *ref_655 - operation: *ref_1436 - operationGroup: *ref_1413 + operation: *ref_1448 + operationGroup: *ref_1425 originalFile: '' responses: '200': {} - operation: *ref_1436 - operationGroup: *ref_1413 + operation: *ref_1448 + operationGroup: *ref_1425 - operationId: RoleAssignments_ListForScope examples: - name: List role assignments for scope @@ -37146,15 +37322,15 @@ testModel: - exampleValue: schema: *ref_644 rawValue: scope - language: *ref_1437 + language: *ref_1449 parameter: *ref_656 - exampleValue: schema: *ref_645 rawValue: 2017-10-01-preview - language: *ref_1439 - parameter: *ref_1438 - operation: *ref_1442 - operationGroup: *ref_1413 + language: *ref_1451 + parameter: *ref_1450 + operation: *ref_1454 + operationGroup: *ref_1425 originalFile: '' responses: '200': @@ -37171,39 +37347,39 @@ testModel: name: schema: *ref_346 rawValue: raId - language: *ref_1402 + language: *ref_1414 type: schema: *ref_347 rawValue: Microsoft.Authorization/roleAssignments - language: *ref_1403 + language: *ref_1415 canDelegate: schema: *ref_351 - flattenedNames: *ref_1411 + flattenedNames: *ref_1423 rawValue: false - language: *ref_1410 + language: *ref_1422 id: schema: *ref_345 rawValue: /subscriptions/subId/resourcegroups/rgname/providers/Microsoft.Authorization/roleAssignments/roleassignmentId - language: *ref_1401 + language: *ref_1413 principalId: schema: *ref_350 - flattenedNames: *ref_1409 + flattenedNames: *ref_1421 rawValue: Pid - language: *ref_1408 + language: *ref_1420 roleDefinitionId: schema: *ref_349 - flattenedNames: *ref_1407 + flattenedNames: *ref_1419 rawValue: /subscriptions/subId/providers/Microsoft.Authorization/roleDefinitions/roledefinitionId - language: *ref_1406 + language: *ref_1418 scope: schema: *ref_348 - flattenedNames: *ref_1405 + flattenedNames: *ref_1417 rawValue: /subscriptions/subId/resourcegroups/rgname - language: *ref_1404 - language: *ref_1441 - language: *ref_1440 - operation: *ref_1442 - operationGroup: *ref_1413 + language: *ref_1416 + language: *ref_1453 + language: *ref_1452 + operation: *ref_1454 + operationGroup: *ref_1425 - operationId: TenantActivityLogs_List examples: - name: Get Tenant Activity Logs without filter or select @@ -37212,10 +37388,10 @@ testModel: - exampleValue: schema: *ref_659 rawValue: '2015-04-01' - language: *ref_1444 - parameter: *ref_1443 - operation: *ref_1453 - operationGroup: *ref_1454 + language: *ref_1456 + parameter: *ref_1455 + operation: *ref_1465 + operationGroup: *ref_1466 originalFile: '' responses: '200': @@ -37226,7 +37402,7 @@ testModel: nextLink: schema: *ref_361 rawValue: https://management.azure.com/########-####-####-####-############$skiptoken=###### - language: *ref_1452 + language: *ref_1464 value: schema: *ref_450 elements: @@ -37240,24 +37416,24 @@ testModel: action: schema: *ref_357 rawValue: microsoft.support/supporttickets/write - language: *ref_1448 + language: *ref_1460 role: schema: *ref_358 rawValue: Subscription Admin - language: *ref_1449 + language: *ref_1461 scope: schema: *ref_359 rawValue: /subscriptions/089bd33f-d4ec-47fe-8ba5-0753aa5c5b33/resourceGroups/MSSupportGroup/providers/microsoft.support/supporttickets/115012112305841 - language: *ref_1450 - language: *ref_1447 + language: *ref_1462 + language: *ref_1459 tenantId: schema: *ref_360 rawValue: 089bd33f-d4ec-47fe-8ba5-0753aa5c5b33 - language: *ref_1451 - language: *ref_1446 - language: *ref_1445 - operation: *ref_1453 - operationGroup: *ref_1454 + language: *ref_1463 + language: *ref_1458 + language: *ref_1457 + operation: *ref_1465 + operationGroup: *ref_1466 - operationId: Deployments_CalculateTemplateHash examples: - name: Calculate template hash @@ -37266,20 +37442,83 @@ testModel: - exampleValue: schema: *ref_665 rawValue: '2021-04-01' - language: *ref_1456 - parameter: *ref_1455 + language: *ref_1468 + parameter: *ref_1467 - exampleValue: schema: *ref_174 - rawValue: *ref_1458 - language: *ref_1457 - parameter: *ref_666 - operation: *ref_1462 - operationGroup: *ref_1463 + rawValue: *ref_1470 + language: *ref_1469 + parameter: *ref_672 + operation: *ref_1474 + operationGroup: *ref_1475 originalFile: '' responses: '200': body: + schema: *ref_680 + parentsValue: {} + properties: + minifiedTemplate: + schema: *ref_366 + rawValue: >- + {"$SCHEMA":"HTTP://SCHEMAS.MANAGEMENT.AZURE.COM/DEPLOYMENTTEMPLATE?API-VERSION=2014-04-01-PREVIEW","CONTENTVERSION":"1.0.0.0","PARAMETERS":{"STRING":{"TYPE":"STRING"}},"VARIABLES":{"STRING":"STRING","INT":42,"BOOL":TRUE,"ARRAY":[1,2,3,4],"OBJECT":{"OBJECT":{"VMSIZE":"LARGE","LOCATION":"WEST + US"}}},"RESOURCES":[],"OUTPUTS":{"STRING":{"TYPE":"STRING","VALUE":"MYVALUE"}}} + language: *ref_1472 + templateHash: + schema: *ref_367 + rawValue: '695440707931307747' + language: *ref_1473 + language: *ref_1471 + - name: Calculate template hash with query parameters + clientParameters: [] + methodParameters: + - exampleValue: + schema: *ref_665 + rawValue: '2021-04-01' + language: *ref_1468 + parameter: *ref_1467 + - exampleValue: + schema: *ref_666 + rawValue: first + language: *ref_1476 + parameter: *ref_674 + - exampleValue: + schema: *ref_667 + rawValue: 42 + language: *ref_1477 + parameter: *ref_675 + - exampleValue: schema: *ref_668 + rawValue: 4.2222222222222226e+35 + language: *ref_1478 + parameter: *ref_676 + - exampleValue: + schema: *ref_669 + rawValue: 3.14 + language: *ref_1479 + parameter: *ref_677 + - exampleValue: + schema: *ref_670 + rawValue: 3.14159265358 + language: *ref_1480 + parameter: *ref_678 + - exampleValue: + schema: *ref_671 + rawValue: true + language: *ref_1481 + parameter: *ref_679 + - exampleValue: + schema: *ref_174 + rawValue: *ref_1482 + language: *ref_1469 + parameter: *ref_672 + operation: *ref_1474 + operationGroup: *ref_1475 + originalFile: '' + responses: + '200': + body: + schema: *ref_680 parentsValue: {} properties: minifiedTemplate: @@ -37287,14 +37526,14 @@ testModel: rawValue: >- {"$SCHEMA":"HTTP://SCHEMAS.MANAGEMENT.AZURE.COM/DEPLOYMENTTEMPLATE?API-VERSION=2014-04-01-PREVIEW","CONTENTVERSION":"1.0.0.0","PARAMETERS":{"STRING":{"TYPE":"STRING"}},"VARIABLES":{"STRING":"STRING","INT":42,"BOOL":TRUE,"ARRAY":[1,2,3,4],"OBJECT":{"OBJECT":{"VMSIZE":"LARGE","LOCATION":"WEST US"}}},"RESOURCES":[],"OUTPUTS":{"STRING":{"TYPE":"STRING","VALUE":"MYVALUE"}}} - language: *ref_1460 + language: *ref_1472 templateHash: schema: *ref_367 rawValue: '695440707931307747' - language: *ref_1461 - language: *ref_1459 - operation: *ref_1462 - operationGroup: *ref_1463 + language: *ref_1473 + language: *ref_1471 + operation: *ref_1474 + operationGroup: *ref_1475 - operationId: GuestConfigurationAssignments_CreateOrUpdate examples: - name: Create or update guest configuration assignment @@ -37302,29 +37541,29 @@ testModel: - exampleValue: schema: *ref_475 rawValue: mySubscriptionId - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: - schema: *ref_669 + schema: *ref_681 rawValue: NotInstalledApplicationForWindows - language: *ref_1464 - parameter: *ref_674 + language: *ref_1483 + parameter: *ref_686 - exampleValue: - schema: *ref_670 + schema: *ref_682 rawValue: myResourceGroupName - language: *ref_1465 - parameter: *ref_675 + language: *ref_1484 + parameter: *ref_687 - exampleValue: - schema: *ref_669 + schema: *ref_681 rawValue: myVMName - language: *ref_1466 - parameter: *ref_676 + language: *ref_1485 + parameter: *ref_688 - exampleValue: - schema: *ref_671 + schema: *ref_683 rawValue: '2022-01-25' - language: *ref_1468 - parameter: *ref_1467 + language: *ref_1487 + parameter: *ref_1486 - exampleValue: schema: *ref_368 parentsValue: {} @@ -37332,11 +37571,11 @@ testModel: name: schema: *ref_370 rawValue: NotInstalledApplicationForWindows - language: *ref_1472 + language: *ref_1491 location: schema: *ref_371 rawValue: westcentralus - language: *ref_1473 + language: *ref_1492 properties: schema: *ref_382 parentsValue: {} @@ -37344,12 +37583,12 @@ testModel: context: schema: *ref_379 rawValue: Azure policy - language: *ref_1471 - language: *ref_1470 - language: *ref_1469 - parameter: *ref_672 - operation: *ref_1485 - operationGroup: *ref_1486 + language: *ref_1490 + language: *ref_1489 + language: *ref_1488 + parameter: *ref_684 + operation: *ref_1504 + operationGroup: *ref_1505 originalFile: '' responses: '200': @@ -37360,16 +37599,16 @@ testModel: name: schema: *ref_370 rawValue: NotInstalledApplicationForWindows - language: *ref_1472 + language: *ref_1491 id: schema: *ref_369 rawValue: >- /subscriptions/mysubscriptionid/resourceGroups/myResourceGroupName/providers/Microsoft.Compute/virtualMachines/myvm/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/NotInstalledApplicationForWindows - language: *ref_1481 + language: *ref_1500 location: schema: *ref_371 rawValue: westcentralus - language: *ref_1473 + language: *ref_1492 properties: schema: *ref_382 parentsValue: {} @@ -37377,34 +37616,34 @@ testModel: assignmentHash: schema: *ref_380 rawValue: null - language: *ref_1478 + language: *ref_1497 complianceStatus: schema: *ref_375 rawValue: Pending - language: *ref_1475 + language: *ref_1494 context: schema: *ref_379 rawValue: Azure policy - language: *ref_1471 + language: *ref_1490 lastComplianceStatusChecked: schema: *ref_376 rawValue: null - language: *ref_1476 + language: *ref_1495 latestReportId: schema: *ref_377 rawValue: null - language: *ref_1477 + language: *ref_1496 provisioningState: schema: *ref_184 rawValue: Succeeded - language: *ref_1479 + language: *ref_1498 resourceType: schema: *ref_381 rawValue: null - language: *ref_1480 - language: *ref_1470 - language: *ref_1474 - headers: *ref_1482 + language: *ref_1499 + language: *ref_1489 + language: *ref_1493 + headers: *ref_1501 '201': body: schema: *ref_368 @@ -37413,16 +37652,16 @@ testModel: name: schema: *ref_370 rawValue: NotInstalledApplicationForWindows - language: *ref_1472 + language: *ref_1491 id: schema: *ref_369 rawValue: >- /subscriptions/mysubscriptionid/resourceGroups/myResourceGroupName/providers/Microsoft.Compute/virtualMachines/myvm/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/NotInstalledApplicationForWindows - language: *ref_1481 + language: *ref_1500 location: schema: *ref_371 rawValue: westcentralus - language: *ref_1473 + language: *ref_1492 properties: schema: *ref_382 parentsValue: {} @@ -37430,36 +37669,36 @@ testModel: assignmentHash: schema: *ref_380 rawValue: null - language: *ref_1478 + language: *ref_1497 complianceStatus: schema: *ref_375 rawValue: Pending - language: *ref_1475 + language: *ref_1494 context: schema: *ref_379 rawValue: Azure policy - language: *ref_1471 + language: *ref_1490 lastComplianceStatusChecked: schema: *ref_376 rawValue: null - language: *ref_1476 + language: *ref_1495 latestReportId: schema: *ref_377 rawValue: null - language: *ref_1477 + language: *ref_1496 provisioningState: schema: *ref_184 rawValue: Succeeded - language: *ref_1479 + language: *ref_1498 resourceType: schema: *ref_381 rawValue: null - language: *ref_1480 - language: *ref_1470 - language: *ref_1483 - headers: *ref_1484 - operation: *ref_1485 - operationGroup: *ref_1486 + language: *ref_1499 + language: *ref_1489 + language: *ref_1502 + headers: *ref_1503 + operation: *ref_1504 + operationGroup: *ref_1505 - operationId: GuestConfigurationAssignments_Get examples: - name: Get a guest configuration assignment @@ -37467,31 +37706,31 @@ testModel: - exampleValue: schema: *ref_475 rawValue: mySubscriptionId - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: - schema: *ref_670 + schema: *ref_682 rawValue: myResourceGroupName - language: *ref_1487 - parameter: *ref_677 + language: *ref_1506 + parameter: *ref_689 - exampleValue: - schema: *ref_669 + schema: *ref_681 rawValue: SecureProtocol - language: *ref_1488 - parameter: *ref_678 + language: *ref_1507 + parameter: *ref_690 - exampleValue: - schema: *ref_669 + schema: *ref_681 rawValue: myVMName - language: *ref_1489 - parameter: *ref_679 + language: *ref_1508 + parameter: *ref_691 - exampleValue: - schema: *ref_671 + schema: *ref_683 rawValue: '2022-01-25' - language: *ref_1491 - parameter: *ref_1490 - operation: *ref_1494 - operationGroup: *ref_1486 + language: *ref_1510 + parameter: *ref_1509 + operation: *ref_1513 + operationGroup: *ref_1505 originalFile: '' responses: '200': @@ -37502,15 +37741,15 @@ testModel: name: schema: *ref_370 rawValue: AuditSecureProtocol - language: *ref_1472 + language: *ref_1491 id: schema: *ref_369 rawValue: /subscriptions/subscriptionId/resourceGroups/myResourceGroupName/providers/Microsoft.Compute/virtualMachines/myvm/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/AuditSecureProtocol - language: *ref_1481 + language: *ref_1500 location: schema: *ref_371 rawValue: centraluseuap - language: *ref_1473 + language: *ref_1492 properties: schema: *ref_382 parentsValue: {} @@ -37518,33 +37757,33 @@ testModel: assignmentHash: schema: *ref_380 rawValue: E0D8941DD713F284284561648C00C18FA76C8602943C7CD38AFD73B56AE4C35F.E3B0C44298FC1C149AFBF4C8996FB92427AE41E4649B934CA495991B7852B855 - language: *ref_1478 + language: *ref_1497 complianceStatus: schema: *ref_375 rawValue: Compliant - language: *ref_1475 + language: *ref_1494 context: schema: *ref_379 rawValue: null - language: *ref_1471 + language: *ref_1490 lastComplianceStatusChecked: schema: *ref_376 rawValue: '2018-08-29T22:14:13Z' - language: *ref_1476 + language: *ref_1495 latestReportId: schema: *ref_377 rawValue: >- /subscriptions/subscriptionId/resourceGroups/myResourceGroupName/providers/Microsoft.Compute/virtualMachines/myvm/providers/Microsoft.GuestConfiguration/guestConfigurationAssignments/AuditSecureProtocol/reports/7367cbb8-ae99-47d0-a33b-a283564d2cb1 - language: *ref_1477 + language: *ref_1496 provisioningState: schema: *ref_184 rawValue: Succeeded - language: *ref_1479 - language: *ref_1470 - language: *ref_1492 - headers: *ref_1493 - operation: *ref_1494 - operationGroup: *ref_1486 + language: *ref_1498 + language: *ref_1489 + language: *ref_1511 + headers: *ref_1512 + operation: *ref_1513 + operationGroup: *ref_1505 - operationId: GuestConfigurationAssignments_Delete examples: - name: Delete an guest configuration assignment @@ -37552,36 +37791,36 @@ testModel: - exampleValue: schema: *ref_475 rawValue: mySubscriptionId - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: - schema: *ref_670 + schema: *ref_682 rawValue: myResourceGroupName - language: *ref_1495 - parameter: *ref_680 + language: *ref_1514 + parameter: *ref_692 - exampleValue: - schema: *ref_669 + schema: *ref_681 rawValue: SecureProtocol - language: *ref_1496 - parameter: *ref_681 + language: *ref_1515 + parameter: *ref_693 - exampleValue: - schema: *ref_669 + schema: *ref_681 rawValue: myVMName - language: *ref_1497 - parameter: *ref_682 + language: *ref_1516 + parameter: *ref_694 - exampleValue: - schema: *ref_671 + schema: *ref_683 rawValue: '2022-01-25' - language: *ref_1499 - parameter: *ref_1498 - operation: *ref_1500 - operationGroup: *ref_1486 + language: *ref_1518 + parameter: *ref_1517 + operation: *ref_1519 + operationGroup: *ref_1505 originalFile: '' responses: '200': {} - operation: *ref_1500 - operationGroup: *ref_1486 + operation: *ref_1519 + operationGroup: *ref_1505 - operationId: GuestConfigurationAssignments_List examples: - name: List all guest configuration assignments for a virtual machine @@ -37589,37 +37828,37 @@ testModel: - exampleValue: schema: *ref_475 rawValue: mySubscriptionId - language: *ref_686 + language: *ref_698 parameter: *ref_479 methodParameters: - exampleValue: - schema: *ref_670 + schema: *ref_682 rawValue: myResourceGroupName - language: *ref_1501 - parameter: *ref_683 + language: *ref_1520 + parameter: *ref_695 - exampleValue: - schema: *ref_669 + schema: *ref_681 rawValue: myVMName - language: *ref_1502 - parameter: *ref_684 + language: *ref_1521 + parameter: *ref_696 - exampleValue: - schema: *ref_671 + schema: *ref_683 rawValue: '2022-01-25' - language: *ref_1504 - parameter: *ref_1503 - operation: *ref_1507 - operationGroup: *ref_1486 + language: *ref_1523 + parameter: *ref_1522 + operation: *ref_1526 + operationGroup: *ref_1505 originalFile: '' responses: '200': body: - schema: *ref_685 + schema: *ref_697 parentsValue: {} properties: {} - language: *ref_1505 - headers: *ref_1506 - operation: *ref_1507 - operationGroup: *ref_1486 + language: *ref_1524 + headers: *ref_1525 + operation: *ref_1526 + operationGroup: *ref_1505 scenarioTests: [] language: !Languages default: diff --git a/test/TestProjects/MgmtMockAndSample/src/Generated/Extensions/MgmtMockAndSampleExtensions.cs b/test/TestProjects/MgmtMockAndSample/src/Generated/Extensions/MgmtMockAndSampleExtensions.cs index ac2469d4cbe..3ed7163494f 100644 --- a/test/TestProjects/MgmtMockAndSample/src/Generated/Extensions/MgmtMockAndSampleExtensions.cs +++ b/test/TestProjects/MgmtMockAndSample/src/Generated/Extensions/MgmtMockAndSampleExtensions.cs @@ -1802,18 +1802,18 @@ public static Pageable GetTenantActivityLogs(this TenantResource tena /// /// /// Mocking - /// To mock this method, please mock instead. + /// To mock this method, please mock instead. /// /// /// The instance the method will execute against. - /// The template provided to calculate hash. + /// A property bag which contains all the parameters of this method except the LRO qualifier and request context parameter. /// The cancellation token to use. - /// or is null. - public static async Task> CalculateTemplateHashDeploymentAsync(this TenantResource tenantResource, BinaryData template, CancellationToken cancellationToken = default) + /// or is null. + public static async Task> CalculateTemplateHashDeploymentAsync(this TenantResource tenantResource, TenantResourceCalculateTemplateHashDeploymentOptions options, CancellationToken cancellationToken = default) { Argument.AssertNotNull(tenantResource, nameof(tenantResource)); - return await GetMockableMgmtMockAndSampleTenantResource(tenantResource).CalculateTemplateHashDeploymentAsync(template, cancellationToken).ConfigureAwait(false); + return await GetMockableMgmtMockAndSampleTenantResource(tenantResource).CalculateTemplateHashDeploymentAsync(options, cancellationToken).ConfigureAwait(false); } /// @@ -1834,18 +1834,18 @@ public static async Task> CalculateTemplateHashDepl /// /// /// Mocking - /// To mock this method, please mock instead. + /// To mock this method, please mock instead. /// /// /// The instance the method will execute against. - /// The template provided to calculate hash. + /// A property bag which contains all the parameters of this method except the LRO qualifier and request context parameter. /// The cancellation token to use. - /// or is null. - public static Response CalculateTemplateHashDeployment(this TenantResource tenantResource, BinaryData template, CancellationToken cancellationToken = default) + /// or is null. + public static Response CalculateTemplateHashDeployment(this TenantResource tenantResource, TenantResourceCalculateTemplateHashDeploymentOptions options, CancellationToken cancellationToken = default) { Argument.AssertNotNull(tenantResource, nameof(tenantResource)); - return GetMockableMgmtMockAndSampleTenantResource(tenantResource).CalculateTemplateHashDeployment(template, cancellationToken); + return GetMockableMgmtMockAndSampleTenantResource(tenantResource).CalculateTemplateHashDeployment(options, cancellationToken); } } } diff --git a/test/TestProjects/MgmtMockAndSample/src/Generated/Extensions/MockableMgmtMockAndSampleTenantResource.cs b/test/TestProjects/MgmtMockAndSample/src/Generated/Extensions/MockableMgmtMockAndSampleTenantResource.cs index 7cff6e78321..2d746488620 100644 --- a/test/TestProjects/MgmtMockAndSample/src/Generated/Extensions/MockableMgmtMockAndSampleTenantResource.cs +++ b/test/TestProjects/MgmtMockAndSample/src/Generated/Extensions/MockableMgmtMockAndSampleTenantResource.cs @@ -121,18 +121,18 @@ public virtual Pageable GetTenantActivityLogs(string filter = null, s /// /// /// - /// The template provided to calculate hash. + /// A property bag which contains all the parameters of this method except the LRO qualifier and request context parameter. /// The cancellation token to use. - /// is null. - public virtual async Task> CalculateTemplateHashDeploymentAsync(BinaryData template, CancellationToken cancellationToken = default) + /// is null. + public virtual async Task> CalculateTemplateHashDeploymentAsync(TenantResourceCalculateTemplateHashDeploymentOptions options, CancellationToken cancellationToken = default) { - Argument.AssertNotNull(template, nameof(template)); + Argument.AssertNotNull(options, nameof(options)); using var scope = DeploymentsClientDiagnostics.CreateScope("MockableMgmtMockAndSampleTenantResource.CalculateTemplateHashDeployment"); scope.Start(); try { - var response = await DeploymentsRestClient.CalculateTemplateHashAsync(template, cancellationToken).ConfigureAwait(false); + var response = await DeploymentsRestClient.CalculateTemplateHashAsync(options.Template, options.Q1, options.Q2, options.Q3, options.Q4, options.Q5, options.Q6, cancellationToken).ConfigureAwait(false); return response; } catch (Exception e) @@ -159,18 +159,18 @@ public virtual async Task> CalculateTemplateHashDep /// /// /// - /// The template provided to calculate hash. + /// A property bag which contains all the parameters of this method except the LRO qualifier and request context parameter. /// The cancellation token to use. - /// is null. - public virtual Response CalculateTemplateHashDeployment(BinaryData template, CancellationToken cancellationToken = default) + /// is null. + public virtual Response CalculateTemplateHashDeployment(TenantResourceCalculateTemplateHashDeploymentOptions options, CancellationToken cancellationToken = default) { - Argument.AssertNotNull(template, nameof(template)); + Argument.AssertNotNull(options, nameof(options)); using var scope = DeploymentsClientDiagnostics.CreateScope("MockableMgmtMockAndSampleTenantResource.CalculateTemplateHashDeployment"); scope.Start(); try { - var response = DeploymentsRestClient.CalculateTemplateHash(template, cancellationToken); + var response = DeploymentsRestClient.CalculateTemplateHash(options.Template, options.Q1, options.Q2, options.Q3, options.Q4, options.Q5, options.Q6, cancellationToken); return response; } catch (Exception e) diff --git a/test/TestProjects/MgmtMockAndSample/src/Generated/Models/TenantResourceCalculateTemplateHashDeploymentOptions.cs b/test/TestProjects/MgmtMockAndSample/src/Generated/Models/TenantResourceCalculateTemplateHashDeploymentOptions.cs new file mode 100644 index 00000000000..c7c4df7ceaa --- /dev/null +++ b/test/TestProjects/MgmtMockAndSample/src/Generated/Models/TenantResourceCalculateTemplateHashDeploymentOptions.cs @@ -0,0 +1,69 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. + +// + +#nullable disable + +using System; + +namespace MgmtMockAndSample.Models +{ + /// The TenantResourceCalculateTemplateHashDeploymentOptions. + public partial class TenantResourceCalculateTemplateHashDeploymentOptions + { + /// Initializes a new instance of . + /// The template provided to calculate hash. + /// is null. + public TenantResourceCalculateTemplateHashDeploymentOptions(BinaryData template) + { + Argument.AssertNotNull(template, nameof(template)); + + Template = template; + } + + /// + /// The template provided to calculate hash. + /// + /// To assign an object to this property use . + /// + /// + /// To assign an already formatted json string to this property use . + /// + /// + /// Examples: + /// + /// + /// BinaryData.FromObjectAsJson("foo") + /// Creates a payload of "foo". + /// + /// + /// BinaryData.FromString("\"foo\"") + /// Creates a payload of "foo". + /// + /// + /// BinaryData.FromObjectAsJson(new { key = "value" }) + /// Creates a payload of { "key": "value" }. + /// + /// + /// BinaryData.FromString("{\"key\": \"value\"}") + /// Creates a payload of { "key": "value" }. + /// + /// + /// + /// + public BinaryData Template { get; } + /// The first query parameter. + public string Q1 { get; set; } + /// The second query parameter. + public int? Q2 { get; set; } + /// The third query parameter. + public long? Q3 { get; set; } + /// The fourth query parameter. + public float? Q4 { get; set; } + /// The fifth query parameter. + public double? Q5 { get; set; } + /// The sixth query parameter. + public bool? Q6 { get; set; } + } +} diff --git a/test/TestProjects/MgmtMockAndSample/src/Generated/RestOperations/DeploymentsRestOperations.cs b/test/TestProjects/MgmtMockAndSample/src/Generated/RestOperations/DeploymentsRestOperations.cs index 50fd919d701..ba87b874074 100644 --- a/test/TestProjects/MgmtMockAndSample/src/Generated/RestOperations/DeploymentsRestOperations.cs +++ b/test/TestProjects/MgmtMockAndSample/src/Generated/RestOperations/DeploymentsRestOperations.cs @@ -37,16 +37,40 @@ public DeploymentsRestOperations(HttpPipeline pipeline, string applicationId, Ur _userAgent = new TelemetryDetails(GetType().Assembly, applicationId); } - internal RequestUriBuilder CreateCalculateTemplateHashRequestUri(BinaryData template) + internal RequestUriBuilder CreateCalculateTemplateHashRequestUri(BinaryData template, string q1, int? q2, long? q3, float? q4, double? q5, bool? q6) { var uri = new RawRequestUriBuilder(); uri.Reset(_endpoint); uri.AppendPath("/providers/Microsoft.Resources/calculateTemplateHash", false); uri.AppendQuery("api-version", _apiVersion, true); + if (q1 != null) + { + uri.AppendQuery("q1", q1, true); + } + if (q2 != null) + { + uri.AppendQuery("q2", q2.Value, true); + } + if (q3 != null) + { + uri.AppendQuery("q3", q3.Value, true); + } + if (q4 != null) + { + uri.AppendQuery("q4", q4.Value, true); + } + if (q5 != null) + { + uri.AppendQuery("q5", q5.Value, true); + } + if (q6 != null) + { + uri.AppendQuery("q6", q6.Value, true); + } return uri; } - internal HttpMessage CreateCalculateTemplateHashRequest(BinaryData template) + internal HttpMessage CreateCalculateTemplateHashRequest(BinaryData template, string q1, int? q2, long? q3, float? q4, double? q5, bool? q6) { var message = _pipeline.CreateMessage(); var request = message.Request; @@ -55,6 +79,30 @@ internal HttpMessage CreateCalculateTemplateHashRequest(BinaryData template) uri.Reset(_endpoint); uri.AppendPath("/providers/Microsoft.Resources/calculateTemplateHash", false); uri.AppendQuery("api-version", _apiVersion, true); + if (q1 != null) + { + uri.AppendQuery("q1", q1, true); + } + if (q2 != null) + { + uri.AppendQuery("q2", q2.Value, true); + } + if (q3 != null) + { + uri.AppendQuery("q3", q3.Value, true); + } + if (q4 != null) + { + uri.AppendQuery("q4", q4.Value, true); + } + if (q5 != null) + { + uri.AppendQuery("q5", q5.Value, true); + } + if (q6 != null) + { + uri.AppendQuery("q6", q6.Value, true); + } request.Uri = uri; request.Headers.Add("Accept", "application/json"); request.Headers.Add("Content-Type", "application/json"); @@ -74,13 +122,19 @@ internal HttpMessage CreateCalculateTemplateHashRequest(BinaryData template) /// Calculate the hash of the given template. /// The template provided to calculate hash. + /// The first query parameter. + /// The second query parameter. + /// The third query parameter. + /// The fourth query parameter. + /// The fifth query parameter. + /// The sixth query parameter. /// The cancellation token to use. /// is null. - public async Task> CalculateTemplateHashAsync(BinaryData template, CancellationToken cancellationToken = default) + public async Task> CalculateTemplateHashAsync(BinaryData template, string q1 = null, int? q2 = null, long? q3 = null, float? q4 = null, double? q5 = null, bool? q6 = null, CancellationToken cancellationToken = default) { Argument.AssertNotNull(template, nameof(template)); - using var message = CreateCalculateTemplateHashRequest(template); + using var message = CreateCalculateTemplateHashRequest(template, q1, q2, q3, q4, q5, q6); await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); switch (message.Response.Status) { @@ -98,13 +152,19 @@ public async Task> CalculateTemplateHashAsync(Binar /// Calculate the hash of the given template. /// The template provided to calculate hash. + /// The first query parameter. + /// The second query parameter. + /// The third query parameter. + /// The fourth query parameter. + /// The fifth query parameter. + /// The sixth query parameter. /// The cancellation token to use. /// is null. - public Response CalculateTemplateHash(BinaryData template, CancellationToken cancellationToken = default) + public Response CalculateTemplateHash(BinaryData template, string q1 = null, int? q2 = null, long? q3 = null, float? q4 = null, double? q5 = null, bool? q6 = null, CancellationToken cancellationToken = default) { Argument.AssertNotNull(template, nameof(template)); - using var message = CreateCalculateTemplateHashRequest(template); + using var message = CreateCalculateTemplateHashRequest(template, q1, q2, q3, q4, q5, q6); _pipeline.Send(message, cancellationToken); switch (message.Response.Status) { diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DeletedManagedHsmCollection.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DeletedManagedHsmCollection.cs index 16707673b9e..6fc552986ab 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DeletedManagedHsmCollection.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DeletedManagedHsmCollection.cs @@ -12,14 +12,14 @@ using Azure.Identity; using Azure.ResourceManager; using Azure.ResourceManager.Resources; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_DeletedManagedHsmCollection { - // Retrieve a deleted managed HSM - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_RetrieveADeletedManagedHSM() { // Generated from example definition: @@ -51,9 +51,8 @@ public async Task Get_RetrieveADeletedManagedHSM() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Retrieve a deleted managed HSM - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Exists_RetrieveADeletedManagedHSM() { // Generated from example definition: @@ -81,9 +80,8 @@ public async Task Exists_RetrieveADeletedManagedHSM() Console.WriteLine($"Succeeded: {result}"); } - // Retrieve a deleted managed HSM - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetIfExists_RetrieveADeletedManagedHSM() { // Generated from example definition: @@ -111,7 +109,7 @@ public async Task GetIfExists_RetrieveADeletedManagedHSM() if (result == null) { - Console.WriteLine($"Succeeded with null as result"); + Console.WriteLine("Succeeded with null as result"); } else { diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DeletedManagedHsmResource.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DeletedManagedHsmResource.cs index 8d39b161fca..dd025c52fa3 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DeletedManagedHsmResource.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DeletedManagedHsmResource.cs @@ -11,14 +11,14 @@ using Azure.Core; using Azure.Identity; using Azure.ResourceManager; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_DeletedManagedHsmResource { - // Retrieve a deleted managed HSM - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_RetrieveADeletedManagedHSM() { // Generated from example definition: @@ -47,9 +47,8 @@ public async Task Get_RetrieveADeletedManagedHSM() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Purge a managed HSM Pool - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task PurgeDeleted_PurgeAManagedHSMPool() { // Generated from example definition: @@ -71,7 +70,7 @@ public async Task PurgeDeleted_PurgeAManagedHSMPool() // invoke the operation await deletedManagedHsm.PurgeDeletedAsync(WaitUntil.Completed); - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } } } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DeletedVaultResource.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DeletedVaultResource.cs index a6b699e4a07..31e2697611a 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DeletedVaultResource.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DeletedVaultResource.cs @@ -11,14 +11,14 @@ using Azure.Core; using Azure.Identity; using Azure.ResourceManager; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_DeletedVaultResource { - // Purge a deleted vault - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task PurgeDeleted_PurgeADeletedVault() { // Generated from example definition: @@ -40,7 +40,7 @@ public async Task PurgeDeleted_PurgeADeletedVault() // invoke the operation await deletedVault.PurgeDeletedAsync(WaitUntil.Completed); - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } } } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DiskEncryptionSetCollection.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DiskEncryptionSetCollection.cs index b8c2e31f3b8..40e7ac33775 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DiskEncryptionSetCollection.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DiskEncryptionSetCollection.cs @@ -14,14 +14,14 @@ using Azure.ResourceManager.Models; using Azure.ResourceManager.Resources; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_DiskEncryptionSetCollection { - // Create a disk encryption set with key vault from a different subscription. - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_CreateADiskEncryptionSetWithKeyVaultFromADifferentSubscription() { // Generated from example definition: @@ -61,9 +61,8 @@ public async Task CreateOrUpdate_CreateADiskEncryptionSetWithKeyVaultFromADiffer Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Create a disk encryption set with key vault from a different tenant. - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_CreateADiskEncryptionSetWithKeyVaultFromADifferentTenant() { // Generated from example definition: @@ -109,9 +108,8 @@ public async Task CreateOrUpdate_CreateADiskEncryptionSetWithKeyVaultFromADiffer Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Create a disk encryption set. - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_CreateADiskEncryptionSet() { // Generated from example definition: @@ -153,9 +151,8 @@ public async Task CreateOrUpdate_CreateADiskEncryptionSet() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get information about a disk encryption set when auto-key rotation failed. - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetInformationAboutADiskEncryptionSetWhenAutoKeyRotationFailed() { // Generated from example definition: @@ -187,9 +184,8 @@ public async Task Get_GetInformationAboutADiskEncryptionSetWhenAutoKeyRotationFa Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get information about a disk encryption set when auto-key rotation failed. - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Exists_GetInformationAboutADiskEncryptionSetWhenAutoKeyRotationFailed() { // Generated from example definition: @@ -217,9 +213,8 @@ public async Task Exists_GetInformationAboutADiskEncryptionSetWhenAutoKeyRotatio Console.WriteLine($"Succeeded: {result}"); } - // Get information about a disk encryption set when auto-key rotation failed. - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetIfExists_GetInformationAboutADiskEncryptionSetWhenAutoKeyRotationFailed() { // Generated from example definition: @@ -247,7 +242,7 @@ public async Task GetIfExists_GetInformationAboutADiskEncryptionSetWhenAutoKeyRo if (result == null) { - Console.WriteLine($"Succeeded with null as result"); + Console.WriteLine("Succeeded with null as result"); } else { @@ -259,9 +254,8 @@ public async Task GetIfExists_GetInformationAboutADiskEncryptionSetWhenAutoKeyRo } } - // Get information about a disk encryption set. - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetInformationAboutADiskEncryptionSet() { // Generated from example definition: @@ -293,9 +287,8 @@ public async Task Get_GetInformationAboutADiskEncryptionSet() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get information about a disk encryption set. - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Exists_GetInformationAboutADiskEncryptionSet() { // Generated from example definition: @@ -323,9 +316,8 @@ public async Task Exists_GetInformationAboutADiskEncryptionSet() Console.WriteLine($"Succeeded: {result}"); } - // Get information about a disk encryption set. - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetIfExists_GetInformationAboutADiskEncryptionSet() { // Generated from example definition: @@ -353,7 +345,7 @@ public async Task GetIfExists_GetInformationAboutADiskEncryptionSet() if (result == null) { - Console.WriteLine($"Succeeded with null as result"); + Console.WriteLine("Succeeded with null as result"); } else { @@ -365,9 +357,8 @@ public async Task GetIfExists_GetInformationAboutADiskEncryptionSet() } } - // List all disk encryption sets in a resource group. - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetAll_ListAllDiskEncryptionSetsInAResourceGroup() { // Generated from example definition: @@ -398,7 +389,7 @@ public async Task GetAll_ListAllDiskEncryptionSetsInAResourceGroup() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } } } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DiskEncryptionSetResource.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DiskEncryptionSetResource.cs index 3e32d71298f..2057297c1a2 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DiskEncryptionSetResource.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_DiskEncryptionSetResource.cs @@ -14,14 +14,14 @@ using Azure.ResourceManager.Models; using Azure.ResourceManager.Resources; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_DiskEncryptionSetResource { - // Update a disk encryption set with rotationToLatestKeyVersionEnabled set to true - Succeeded - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Update_UpdateADiskEncryptionSetWithRotationToLatestKeyVersionEnabledSetToTrueSucceeded() { // Generated from example definition: @@ -58,9 +58,8 @@ public async Task Update_UpdateADiskEncryptionSetWithRotationToLatestKeyVersionE Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Update a disk encryption set with rotationToLatestKeyVersionEnabled set to true - Updating - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Update_UpdateADiskEncryptionSetWithRotationToLatestKeyVersionEnabledSetToTrueUpdating() { // Generated from example definition: @@ -97,9 +96,8 @@ public async Task Update_UpdateADiskEncryptionSetWithRotationToLatestKeyVersionE Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Update a disk encryption set. - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Update_UpdateADiskEncryptionSet() { // Generated from example definition: @@ -142,9 +140,8 @@ public async Task Update_UpdateADiskEncryptionSet() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get information about a disk encryption set when auto-key rotation failed. - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetInformationAboutADiskEncryptionSetWhenAutoKeyRotationFailed() { // Generated from example definition: @@ -173,9 +170,8 @@ public async Task Get_GetInformationAboutADiskEncryptionSetWhenAutoKeyRotationFa Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get information about a disk encryption set. - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetInformationAboutADiskEncryptionSet() { // Generated from example definition: @@ -204,9 +200,8 @@ public async Task Get_GetInformationAboutADiskEncryptionSet() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Delete a disk encryption set. - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Delete_DeleteADiskEncryptionSet() { // Generated from example definition: @@ -228,12 +223,11 @@ public async Task Delete_DeleteADiskEncryptionSet() // invoke the operation await diskEncryptionSet.DeleteAsync(WaitUntil.Completed); - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } - // List all disk encryption sets in a subscription. - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetDiskEncryptionSets_ListAllDiskEncryptionSetsInASubscription() { // Generated from example definition: @@ -260,7 +254,7 @@ public async Task GetDiskEncryptionSets_ListAllDiskEncryptionSetsInASubscription Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } } } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_FirewallPolicyCollection.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_FirewallPolicyCollection.cs index 3a3a30721f3..51465f17926 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_FirewallPolicyCollection.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_FirewallPolicyCollection.cs @@ -14,14 +14,14 @@ using Azure.ResourceManager; using Azure.ResourceManager.Resources; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_FirewallPolicyCollection { - // Get FirewallPolicy - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetFirewallPolicy() { // Generated from example definition: @@ -53,9 +53,8 @@ public async Task Get_GetFirewallPolicy() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get FirewallPolicy - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Exists_GetFirewallPolicy() { // Generated from example definition: @@ -83,9 +82,8 @@ public async Task Exists_GetFirewallPolicy() Console.WriteLine($"Succeeded: {result}"); } - // Get FirewallPolicy - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetIfExists_GetFirewallPolicy() { // Generated from example definition: @@ -113,7 +111,7 @@ public async Task GetIfExists_GetFirewallPolicy() if (result == null) { - Console.WriteLine($"Succeeded with null as result"); + Console.WriteLine("Succeeded with null as result"); } else { @@ -125,9 +123,8 @@ public async Task GetIfExists_GetFirewallPolicy() } } - // Create FirewallPolicy - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_CreateFirewallPolicy() { // Generated from example definition: @@ -262,9 +259,8 @@ public async Task CreateOrUpdate_CreateFirewallPolicy() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Create FirewallPolicy with different values - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_CreateFirewallPolicyWithDifferentValues() { // Generated from example definition: @@ -399,9 +395,8 @@ public async Task CreateOrUpdate_CreateFirewallPolicyWithDifferentValues() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // List all Firewall Policies for a given resource group - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetAll_ListAllFirewallPoliciesForAGivenResourceGroup() { // Generated from example definition: @@ -432,7 +427,7 @@ public async Task GetAll_ListAllFirewallPoliciesForAGivenResourceGroup() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } } } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_FirewallPolicyResource.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_FirewallPolicyResource.cs index 99c0a581ffc..6da5d212edb 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_FirewallPolicyResource.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_FirewallPolicyResource.cs @@ -14,14 +14,14 @@ using Azure.ResourceManager; using Azure.ResourceManager.Resources; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_FirewallPolicyResource { - // Delete Firewall Policy - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Delete_DeleteFirewallPolicy() { // Generated from example definition: @@ -43,12 +43,11 @@ public async Task Delete_DeleteFirewallPolicy() // invoke the operation await firewallPolicy.DeleteAsync(WaitUntil.Completed); - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } - // Get FirewallPolicy - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetFirewallPolicy() { // Generated from example definition: @@ -77,9 +76,8 @@ public async Task Get_GetFirewallPolicy() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Create FirewallPolicy - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Update_CreateFirewallPolicy() { // Generated from example definition: @@ -211,9 +209,8 @@ public async Task Update_CreateFirewallPolicy() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Create FirewallPolicy with different values - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Update_CreateFirewallPolicyWithDifferentValues() { // Generated from example definition: @@ -345,9 +342,8 @@ public async Task Update_CreateFirewallPolicyWithDifferentValues() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // List all Firewall Policies for a given subscription - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetFirewallPolicies_ListAllFirewallPoliciesForAGivenSubscription() { // Generated from example definition: @@ -374,7 +370,7 @@ public async Task GetFirewallPolicies_ListAllFirewallPoliciesForAGivenSubscripti Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } } } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_FirewallPolicyRuleCollectionGroupCollection.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_FirewallPolicyRuleCollectionGroupCollection.cs index 1ff1e2d70a7..e83822bad4e 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_FirewallPolicyRuleCollectionGroupCollection.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_FirewallPolicyRuleCollectionGroupCollection.cs @@ -12,14 +12,14 @@ using Azure.Identity; using Azure.ResourceManager; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_FirewallPolicyRuleCollectionGroupCollection { - // Get FirewallPolicyNatRuleCollectionGroup - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetFirewallPolicyNatRuleCollectionGroup() { // Generated from example definition: @@ -52,9 +52,8 @@ public async Task Get_GetFirewallPolicyNatRuleCollectionGroup() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get FirewallPolicyNatRuleCollectionGroup - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Exists_GetFirewallPolicyNatRuleCollectionGroup() { // Generated from example definition: @@ -83,9 +82,8 @@ public async Task Exists_GetFirewallPolicyNatRuleCollectionGroup() Console.WriteLine($"Succeeded: {result}"); } - // Get FirewallPolicyNatRuleCollectionGroup - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetIfExists_GetFirewallPolicyNatRuleCollectionGroup() { // Generated from example definition: @@ -114,7 +112,7 @@ public async Task GetIfExists_GetFirewallPolicyNatRuleCollectionGroup() if (result == null) { - Console.WriteLine($"Succeeded with null as result"); + Console.WriteLine("Succeeded with null as result"); } else { @@ -126,9 +124,8 @@ public async Task GetIfExists_GetFirewallPolicyNatRuleCollectionGroup() } } - // Get FirewallPolicyRuleCollectionGroup - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetFirewallPolicyRuleCollectionGroup() { // Generated from example definition: @@ -161,9 +158,8 @@ public async Task Get_GetFirewallPolicyRuleCollectionGroup() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get FirewallPolicyRuleCollectionGroup - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Exists_GetFirewallPolicyRuleCollectionGroup() { // Generated from example definition: @@ -192,9 +188,8 @@ public async Task Exists_GetFirewallPolicyRuleCollectionGroup() Console.WriteLine($"Succeeded: {result}"); } - // Get FirewallPolicyRuleCollectionGroup - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetIfExists_GetFirewallPolicyRuleCollectionGroup() { // Generated from example definition: @@ -223,7 +218,7 @@ public async Task GetIfExists_GetFirewallPolicyRuleCollectionGroup() if (result == null) { - Console.WriteLine($"Succeeded with null as result"); + Console.WriteLine("Succeeded with null as result"); } else { @@ -235,9 +230,8 @@ public async Task GetIfExists_GetFirewallPolicyRuleCollectionGroup() } } - // Get FirewallPolicyRuleCollectionGroup With IpGroups - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetFirewallPolicyRuleCollectionGroupWithIpGroups() { // Generated from example definition: @@ -270,9 +264,8 @@ public async Task Get_GetFirewallPolicyRuleCollectionGroupWithIpGroups() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get FirewallPolicyRuleCollectionGroup With IpGroups - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Exists_GetFirewallPolicyRuleCollectionGroupWithIpGroups() { // Generated from example definition: @@ -301,9 +294,8 @@ public async Task Exists_GetFirewallPolicyRuleCollectionGroupWithIpGroups() Console.WriteLine($"Succeeded: {result}"); } - // Get FirewallPolicyRuleCollectionGroup With IpGroups - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetIfExists_GetFirewallPolicyRuleCollectionGroupWithIpGroups() { // Generated from example definition: @@ -332,7 +324,7 @@ public async Task GetIfExists_GetFirewallPolicyRuleCollectionGroupWithIpGroups() if (result == null) { - Console.WriteLine($"Succeeded with null as result"); + Console.WriteLine("Succeeded with null as result"); } else { @@ -344,9 +336,8 @@ public async Task GetIfExists_GetFirewallPolicyRuleCollectionGroupWithIpGroups() } } - // Get FirewallPolicyRuleCollectionGroup With Web Categories - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetFirewallPolicyRuleCollectionGroupWithWebCategories() { // Generated from example definition: @@ -379,9 +370,8 @@ public async Task Get_GetFirewallPolicyRuleCollectionGroupWithWebCategories() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get FirewallPolicyRuleCollectionGroup With Web Categories - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Exists_GetFirewallPolicyRuleCollectionGroupWithWebCategories() { // Generated from example definition: @@ -410,9 +400,8 @@ public async Task Exists_GetFirewallPolicyRuleCollectionGroupWithWebCategories() Console.WriteLine($"Succeeded: {result}"); } - // Get FirewallPolicyRuleCollectionGroup With Web Categories - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetIfExists_GetFirewallPolicyRuleCollectionGroupWithWebCategories() { // Generated from example definition: @@ -441,7 +430,7 @@ public async Task GetIfExists_GetFirewallPolicyRuleCollectionGroupWithWebCategor if (result == null) { - Console.WriteLine($"Succeeded with null as result"); + Console.WriteLine("Succeeded with null as result"); } else { @@ -453,9 +442,8 @@ public async Task GetIfExists_GetFirewallPolicyRuleCollectionGroupWithWebCategor } } - // Create FirewallPolicyNatRuleCollectionGroup - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_CreateFirewallPolicyNatRuleCollectionGroup() { // Generated from example definition: @@ -530,9 +518,8 @@ public async Task CreateOrUpdate_CreateFirewallPolicyNatRuleCollectionGroup() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Create FirewallPolicyRuleCollectionGroup - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_CreateFirewallPolicyRuleCollectionGroup() { // Generated from example definition: @@ -602,9 +589,8 @@ public async Task CreateOrUpdate_CreateFirewallPolicyRuleCollectionGroup() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Create FirewallPolicyRuleCollectionGroup With All Default Values - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_CreateFirewallPolicyRuleCollectionGroupWithAllDefaultValues() { // Generated from example definition: @@ -639,9 +625,8 @@ public async Task CreateOrUpdate_CreateFirewallPolicyRuleCollectionGroupWithAllD Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Create FirewallPolicyRuleCollectionGroup With IpGroups - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_CreateFirewallPolicyRuleCollectionGroupWithIpGroups() { // Generated from example definition: @@ -710,9 +695,8 @@ public async Task CreateOrUpdate_CreateFirewallPolicyRuleCollectionGroupWithIpGr Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Create FirewallPolicyRuleCollectionGroup With Web Categories - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_CreateFirewallPolicyRuleCollectionGroupWithWebCategories() { // Generated from example definition: @@ -782,9 +766,8 @@ public async Task CreateOrUpdate_CreateFirewallPolicyRuleCollectionGroupWithWebC Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // List all FirewallPolicyRuleCollectionGroup With Web Categories - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetAll_ListAllFirewallPolicyRuleCollectionGroupWithWebCategories() { // Generated from example definition: @@ -816,12 +799,11 @@ public async Task GetAll_ListAllFirewallPolicyRuleCollectionGroupWithWebCategori Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } - // List all FirewallPolicyRuleCollectionGroups for a given FirewallPolicy - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetAll_ListAllFirewallPolicyRuleCollectionGroupsForAGivenFirewallPolicy() { // Generated from example definition: @@ -853,12 +835,11 @@ public async Task GetAll_ListAllFirewallPolicyRuleCollectionGroupsForAGivenFirew Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } - // List all FirewallPolicyRuleCollectionGroups with IpGroups for a given FirewallPolicy - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetAll_ListAllFirewallPolicyRuleCollectionGroupsWithIpGroupsForAGivenFirewallPolicy() { // Generated from example definition: @@ -890,7 +871,7 @@ public async Task GetAll_ListAllFirewallPolicyRuleCollectionGroupsWithIpGroupsFo Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } } } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_FirewallPolicyRuleCollectionGroupResource.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_FirewallPolicyRuleCollectionGroupResource.cs index aafd7f030ca..dbfcdf4365f 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_FirewallPolicyRuleCollectionGroupResource.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_FirewallPolicyRuleCollectionGroupResource.cs @@ -12,14 +12,14 @@ using Azure.Identity; using Azure.ResourceManager; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_FirewallPolicyRuleCollectionGroupResource { - // Delete FirewallPolicyRuleCollectionGroup - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Delete_DeleteFirewallPolicyRuleCollectionGroup() { // Generated from example definition: @@ -42,12 +42,11 @@ public async Task Delete_DeleteFirewallPolicyRuleCollectionGroup() // invoke the operation await firewallPolicyRuleCollectionGroup.DeleteAsync(WaitUntil.Completed); - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } - // Get FirewallPolicyNatRuleCollectionGroup - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetFirewallPolicyNatRuleCollectionGroup() { // Generated from example definition: @@ -77,9 +76,8 @@ public async Task Get_GetFirewallPolicyNatRuleCollectionGroup() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get FirewallPolicyRuleCollectionGroup - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetFirewallPolicyRuleCollectionGroup() { // Generated from example definition: @@ -109,9 +107,8 @@ public async Task Get_GetFirewallPolicyRuleCollectionGroup() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get FirewallPolicyRuleCollectionGroup With IpGroups - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetFirewallPolicyRuleCollectionGroupWithIpGroups() { // Generated from example definition: @@ -141,9 +138,8 @@ public async Task Get_GetFirewallPolicyRuleCollectionGroupWithIpGroups() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get FirewallPolicyRuleCollectionGroup With Web Categories - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetFirewallPolicyRuleCollectionGroupWithWebCategories() { // Generated from example definition: @@ -173,9 +169,8 @@ public async Task Get_GetFirewallPolicyRuleCollectionGroupWithWebCategories() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Create FirewallPolicyNatRuleCollectionGroup - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Update_CreateFirewallPolicyNatRuleCollectionGroup() { // Generated from example definition: @@ -247,9 +242,8 @@ public async Task Update_CreateFirewallPolicyNatRuleCollectionGroup() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Create FirewallPolicyRuleCollectionGroup - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Update_CreateFirewallPolicyRuleCollectionGroup() { // Generated from example definition: @@ -316,9 +310,8 @@ public async Task Update_CreateFirewallPolicyRuleCollectionGroup() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Create FirewallPolicyRuleCollectionGroup With All Default Values - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Update_CreateFirewallPolicyRuleCollectionGroupWithAllDefaultValues() { // Generated from example definition: @@ -350,9 +343,8 @@ public async Task Update_CreateFirewallPolicyRuleCollectionGroupWithAllDefaultVa Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Create FirewallPolicyRuleCollectionGroup With IpGroups - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Update_CreateFirewallPolicyRuleCollectionGroupWithIpGroups() { // Generated from example definition: @@ -418,9 +410,8 @@ public async Task Update_CreateFirewallPolicyRuleCollectionGroupWithIpGroups() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Create FirewallPolicyRuleCollectionGroup With Web Categories - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Update_CreateFirewallPolicyRuleCollectionGroupWithWebCategories() { // Generated from example definition: diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_GuestConfigurationAssignmentCollection.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_GuestConfigurationAssignmentCollection.cs index 2fc7c9d1fb7..021d4fd4d65 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_GuestConfigurationAssignmentCollection.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_GuestConfigurationAssignmentCollection.cs @@ -12,14 +12,14 @@ using Azure.Identity; using Azure.ResourceManager; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_GuestConfigurationAssignmentCollection { - // Create or update guest configuration assignment - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_CreateOrUpdateGuestConfigurationAssignment() { // Generated from example definition: @@ -61,9 +61,8 @@ public async Task CreateOrUpdate_CreateOrUpdateGuestConfigurationAssignment() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get a guest configuration assignment - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetAGuestConfigurationAssignment() { // Generated from example definition: @@ -95,9 +94,8 @@ public async Task Get_GetAGuestConfigurationAssignment() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get a guest configuration assignment - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Exists_GetAGuestConfigurationAssignment() { // Generated from example definition: @@ -125,9 +123,8 @@ public async Task Exists_GetAGuestConfigurationAssignment() Console.WriteLine($"Succeeded: {result}"); } - // Get a guest configuration assignment - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetIfExists_GetAGuestConfigurationAssignment() { // Generated from example definition: @@ -155,7 +152,7 @@ public async Task GetIfExists_GetAGuestConfigurationAssignment() if (result == null) { - Console.WriteLine($"Succeeded with null as result"); + Console.WriteLine("Succeeded with null as result"); } else { @@ -167,9 +164,8 @@ public async Task GetIfExists_GetAGuestConfigurationAssignment() } } - // List all guest configuration assignments for a virtual machine - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetAll_ListAllGuestConfigurationAssignmentsForAVirtualMachine() { // Generated from example definition: @@ -200,7 +196,7 @@ public async Task GetAll_ListAllGuestConfigurationAssignmentsForAVirtualMachine( Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } } } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_GuestConfigurationAssignmentResource.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_GuestConfigurationAssignmentResource.cs index 36653e60189..10a278fd223 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_GuestConfigurationAssignmentResource.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_GuestConfigurationAssignmentResource.cs @@ -12,14 +12,14 @@ using Azure.Identity; using Azure.ResourceManager; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_GuestConfigurationAssignmentResource { - // Create or update guest configuration assignment - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Update_CreateOrUpdateGuestConfigurationAssignment() { // Generated from example definition: @@ -59,9 +59,8 @@ public async Task Update_CreateOrUpdateGuestConfigurationAssignment() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get a guest configuration assignment - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetAGuestConfigurationAssignment() { // Generated from example definition: @@ -91,9 +90,8 @@ public async Task Get_GetAGuestConfigurationAssignment() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Delete an guest configuration assignment - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Delete_DeleteAnGuestConfigurationAssignment() { // Generated from example definition: @@ -116,7 +114,7 @@ public async Task Delete_DeleteAnGuestConfigurationAssignment() // invoke the operation await guestConfigurationAssignment.DeleteAsync(WaitUntil.Completed); - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } } } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_ManagedHsmCollection.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_ManagedHsmCollection.cs index 9f6bb5a0b7a..6c590915c62 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_ManagedHsmCollection.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_ManagedHsmCollection.cs @@ -15,14 +15,14 @@ using Azure.ResourceManager.Resources; using Azure.ResourceManager.Resources.Models; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_ManagedHsmCollection { - // Create a new managed HSM Pool or update an existing managed HSM Pool - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_CreateANewManagedHSMPoolOrUpdateAnExistingManagedHSMPool() { // Generated from example definition: @@ -98,9 +98,8 @@ public async Task CreateOrUpdate_CreateANewManagedHSMPoolOrUpdateAnExistingManag Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Retrieve a managed HSM Pool - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_RetrieveAManagedHSMPool() { // Generated from example definition: @@ -132,9 +131,8 @@ public async Task Get_RetrieveAManagedHSMPool() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Retrieve a managed HSM Pool - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Exists_RetrieveAManagedHSMPool() { // Generated from example definition: @@ -162,9 +160,8 @@ public async Task Exists_RetrieveAManagedHSMPool() Console.WriteLine($"Succeeded: {result}"); } - // Retrieve a managed HSM Pool - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetIfExists_RetrieveAManagedHSMPool() { // Generated from example definition: @@ -192,7 +189,7 @@ public async Task GetIfExists_RetrieveAManagedHSMPool() if (result == null) { - Console.WriteLine($"Succeeded with null as result"); + Console.WriteLine("Succeeded with null as result"); } else { @@ -204,9 +201,8 @@ public async Task GetIfExists_RetrieveAManagedHSMPool() } } - // List managed HSM Pools in a resource group - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetAll_ListManagedHSMPoolsInAResourceGroup() { // Generated from example definition: @@ -237,7 +233,7 @@ public async Task GetAll_ListManagedHSMPoolsInAResourceGroup() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } } } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_ManagedHsmResource.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_ManagedHsmResource.cs index a598f1c8437..6ce9ae085f6 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_ManagedHsmResource.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_ManagedHsmResource.cs @@ -13,14 +13,14 @@ using Azure.ResourceManager; using Azure.ResourceManager.Resources; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_ManagedHsmResource { - // Update an existing managed HSM Pool - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Update_UpdateAnExistingManagedHSMPool() { // Generated from example definition: @@ -59,9 +59,8 @@ public async Task Update_UpdateAnExistingManagedHSMPool() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Delete a managed HSM Pool - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Delete_DeleteAManagedHSMPool() { // Generated from example definition: @@ -83,12 +82,11 @@ public async Task Delete_DeleteAManagedHSMPool() // invoke the operation await managedHsm.DeleteAsync(WaitUntil.Completed); - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } - // Retrieve a managed HSM Pool - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_RetrieveAManagedHSMPool() { // Generated from example definition: @@ -117,9 +115,8 @@ public async Task Get_RetrieveAManagedHSMPool() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // List managed HSM Pools in a subscription - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetManagedHsms_ListManagedHSMPoolsInASubscription() { // Generated from example definition: @@ -146,12 +143,11 @@ public async Task GetManagedHsms_ListManagedHSMPoolsInASubscription() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } - // KeyVaultListPrivateLinkResources - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetMHSMPrivateLinkResourcesByMhsmResource_KeyVaultListPrivateLinkResources() { // Generated from example definition: @@ -176,7 +172,7 @@ public async Task GetMHSMPrivateLinkResourcesByMhsmResource_KeyVaultListPrivateL Console.WriteLine($"Succeeded: {item}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } } } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_MgmtMockAndSamplePrivateEndpointConnectionCollection.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_MgmtMockAndSamplePrivateEndpointConnectionCollection.cs index 8c17c88b5ca..7a4223615e4 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_MgmtMockAndSamplePrivateEndpointConnectionCollection.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_MgmtMockAndSamplePrivateEndpointConnectionCollection.cs @@ -12,14 +12,14 @@ using Azure.Identity; using Azure.ResourceManager; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_MgmtMockAndSamplePrivateEndpointConnectionCollection { - // KeyVaultGetPrivateEndpointConnection - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_KeyVaultGetPrivateEndpointConnection() { // Generated from example definition: @@ -52,9 +52,8 @@ public async Task Get_KeyVaultGetPrivateEndpointConnection() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // KeyVaultGetPrivateEndpointConnection - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Exists_KeyVaultGetPrivateEndpointConnection() { // Generated from example definition: @@ -83,9 +82,8 @@ public async Task Exists_KeyVaultGetPrivateEndpointConnection() Console.WriteLine($"Succeeded: {result}"); } - // KeyVaultGetPrivateEndpointConnection - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetIfExists_KeyVaultGetPrivateEndpointConnection() { // Generated from example definition: @@ -114,7 +112,7 @@ public async Task GetIfExists_KeyVaultGetPrivateEndpointConnection() if (result == null) { - Console.WriteLine($"Succeeded with null as result"); + Console.WriteLine("Succeeded with null as result"); } else { @@ -126,9 +124,8 @@ public async Task GetIfExists_KeyVaultGetPrivateEndpointConnection() } } - // KeyVaultPutPrivateEndpointConnection - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_KeyVaultPutPrivateEndpointConnection() { // Generated from example definition: @@ -171,9 +168,8 @@ public async Task CreateOrUpdate_KeyVaultPutPrivateEndpointConnection() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // KeyVaultListPrivateEndpointConnection - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetAll_KeyVaultListPrivateEndpointConnection() { // Generated from example definition: @@ -205,7 +201,7 @@ public async Task GetAll_KeyVaultListPrivateEndpointConnection() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } } } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_MgmtMockAndSamplePrivateEndpointConnectionResource.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_MgmtMockAndSamplePrivateEndpointConnectionResource.cs index 930c97fa264..65dab862232 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_MgmtMockAndSamplePrivateEndpointConnectionResource.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_MgmtMockAndSamplePrivateEndpointConnectionResource.cs @@ -12,14 +12,14 @@ using Azure.Identity; using Azure.ResourceManager; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_MgmtMockAndSamplePrivateEndpointConnectionResource { - // KeyVaultGetPrivateEndpointConnection - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_KeyVaultGetPrivateEndpointConnection() { // Generated from example definition: @@ -49,9 +49,8 @@ public async Task Get_KeyVaultGetPrivateEndpointConnection() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // KeyVaultPutPrivateEndpointConnection - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Update_KeyVaultPutPrivateEndpointConnection() { // Generated from example definition: @@ -91,9 +90,8 @@ public async Task Update_KeyVaultPutPrivateEndpointConnection() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // KeyVaultDeletePrivateEndpointConnection - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Delete_KeyVaultDeletePrivateEndpointConnection() { // Generated from example definition: diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_MhsmPrivateEndpointConnectionCollection.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_MhsmPrivateEndpointConnectionCollection.cs index da906943d20..1e49579f747 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_MhsmPrivateEndpointConnectionCollection.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_MhsmPrivateEndpointConnectionCollection.cs @@ -12,14 +12,14 @@ using Azure.Identity; using Azure.ResourceManager; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_MhsmPrivateEndpointConnectionCollection { - // List managed HSM Pools in a subscription - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetAll_ListManagedHSMPoolsInASubscription() { // Generated from example definition: @@ -51,12 +51,11 @@ public async Task GetAll_ListManagedHSMPoolsInASubscription() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } - // ManagedHsmGetPrivateEndpointConnection - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_ManagedHsmGetPrivateEndpointConnection() { // Generated from example definition: @@ -89,9 +88,8 @@ public async Task Get_ManagedHsmGetPrivateEndpointConnection() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // ManagedHsmGetPrivateEndpointConnection - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Exists_ManagedHsmGetPrivateEndpointConnection() { // Generated from example definition: @@ -120,9 +118,8 @@ public async Task Exists_ManagedHsmGetPrivateEndpointConnection() Console.WriteLine($"Succeeded: {result}"); } - // ManagedHsmGetPrivateEndpointConnection - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetIfExists_ManagedHsmGetPrivateEndpointConnection() { // Generated from example definition: @@ -151,7 +148,7 @@ public async Task GetIfExists_ManagedHsmGetPrivateEndpointConnection() if (result == null) { - Console.WriteLine($"Succeeded with null as result"); + Console.WriteLine("Succeeded with null as result"); } else { @@ -163,9 +160,8 @@ public async Task GetIfExists_ManagedHsmGetPrivateEndpointConnection() } } - // ManagedHsmPutPrivateEndpointConnection - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_ManagedHsmPutPrivateEndpointConnection() { // Generated from example definition: diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_MhsmPrivateEndpointConnectionResource.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_MhsmPrivateEndpointConnectionResource.cs index 3e9e71d1309..698a7744403 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_MhsmPrivateEndpointConnectionResource.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_MhsmPrivateEndpointConnectionResource.cs @@ -12,14 +12,14 @@ using Azure.Identity; using Azure.ResourceManager; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_MhsmPrivateEndpointConnectionResource { - // ManagedHsmGetPrivateEndpointConnection - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_ManagedHsmGetPrivateEndpointConnection() { // Generated from example definition: @@ -49,9 +49,8 @@ public async Task Get_ManagedHsmGetPrivateEndpointConnection() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // ManagedHsmPutPrivateEndpointConnection - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Update_ManagedHsmPutPrivateEndpointConnection() { // Generated from example definition: @@ -90,9 +89,8 @@ public async Task Update_ManagedHsmPutPrivateEndpointConnection() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // ManagedHsmDeletePrivateEndpointConnection - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Delete_ManagedHsmDeletePrivateEndpointConnection() { // Generated from example definition: diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_RoleAssignmentCollection.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_RoleAssignmentCollection.cs index 2a420026efd..460aa5645ca 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_RoleAssignmentCollection.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_RoleAssignmentCollection.cs @@ -12,14 +12,14 @@ using Azure.Identity; using Azure.ResourceManager; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_RoleAssignmentCollection { - // Create role assignment - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_CreateRoleAssignment() { // Generated from example definition: @@ -56,9 +56,8 @@ public async Task CreateOrUpdate_CreateRoleAssignment() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get role assignment by name - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetRoleAssignmentByName() { // Generated from example definition: @@ -88,9 +87,8 @@ public async Task Get_GetRoleAssignmentByName() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get role assignment by name - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Exists_GetRoleAssignmentByName() { // Generated from example definition: @@ -116,9 +114,8 @@ public async Task Exists_GetRoleAssignmentByName() Console.WriteLine($"Succeeded: {result}"); } - // Get role assignment by name - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetIfExists_GetRoleAssignmentByName() { // Generated from example definition: @@ -144,7 +141,7 @@ public async Task GetIfExists_GetRoleAssignmentByName() if (result == null) { - Console.WriteLine($"Succeeded with null as result"); + Console.WriteLine("Succeeded with null as result"); } else { @@ -156,9 +153,8 @@ public async Task GetIfExists_GetRoleAssignmentByName() } } - // List role assignments for scope - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetAll_ListRoleAssignmentsForScope() { // Generated from example definition: @@ -187,7 +183,7 @@ public async Task GetAll_ListRoleAssignmentsForScope() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } } } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_RoleAssignmentResource.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_RoleAssignmentResource.cs index ea7750b6fb9..2c1acdaa7ff 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_RoleAssignmentResource.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_RoleAssignmentResource.cs @@ -12,14 +12,14 @@ using Azure.Identity; using Azure.ResourceManager; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_RoleAssignmentResource { - // Delete role assignment by name - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Delete_DeleteRoleAssignmentByName() { // Generated from example definition: @@ -48,9 +48,8 @@ public async Task Delete_DeleteRoleAssignmentByName() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Create role assignment - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Update_CreateRoleAssignment() { // Generated from example definition: @@ -85,9 +84,8 @@ public async Task Update_CreateRoleAssignment() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get role assignment by name - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetRoleAssignmentByName() { // Generated from example definition: @@ -115,9 +113,8 @@ public async Task Get_GetRoleAssignmentByName() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Validate role assignments for subscription - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Validate_ValidateRoleAssignmentsForSubscription() { // Generated from example definition: @@ -139,7 +136,7 @@ public async Task Validate_ValidateRoleAssignmentsForSubscription() // invoke the operation await roleAssignment.ValidateAsync(); - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } } } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_SubscriptionResourceExtensions.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_SubscriptionResourceExtensions.cs index 798cbfbcb83..e8a34db06e2 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_SubscriptionResourceExtensions.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_SubscriptionResourceExtensions.cs @@ -11,14 +11,14 @@ using Azure.Identity; using Azure.ResourceManager; using Azure.ResourceManager.Resources; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_SubscriptionResourceExtensions { - // List deleted vaults in the specified subscription - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetDeletedVaults_ListDeletedVaultsInTheSpecifiedSubscription() { // Generated from example definition: @@ -45,12 +45,11 @@ public async Task GetDeletedVaults_ListDeletedVaultsInTheSpecifiedSubscription() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } - // List deleted managed HSMs in the specified subscription - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetDeletedManagedHsms_ListDeletedManagedHSMsInTheSpecifiedSubscription() { // Generated from example definition: @@ -77,7 +76,7 @@ public async Task GetDeletedManagedHsms_ListDeletedManagedHSMsInTheSpecifiedSubs Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } } } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_TenantResourceExtensions.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_TenantResourceExtensions.cs index 0a3f117a7bb..a8ae76bbcaa 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_TenantResourceExtensions.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_TenantResourceExtensions.cs @@ -12,14 +12,14 @@ using Azure.Identity; using Azure.ResourceManager; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_TenantResourceExtensions { - // Get Tenant Activity Logs without filter or select - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetTenantActivityLogs_GetTenantActivityLogsWithoutFilterOrSelect() { // Generated from example definition: @@ -40,12 +40,11 @@ public async Task GetTenantActivityLogs_GetTenantActivityLogsWithoutFilterOrSele Console.WriteLine($"Succeeded: {item}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } - // Calculate template hash - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CalculateTemplateHashDeployment_CalculateTemplateHash() { // Generated from example definition: @@ -61,7 +60,7 @@ public async Task CalculateTemplateHashDeployment_CalculateTemplateHash() var tenantResource = client.GetTenants().GetAllAsync().GetAsyncEnumerator().Current; // invoke the operation - BinaryData template = BinaryData.FromObjectAsJson(new Dictionary() + TenantResourceCalculateTemplateHashDeploymentOptions options = new TenantResourceCalculateTemplateHashDeploymentOptions(template: BinaryData.FromObjectAsJson(new Dictionary() { ["$schema"] = "http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview", ["contentVersion"] = "1.0.0.0", @@ -96,8 +95,68 @@ public async Task CalculateTemplateHashDeployment_CalculateTemplateHash() }, ["string"] = "string" } - }); - TemplateHashResult result = await tenantResource.CalculateTemplateHashDeploymentAsync(template); + })) + { }; + TemplateHashResult result = await tenantResource.CalculateTemplateHashDeploymentAsync(options); + + Console.WriteLine($"Succeeded: {result}"); + } + + [Test] + [Ignore("Only validating compilation of examples")] + public async Task CalculateTemplateHashDeployment_CalculateTemplateHashWithQueryParameters() + { + // Generated from example definition: + // this example is just showing the usage of "Deployments_CalculateTemplateHash" operation, for the dependent resources, they will have to be created separately. + + // get your azure access token, for more details of how Azure SDK get your access token, please refer to https://learn.microsoft.com/en-us/dotnet/azure/sdk/authentication?tabs=command-line + TokenCredential cred = new DefaultAzureCredential(); + // authenticate your client + ArmClient client = new ArmClient(cred); + + // this example assumes you already have this TenantResource created on azure + // for more information of creating TenantResource, please refer to the document of TenantResource + var tenantResource = client.GetTenants().GetAllAsync().GetAsyncEnumerator().Current; + + // invoke the operation + TenantResourceCalculateTemplateHashDeploymentOptions options = new TenantResourceCalculateTemplateHashDeploymentOptions(template: BinaryData.FromObjectAsJson(new Dictionary() + { + ["$schema"] = "http://schemas.management.azure.com/deploymentTemplate?api-version=2014-04-01-preview", + ["contentVersion"] = "1.0.0.0", + ["outputs"] = new Dictionary() + { + ["string"] = new Dictionary() + { + ["type"] = "string", + ["value"] = "myvalue" + } + }, + ["parameters"] = new Dictionary() + { + ["string"] = new Dictionary() + { + ["type"] = "string" + } + }, + ["resources"] = new object[] { }, + ["variables"] = new Dictionary() + { + ["array"] = new object[] { "1", "2", "3", "4" }, + ["bool"] = "true", + ["int"] = "42", + ["object"] = new Dictionary() + { + ["object"] = new Dictionary() + { + ["location"] = "West US", + ["vmSize"] = "Large" + } + }, + ["string"] = "string" + } + })) + { Q1 = "first", Q2 = 42, Q3 = 0L, Q4 = (float)3.14, Q5 = 3.14159265358, Q6 = true }; + TemplateHashResult result = await tenantResource.CalculateTemplateHashDeploymentAsync(options); Console.WriteLine($"Succeeded: {result}"); } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_VaultCollection.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_VaultCollection.cs index 6fb8ff092c7..a50a3381d2d 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_VaultCollection.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_VaultCollection.cs @@ -15,14 +15,14 @@ using Azure.ResourceManager.Models; using Azure.ResourceManager.Resources; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_VaultCollection { - // Create a new vault or update an existing vault - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_CreateANewVaultOrUpdateAnExistingVault() { // Generated from example definition: @@ -84,9 +84,8 @@ public async Task CreateOrUpdate_CreateANewVaultOrUpdateAnExistingVault() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Create or update a vault with network acls - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_CreateOrUpdateAVaultWithNetworkAcls() { // Generated from example definition: @@ -139,9 +138,8 @@ public async Task CreateOrUpdate_CreateOrUpdateAVaultWithNetworkAcls() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Verify Sample-gen can handle examples with some parameter missing - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_VerifySampleGenCanHandleExamplesWithSomeParameterMissing() { // Generated from example definition: @@ -203,9 +201,8 @@ public async Task CreateOrUpdate_VerifySampleGenCanHandleExamplesWithSomeParamet Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Retrieve a vault - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_RetrieveAVault() { // Generated from example definition: @@ -237,9 +234,8 @@ public async Task Get_RetrieveAVault() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Retrieve a vault - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Exists_RetrieveAVault() { // Generated from example definition: @@ -267,9 +263,8 @@ public async Task Exists_RetrieveAVault() Console.WriteLine($"Succeeded: {result}"); } - // Retrieve a vault - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetIfExists_RetrieveAVault() { // Generated from example definition: @@ -297,7 +292,7 @@ public async Task GetIfExists_RetrieveAVault() if (result == null) { - Console.WriteLine($"Succeeded with null as result"); + Console.WriteLine("Succeeded with null as result"); } else { @@ -309,9 +304,8 @@ public async Task GetIfExists_RetrieveAVault() } } - // List vaults in the specified resource group - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetAll_ListVaultsInTheSpecifiedResourceGroup() { // Generated from example definition: @@ -343,7 +337,7 @@ public async Task GetAll_ListVaultsInTheSpecifiedResourceGroup() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } } } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_VaultResource.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_VaultResource.cs index 12aaaf60271..e61b495ecbd 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_VaultResource.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_VaultResource.cs @@ -13,14 +13,14 @@ using Azure.ResourceManager; using Azure.ResourceManager.Resources; using MgmtMockAndSample.Models; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_VaultResource { - // Delete a vault - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Delete_DeleteAVault() { // Generated from example definition: @@ -42,12 +42,11 @@ public async Task Delete_DeleteAVault() // invoke the operation await vault.DeleteAsync(WaitUntil.Completed); - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } - // Retrieve a vault - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_RetrieveAVault() { // Generated from example definition: @@ -76,9 +75,8 @@ public async Task Get_RetrieveAVault() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // List keys on an existing vault - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetKeys_ListKeysOnAnExistingVault() { // Generated from example definition: @@ -103,12 +101,11 @@ public async Task GetKeys_ListKeysOnAnExistingVault() Console.WriteLine($"Succeeded: {item}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } - // Validate an existing vault - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Validate_ValidateAnExistingVault() { // Generated from example definition: @@ -133,9 +130,8 @@ public async Task Validate_ValidateAnExistingVault() Console.WriteLine($"Succeeded: {result}"); } - // Disable a vault - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Disable_DisableAVault() { // Generated from example definition: @@ -157,12 +153,11 @@ public async Task Disable_DisableAVault() // invoke the operation await vault.DisableAsync(); - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } - // Add an access policy, or update an access policy with new permissions - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task UpdateAccessPolicy_AddAnAccessPolicyOrUpdateAnAccessPolicyWithNewPermissions() { // Generated from example definition: @@ -206,9 +201,8 @@ public async Task UpdateAccessPolicy_AddAnAccessPolicyOrUpdateAnAccessPolicyWith Console.WriteLine($"Succeeded: {result}"); } - // List vaults in the specified subscription - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetVaults_ListVaultsInTheSpecifiedSubscription() { // Generated from example definition: @@ -236,12 +230,11 @@ public async Task GetVaults_ListVaultsInTheSpecifiedSubscription() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } - // Validate a vault name - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CheckNameAvailabilityVault_ValidateAVaultName() { // Generated from example definition: @@ -265,9 +258,8 @@ public async Task CheckNameAvailabilityVault_ValidateAVaultName() Console.WriteLine($"Succeeded: {result}"); } - // KeyVaultListPrivateLinkResources - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetPrivateLinkResources_KeyVaultListPrivateLinkResources() { // Generated from example definition: @@ -292,7 +284,7 @@ public async Task GetPrivateLinkResources_KeyVaultListPrivateLinkResources() Console.WriteLine($"Succeeded: {item}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } } } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_VirtualMachineExtensionImageCollection.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_VirtualMachineExtensionImageCollection.cs index b0e5b7cfb98..88ff6c82fef 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_VirtualMachineExtensionImageCollection.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_VirtualMachineExtensionImageCollection.cs @@ -12,14 +12,14 @@ using Azure.Identity; using Azure.ResourceManager; using Azure.ResourceManager.Resources; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_VirtualMachineExtensionImageCollection { - // VirtualMachineExtensionImages_Get_MaximumSet_Gen - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_VirtualMachineExtensionImagesGetMaximumSetGen() { // Generated from example definition: @@ -53,9 +53,8 @@ public async Task Get_VirtualMachineExtensionImagesGetMaximumSetGen() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // VirtualMachineExtensionImages_Get_MaximumSet_Gen - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Exists_VirtualMachineExtensionImagesGetMaximumSetGen() { // Generated from example definition: @@ -85,9 +84,8 @@ public async Task Exists_VirtualMachineExtensionImagesGetMaximumSetGen() Console.WriteLine($"Succeeded: {result}"); } - // VirtualMachineExtensionImages_Get_MaximumSet_Gen - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetIfExists_VirtualMachineExtensionImagesGetMaximumSetGen() { // Generated from example definition: @@ -117,7 +115,7 @@ public async Task GetIfExists_VirtualMachineExtensionImagesGetMaximumSetGen() if (result == null) { - Console.WriteLine($"Succeeded with null as result"); + Console.WriteLine("Succeeded with null as result"); } else { @@ -129,9 +127,8 @@ public async Task GetIfExists_VirtualMachineExtensionImagesGetMaximumSetGen() } } - // VirtualMachineExtensionImages_Get_MinimumSet_Gen - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_VirtualMachineExtensionImagesGetMinimumSetGen() { // Generated from example definition: @@ -165,9 +162,8 @@ public async Task Get_VirtualMachineExtensionImagesGetMinimumSetGen() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // VirtualMachineExtensionImages_Get_MinimumSet_Gen - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Exists_VirtualMachineExtensionImagesGetMinimumSetGen() { // Generated from example definition: @@ -197,9 +193,8 @@ public async Task Exists_VirtualMachineExtensionImagesGetMinimumSetGen() Console.WriteLine($"Succeeded: {result}"); } - // VirtualMachineExtensionImages_Get_MinimumSet_Gen - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetIfExists_VirtualMachineExtensionImagesGetMinimumSetGen() { // Generated from example definition: @@ -229,7 +224,7 @@ public async Task GetIfExists_VirtualMachineExtensionImagesGetMinimumSetGen() if (result == null) { - Console.WriteLine($"Succeeded with null as result"); + Console.WriteLine("Succeeded with null as result"); } else { @@ -241,9 +236,8 @@ public async Task GetIfExists_VirtualMachineExtensionImagesGetMinimumSetGen() } } - // VirtualMachineExtensionImages_ListTypes_MaximumSet_Gen - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetAll_VirtualMachineExtensionImagesListTypesMaximumSetGen() { // Generated from example definition: @@ -275,12 +269,11 @@ public async Task GetAll_VirtualMachineExtensionImagesListTypesMaximumSetGen() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } - // VirtualMachineExtensionImages_ListTypes_MinimumSet_Gen - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetAll_VirtualMachineExtensionImagesListTypesMinimumSetGen() { // Generated from example definition: @@ -312,12 +305,11 @@ public async Task GetAll_VirtualMachineExtensionImagesListTypesMinimumSetGen() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } - // VirtualMachineExtensionImages_ListVersions_MaximumSet_Gen - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetAll_VirtualMachineExtensionImagesListVersionsMaximumSetGen() { // Generated from example definition: @@ -353,12 +345,11 @@ public async Task GetAll_VirtualMachineExtensionImagesListVersionsMaximumSetGen( Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } - // VirtualMachineExtensionImages_ListVersions_MinimumSet_Gen - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetAll_VirtualMachineExtensionImagesListVersionsMinimumSetGen() { // Generated from example definition: @@ -391,7 +382,7 @@ public async Task GetAll_VirtualMachineExtensionImagesListVersionsMinimumSetGen( Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - Console.WriteLine($"Succeeded"); + Console.WriteLine("Succeeded"); } } } diff --git a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_VirtualMachineExtensionImageResource.cs b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_VirtualMachineExtensionImageResource.cs index c0757b8179d..19c6ca49c7e 100644 --- a/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_VirtualMachineExtensionImageResource.cs +++ b/test/TestProjects/MgmtMockAndSample/tests/Generated/Samples/Sample_VirtualMachineExtensionImageResource.cs @@ -10,14 +10,14 @@ using Azure.Core; using Azure.Identity; using Azure.ResourceManager; +using NUnit.Framework; namespace MgmtMockAndSample.Samples { public partial class Sample_VirtualMachineExtensionImageResource { - // VirtualMachineExtensionImages_Get_MaximumSet_Gen - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_VirtualMachineExtensionImagesGetMaximumSetGen() { // Generated from example definition: @@ -48,9 +48,8 @@ public async Task Get_VirtualMachineExtensionImagesGetMaximumSetGen() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // VirtualMachineExtensionImages_Get_MinimumSet_Gen - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_VirtualMachineExtensionImagesGetMinimumSetGen() { // Generated from example definition: diff --git a/test/TestProjects/MgmtTypeSpec/samples/Generated/Samples/Sample_FooCollection.cs b/test/TestProjects/MgmtTypeSpec/samples/Generated/Samples/Sample_FooCollection.cs index f5dc7d5a231..86d3e21a605 100644 --- a/test/TestProjects/MgmtTypeSpec/samples/Generated/Samples/Sample_FooCollection.cs +++ b/test/TestProjects/MgmtTypeSpec/samples/Generated/Samples/Sample_FooCollection.cs @@ -13,14 +13,14 @@ using Azure.ResourceManager; using Azure.ResourceManager.Resources; using MgmtTypeSpec.Models; +using NUnit.Framework; namespace MgmtTypeSpec.Samples { public partial class Sample_FooCollection { - // Create a foo - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task CreateOrUpdate_CreateAFoo() { // Generated from example definition: 2024-05-01/Foos_CreateOrUpdate.json @@ -64,9 +64,8 @@ public async Task CreateOrUpdate_CreateAFoo() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get a foo - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetAFoo() { // Generated from example definition: 2024-05-01/Foos_Get.json @@ -98,9 +97,8 @@ public async Task Get_GetAFoo() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get a foo - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Exists_GetAFoo() { // Generated from example definition: 2024-05-01/Foos_Get.json @@ -128,9 +126,8 @@ public async Task Exists_GetAFoo() Console.WriteLine($"Succeeded: {result}"); } - // Get a foo - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task GetIfExists_GetAFoo() { // Generated from example definition: 2024-05-01/Foos_Get.json @@ -158,7 +155,7 @@ public async Task GetIfExists_GetAFoo() if (result == null) { - Console.WriteLine($"Succeeded with null as result"); + Console.WriteLine("Succeeded with null as result"); } else { diff --git a/test/TestProjects/MgmtTypeSpec/samples/Generated/Samples/Sample_FooResource.cs b/test/TestProjects/MgmtTypeSpec/samples/Generated/Samples/Sample_FooResource.cs index e2f5be6c470..ea24f2e4d32 100644 --- a/test/TestProjects/MgmtTypeSpec/samples/Generated/Samples/Sample_FooResource.cs +++ b/test/TestProjects/MgmtTypeSpec/samples/Generated/Samples/Sample_FooResource.cs @@ -12,14 +12,14 @@ using Azure.Identity; using Azure.ResourceManager; using MgmtTypeSpec.Models; +using NUnit.Framework; namespace MgmtTypeSpec.Samples { public partial class Sample_FooResource { - // Create a foo - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Update_CreateAFoo() { // Generated from example definition: 2024-05-01/Foos_CreateOrUpdate.json @@ -60,9 +60,8 @@ public async Task Update_CreateAFoo() Console.WriteLine($"Succeeded on id: {resourceData.Id}"); } - // Get a foo - [NUnit.Framework.Test] - [NUnit.Framework.Ignore("Only verifying that the sample builds")] + [Test] + [Ignore("Only validating compilation of examples")] public async Task Get_GetAFoo() { // Generated from example definition: 2024-05-01/Foos_Get.json