Skip to content

Commit

Permalink
Add AutoGeneratedDomainNameLabelScope (#18522)
Browse files Browse the repository at this point in the history
  • Loading branch information
qingquanzhao authored Apr 2, 2022
1 parent 48d8558 commit a1a224b
Show file tree
Hide file tree
Showing 6 changed files with 29 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,8 @@
"provisioningState": "Succeeded",
"grafanaVersion": "7.1",
"endpoint": "my.azgrafana.io",
"zoneRedundancy": "Enabled"
"zoneRedundancy": "Enabled",
"autoGeneratedDomainNameLabelScope": "TenantReuse"
},
"identity": {
"type": "SystemAssigned"
Expand Down Expand Up @@ -65,7 +66,8 @@
"provisioningState": "Accepted",
"grafanaVersion": "7.1",
"endpoint": "my.azgrafana.io",
"zoneRedundancy": "Enabled"
"zoneRedundancy": "Enabled",
"autoGeneratedDomainNameLabelScope": "TenantReuse"
},
"tags": {
"Environment": "Dev"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"provisioningState": "Succeeded",
"grafanaVersion": "7.1",
"endpoint": "my.azgrafana.io",
"zoneRedundancy": "Enabled"
"zoneRedundancy": "Enabled",
"autoGeneratedDomainNameLabelScope": "TenantReuse"
},
"tags": {
"Environment": "Dev"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
"provisioningState": "Succeeded",
"grafanaVersion": "7.1",
"endpoint": "my.azgrafana.io",
"zoneRedundancy": "Enabled"
"zoneRedundancy": "Enabled",
"autoGeneratedDomainNameLabelScope": "TenantReuse"
},
"tags": {
"Environment": "Dev"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@
"provisioningState": "Succeeded",
"grafanaVersion": "7.1",
"endpoint": "my.azgrafana.io",
"zoneRedundancy": "Enabled"
"zoneRedundancy": "Enabled",
"autoGeneratedDomainNameLabelScope": "TenantReuse"
},
"tags": {
"Environment": "Dev"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"provisioningState": "Succeeded",
"grafanaVersion": "7.1",
"endpoint": "my.azgrafana.io",
"zoneRedundancy": "Enabled"
"zoneRedundancy": "Enabled",
"autoGeneratedDomainNameLabelScope": "TenantReuse"
},
"tags": {
"Environment": "Dev 2"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -465,6 +465,9 @@
},
"zoneRedundancy": {
"$ref": "#/definitions/ZoneRedundancy"
},
"autoGeneratedDomainNameLabelScope": {
"$ref": "#/definitions/AutoGeneratedDomainNameLabelScope"
}
}
},
Expand Down Expand Up @@ -702,6 +705,20 @@
"readOnly": true
}
}
},
"AutoGeneratedDomainNameLabelScope": {
"enum": [
"TenantReuse"
],
"type": "string",
"x-ms-enum": {
"modelAsString": true,
"name": "AutoGeneratedDomainNameLabelScope"
},
"x-ms-mutability": [
"read",
"create"
]
}
},
"securityDefinitions": {
Expand Down

0 comments on commit a1a224b

Please sign in to comment.