Skip to content

Commit a83dfd7

Browse files
author
SDKAuto
committed
CodeGen from PR 15181 in Azure/azure-rest-api-specs
Merge 0d16c64ba88953c787b2c616c1ac891d2009b77d into d241e05b224891ddc0147544213d8edccf53f7d9
1 parent 7f6414a commit a83dfd7

File tree

5 files changed

+756
-0
lines changed

5 files changed

+756
-0
lines changed

schemas/2018-05-01/subscriptionDeploymentTemplate.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -665,6 +665,15 @@
665665
{
666666
"$ref": "https://schema.management.azure.com/schemas/2020-09-01/Microsoft.Authorization.Resources.json#/unknown_resourceDefinitions/policyAssignments"
667667
},
668+
{
669+
"$ref": "https://schema.management.azure.com/schemas/2021-06-01/Microsoft.Authorization.Resources.json#/subscription_resourceDefinitions/policyDefinitions"
670+
},
671+
{
672+
"$ref": "https://schema.management.azure.com/schemas/2021-06-01/Microsoft.Authorization.Resources.json#/subscription_resourceDefinitions/policySetDefinitions"
673+
},
674+
{
675+
"$ref": "https://schema.management.azure.com/schemas/2021-06-01/Microsoft.Authorization.Resources.json#/unknown_resourceDefinitions/policyAssignments"
676+
},
668677
{
669678
"$ref": "https://schema.management.azure.com/schemas/2018-11-01-preview/Microsoft.Billing.json#/subscription_resourceDefinitions/billingAccounts_lineOfCredit"
670679
},

schemas/2019-08-01/managementGroupDeploymentTemplate.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -617,6 +617,9 @@
617617
{
618618
"$ref": "https://schema.management.azure.com/schemas/2020-03-01/Microsoft.Authorization.Resources.json#/unknown_resourceDefinitions/policyAssignments"
619619
},
620+
{
621+
"$ref": "https://schema.management.azure.com/schemas/2020-05-01/Microsoft.Authorization.Resources.json#/managementGroup_resourceDefinitions/privateLinkAssociations"
622+
},
620623
{
621624
"$ref": "https://schema.management.azure.com/schemas/2020-07-01-preview/Microsoft.Authorization.Resources.json#/unknown_resourceDefinitions/policyExemptions"
622625
},
@@ -629,6 +632,15 @@
629632
{
630633
"$ref": "https://schema.management.azure.com/schemas/2020-09-01/Microsoft.Authorization.Resources.json#/unknown_resourceDefinitions/policyAssignments"
631634
},
635+
{
636+
"$ref": "https://schema.management.azure.com/schemas/2021-06-01/Microsoft.Authorization.Resources.json#/managementGroup_resourceDefinitions/policyDefinitions"
637+
},
638+
{
639+
"$ref": "https://schema.management.azure.com/schemas/2021-06-01/Microsoft.Authorization.Resources.json#/managementGroup_resourceDefinitions/policySetDefinitions"
640+
},
641+
{
642+
"$ref": "https://schema.management.azure.com/schemas/2021-06-01/Microsoft.Authorization.Resources.json#/unknown_resourceDefinitions/policyAssignments"
643+
},
632644
{
633645
"$ref": "https://schema.management.azure.com/schemas/2017-11-11-preview/Microsoft.Blueprint.json#/managementGroup_resourceDefinitions/blueprints"
634646
},
Lines changed: 87 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
{
2+
"id": "https://schema.management.azure.com/schemas/2020-05-01/Microsoft.Authorization.Resources.json#",
3+
"$schema": "http://json-schema.org/draft-04/schema#",
4+
"title": "Microsoft.Authorization",
5+
"description": "Microsoft Authorization Resource Types",
6+
"resourceDefinitions": {
7+
"resourceManagementPrivateLinks": {
8+
"type": "object",
9+
"properties": {
10+
"apiVersion": {
11+
"type": "string",
12+
"enum": [
13+
"2020-05-01"
14+
]
15+
},
16+
"location": {
17+
"type": "string",
18+
"description": "the region to create private link association."
19+
},
20+
"name": {
21+
"type": "string",
22+
"description": "The name of the resource management private link."
23+
},
24+
"type": {
25+
"type": "string",
26+
"enum": [
27+
"Microsoft.Authorization/resourceManagementPrivateLinks"
28+
]
29+
}
30+
},
31+
"required": [
32+
"apiVersion",
33+
"name",
34+
"type"
35+
],
36+
"description": "Microsoft.Authorization/resourceManagementPrivateLinks"
37+
}
38+
},
39+
"managementGroup_resourceDefinitions": {
40+
"privateLinkAssociations": {
41+
"type": "object",
42+
"properties": {
43+
"apiVersion": {
44+
"type": "string",
45+
"enum": [
46+
"2020-05-01"
47+
]
48+
},
49+
"name": {
50+
"type": "string",
51+
"description": "The ID of the PLA"
52+
},
53+
"privateLink": {
54+
"type": "string",
55+
"description": "The rmpl Resource ID."
56+
},
57+
"publicNetworkAccess": {
58+
"oneOf": [
59+
{
60+
"type": "string",
61+
"enum": [
62+
"Enabled",
63+
"Disabled"
64+
]
65+
},
66+
{
67+
"$ref": "https://schema.management.azure.com/schemas/common/definitions.json#/definitions/expression"
68+
}
69+
]
70+
},
71+
"type": {
72+
"type": "string",
73+
"enum": [
74+
"Microsoft.Authorization/privateLinkAssociations"
75+
]
76+
}
77+
},
78+
"required": [
79+
"apiVersion",
80+
"name",
81+
"type"
82+
],
83+
"description": "Microsoft.Authorization/privateLinkAssociations"
84+
}
85+
},
86+
"definitions": {}
87+
}

0 commit comments

Comments
 (0)