diff --git a/Commands/readme.md b/Commands/readme.md index 8a35fa445..1e43aa423 100644 --- a/Commands/readme.md +++ b/Commands/readme.md @@ -353,6 +353,9 @@ - [sig](/Commands/sig/readme.md) : Manage shared image gallery. +- [site](/Commands/site/readme.md) +: Manage Site + - [site-recovery](/Commands/site-recovery/readme.md) : Manage Site Recovery Service diff --git a/Commands/site/_create.md b/Commands/site/_create.md new file mode 100644 index 000000000..75019eb2b --- /dev/null +++ b/Commands/site/_create.md @@ -0,0 +1,33 @@ +# [Command] _site create_ + +Create a site resource scoped to a resource group, subscription, or service group. + +Scope Options:\ +--resource-group: Scope the site to a specific resource group. Note: When using this option, you must also provide --subscription.\ +--subscription: Scope the site to a subscription.\ +--service-group: Scope the site to a service group. + +## Versions + +### [2025-06-01](/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcy97fQ==/2025-06-01.xml) **Stable** + + + + + +#### examples + +- Create a Site at service group scope + ```bash + site create --site-name TestSiteName --service-group TestSGName --display-name 'Test Site Display' --description "Test Site" --labels key1="value1" key2="value2" --street-address1="16 TOWNSEND ST" --street-address2="UNIT 1" --city="newyork" --state-or-province="CA" --country="US" --postal-code="94107" + ``` + +- Create a Site at resource group scope + ```bash + site create --site-name TestSiteName --resource-group TestRGName --subscription 000000000-0000-0000-0000-000000000000 --display-name 'Test Site Display' --description "Test Site" --street-address1="16 TOWNSEND ST" --street-address2="UNIT 1" --city="newyork" --state-or-province="CA" --country="US" --postal-code="94107" + ``` + +- Create a Site at subscription scope + ```bash + site create --site-name TestSiteName --subscription 000000000-0000-0000-0000-000000000000 --display-name 'Test Site Display' --description "Test Site" --labels key1="value1" --street-address1="16 TOWNSEND ST" --street-address2="UNIT 1" --city="newyork" --state-or-province="CA" --country="US" --postal-code="94107" + ``` diff --git a/Commands/site/_delete.md b/Commands/site/_delete.md new file mode 100644 index 000000000..86ed900ba --- /dev/null +++ b/Commands/site/_delete.md @@ -0,0 +1,33 @@ +# [Command] _site delete_ + +Deletes an existing site resource scoped to a resource group, subscription, or service group. + +Scope Options:\ +--resource-group: Target a site within a specific resource group. Note: Requires --subscription.\ +--subscription: Target a site scoped to a subscription.\ +--service-group: Target a site scoped to a service group. + +## Versions + +### [2025-06-01](/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcy97fQ==/2025-06-01.xml) **Stable** + + + + + +#### examples + +- Delete a Site at service group scope + ```bash + site delete --site-name TestSiteName --service-group TestSGName + ``` + +- Delete a Site at resource group scope + ```bash + site delete --site-name TestSiteName --resource-group TestRGName --subscription 00000000-0000-0000-0000-000000000000 + ``` + +- Delete a Site at subscription scope + ```bash + site delete --site-name TestSiteName --subscription 00000000-0000-0000-0000-000000000000 + ``` diff --git a/Commands/site/_list.md b/Commands/site/_list.md new file mode 100644 index 000000000..bccf326af --- /dev/null +++ b/Commands/site/_list.md @@ -0,0 +1,33 @@ +# [Command] _site list_ + +Lists all site resources scoped to a resource group, subscription, or service group. + +Scope Options:\ +--resource-group: List sites within a specific resource group. Note: Requires --subscription.\ +--subscription: List sites scoped to a subscription.\ +--service-group: List sites scoped to a service group. + +## Versions + +### [2025-06-01](/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcw==/2025-06-01.xml) **Stable** + + + + + +#### examples + +- List Sites at service group scope + ```bash + site list --service-group TestSGName + ``` + +- List Sites at resource group scope + ```bash + site list --resource-group TestRGName --subscription 00000000000-0000-0000-0000-000000000000 + ``` + +- List Sites at subscription scope + ```bash + site list --subscription 00000000000-0000-0000-0000-000000000000 + ``` diff --git a/Commands/site/_show.md b/Commands/site/_show.md new file mode 100644 index 000000000..48798ba70 --- /dev/null +++ b/Commands/site/_show.md @@ -0,0 +1,33 @@ +# [Command] _site show_ + +Displays details of a specific site resource scoped to a resource group, subscription, or service group. + +Scope Options:\ +--resource-group: Show site details within a specific resource group. Note: Requires --subscription.\ +--subscription: Show site details scoped to a subscription.\ +--service-group: Show site details scoped to a service group. + +## Versions + +### [2025-06-01](/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcy97fQ==/2025-06-01.xml) **Stable** + + + + + +#### examples + +- Show a Site at service group scope + ```bash + site show --site-name TestSiteName --service-group TestSGName + ``` + +- Show a Site at resource group scope + ```bash + site show --site-name TestSiteName --resource-group TestRGName --subscription 00000000-0000-0000-0000-000000000000 + ``` + +- Show a Site at subscription scope + ```bash + site show --site-name TestSiteName --subscription 00000000-0000-0000-0000-000000000000 + ``` diff --git a/Commands/site/_update.md b/Commands/site/_update.md new file mode 100644 index 000000000..4fb480968 --- /dev/null +++ b/Commands/site/_update.md @@ -0,0 +1,34 @@ +# [Command] _site update_ + +Updates an existing site resource scoped to a resource group, subscription, or service group. + +Scope Options:\ +--resource-group: Update a site within a specific resource group.\ +Note: Requires --subscription.\ +--subscription: Update a site scoped to a subscription.\ +--service-group: Update a site scoped to a service group. + +## Versions + +### [2025-06-01](/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcy97fQ==/2025-06-01.xml) **Stable** + + + + + +#### examples + +- Update a Site at service group scope + ```bash + site update --site-name TestSiteName --service-group TestSGName --description "Test Site" --labels key1="value1" key2="value2" --street-address1="17 TOWNSEND ST" --street-address2="UNIT 2" --city="newyork" --state-or-province="CA" --country="US" --postal-code="94107" + ``` + +- Update a Site at resource group scope + ```bash + site update --site-name TestSiteName --resource-group TestMSRG --subscription 00000000-0000-0000-0000-000000000000 --description "Test Site" --labels key1="value1" key2="value2" --street-address1="17 TOWNSEND ST" --street-address2="UNIT 2" --city="newyork" --state-or-province="CA" --country="US" --postal-code="94107" + ``` + +- Update a Site at subscription scope + ```bash + site update --site-name TestSiteName --subscription 00000000-0000-0000-0000-000000000000 --description "Test Site" --labels key1="value1" key2="value2" --street-address1="17 TOWNSEND ST" --street-address2="UNIT 2" --city="newyork" --state-or-province="CA" --country="US" --postal-code="94107" + ``` diff --git a/Commands/site/readme.md b/Commands/site/readme.md new file mode 100644 index 000000000..1ff49baa7 --- /dev/null +++ b/Commands/site/readme.md @@ -0,0 +1,20 @@ +# [Group] _site_ + +Manage Site + +## Commands + +- [create](/Commands/site/_create.md) +: Create a site resource scoped to a resource group, subscription, or service group. + +- [delete](/Commands/site/_delete.md) +: Deletes an existing site resource scoped to a resource group, subscription, or service group. + +- [list](/Commands/site/_list.md) +: Lists all site resources scoped to a resource group, subscription, or service group. + +- [show](/Commands/site/_show.md) +: Displays details of a specific site resource scoped to a resource group, subscription, or service group. + +- [update](/Commands/site/_update.md) +: Updates an existing site resource scoped to a resource group, subscription, or service group. diff --git a/Commands/workload-orchestration/readme.md b/Commands/workload-orchestration/readme.md index ac377729a..5e13fda83 100644 --- a/Commands/workload-orchestration/readme.md +++ b/Commands/workload-orchestration/readme.md @@ -28,9 +28,6 @@ Manage Edge - [schema-reference](/Commands/workload-orchestration/schema-reference/readme.md) : Manage Schema Reference -- [site](/Commands/workload-orchestration/site/readme.md) -: Manage Site - - [solution-template](/Commands/workload-orchestration/solution-template/readme.md) : Manage Solution Template diff --git a/Commands/workload-orchestration/site/_create.md b/Commands/workload-orchestration/site/_create.md deleted file mode 100644 index 617163064..000000000 --- a/Commands/workload-orchestration/site/_create.md +++ /dev/null @@ -1,11 +0,0 @@ -# [Command] _workload-orchestration site create_ - -Create Site at SG scope - -## Versions - -### [2025-06-01](/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcy97fQ==/2025-06-01.xml) **Stable** - - - - diff --git a/Commands/workload-orchestration/site/_delete.md b/Commands/workload-orchestration/site/_delete.md deleted file mode 100644 index 9a857b87c..000000000 --- a/Commands/workload-orchestration/site/_delete.md +++ /dev/null @@ -1,11 +0,0 @@ -# [Command] _workload-orchestration site delete_ - -Delete Site at SG scope - -## Versions - -### [2025-06-01](/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcy97fQ==/2025-06-01.xml) **Stable** - - - - diff --git a/Commands/workload-orchestration/site/_list.md b/Commands/workload-orchestration/site/_list.md deleted file mode 100644 index 6095f07af..000000000 --- a/Commands/workload-orchestration/site/_list.md +++ /dev/null @@ -1,11 +0,0 @@ -# [Command] _workload-orchestration site list_ - -List Site at SG scope - -## Versions - -### [2025-06-01](/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcw==/2025-06-01.xml) **Stable** - - - - diff --git a/Commands/workload-orchestration/site/_show.md b/Commands/workload-orchestration/site/_show.md deleted file mode 100644 index 9eb5cc07e..000000000 --- a/Commands/workload-orchestration/site/_show.md +++ /dev/null @@ -1,11 +0,0 @@ -# [Command] _workload-orchestration site show_ - -Get Site at SG scope - -## Versions - -### [2025-06-01](/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcy97fQ==/2025-06-01.xml) **Stable** - - - - diff --git a/Commands/workload-orchestration/site/_update.md b/Commands/workload-orchestration/site/_update.md deleted file mode 100644 index 6740757f1..000000000 --- a/Commands/workload-orchestration/site/_update.md +++ /dev/null @@ -1,11 +0,0 @@ -# [Command] _workload-orchestration site update_ - -Update Site at SG scope - -## Versions - -### [2025-06-01](/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcy97fQ==/2025-06-01.xml) **Stable** - - - - diff --git a/Commands/workload-orchestration/site/readme.md b/Commands/workload-orchestration/site/readme.md deleted file mode 100644 index 5f50278a9..000000000 --- a/Commands/workload-orchestration/site/readme.md +++ /dev/null @@ -1,20 +0,0 @@ -# [Group] _workload-orchestration site_ - -Manage Site - -## Commands - -- [create](/Commands/workload-orchestration/site/_create.md) -: Create Site at SG scope - -- [delete](/Commands/workload-orchestration/site/_delete.md) -: Delete Site at SG scope - -- [list](/Commands/workload-orchestration/site/_list.md) -: List Site at SG scope - -- [show](/Commands/workload-orchestration/site/_show.md) -: Get Site at SG scope - -- [update](/Commands/workload-orchestration/site/_update.md) -: Update Site at SG scope diff --git a/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcw==/2025-06-01.json b/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcw==/2025-06-01.json index 3730da7a7..b14ad36bb 100644 --- a/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcw==/2025-06-01.json +++ b/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcw==/2025-06-01.json @@ -1 +1 @@ -{"plane": "mgmt-plane", "resources": [{"id": "/providers/microsoft.management/servicegroups/{}/providers/microsoft.edge/sites", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9zZXJ2aWNlR3JvdXBzL3tzZXJ2aWNlZ3JvdXBOYW1lfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXM=/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/providers/microsoft.edge/sites", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXM=/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/resourcegroups/{}/providers/microsoft.edge/sites", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9yZXNvdXJjZUdyb3Vwcy97cmVzb3VyY2VHcm91cE5hbWV9L3Byb3ZpZGVycy9NaWNyb3NvZnQuRWRnZS9zaXRlcw==/V/MjAyNS0wNi0wMQ=="}], "commandGroups": [{"name": "workload-orchestration site", "commands": [{"name": "list", "version": "2025-06-01", "resources": [{"id": "/providers/microsoft.management/servicegroups/{}/providers/microsoft.edge/sites", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9zZXJ2aWNlR3JvdXBzL3tzZXJ2aWNlZ3JvdXBOYW1lfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXM=/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/providers/microsoft.edge/sites", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXM=/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/resourcegroups/{}/providers/microsoft.edge/sites", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9yZXNvdXJjZUdyb3Vwcy97cmVzb3VyY2VHcm91cE5hbWV9L3Byb3ZpZGVycy9NaWNyb3NvZnQuRWRnZS9zaXRlcw==/V/MjAyNS0wNi0wMQ=="}], "argGroups": [{"name": "", "args": [{"type": "ResourceGroupName", "var": "$Path.resourceGroupName", "options": ["g", "resource-group"], "idPart": "resource_group"}, {"type": "string", "var": "$Path.servicegroupName", "options": ["servicegroup-name"], "help": {"short": "The name of the service group"}, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "SubscriptionId", "var": "$Path.subscriptionId", "options": ["subscription"], "idPart": "subscription"}]}], "conditions": [{"var": "$Condition_SitesByServiceGroup_ListByServiceGroup", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.servicegroupName"}]}}, {"var": "$Condition_SitesBySubscription_List", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.subscriptionId"}, {"type": "not", "operator": {"type": "hasValue", "arg": "$Path.resourceGroupName"}}]}}, {"var": "$Condition_Sites_ListByResourceGroup", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.resourceGroupName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}]}}], "operations": [{"when": ["$Condition_SitesByServiceGroup_ListByServiceGroup"], "operationId": "SitesByServiceGroup_ListByServiceGroup", "http": {"path": "/providers/Microsoft.Management/serviceGroups/{servicegroupName}/providers/Microsoft.Edge/sites", "request": {"method": "get", "path": {"params": [{"type": "string", "name": "servicegroupName", "arg": "$Path.servicegroupName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"type": "string", "name": "nextLink"}, {"type": "array", "name": "value", "required": true, "item": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt"}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt"}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_SitesBySubscription_List"], "operationId": "SitesBySubscription_List", "http": {"path": "/subscriptions/{subscriptionId}/providers/Microsoft.Edge/sites", "request": {"method": "get", "path": {"params": [{"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"type": "string", "name": "nextLink"}, {"type": "array", "name": "value", "required": true, "item": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt"}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt"}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_Sites_ListByResourceGroup"], "operationId": "Sites_ListByResourceGroup", "http": {"path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/sites", "request": {"method": "get", "path": {"params": [{"type": "string", "name": "resourceGroupName", "arg": "$Path.resourceGroupName", "required": true, "format": {"maxLength": 90, "minLength": 1}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"type": "string", "name": "nextLink"}, {"type": "array", "name": "value", "required": true, "item": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt"}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt"}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}], "outputs": [{"type": "array", "ref": "$Instance.value", "clientFlatten": true, "nextLink": "$Instance.nextLink"}]}]}]} \ No newline at end of file +{"plane": "mgmt-plane", "resources": [{"id": "/providers/microsoft.management/servicegroups/{}/providers/microsoft.edge/sites", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9zZXJ2aWNlR3JvdXBzL3tzZXJ2aWNlZ3JvdXBOYW1lfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXM=/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/providers/microsoft.edge/sites", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXM=/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/resourcegroups/{}/providers/microsoft.edge/sites", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9yZXNvdXJjZUdyb3Vwcy97cmVzb3VyY2VHcm91cE5hbWV9L3Byb3ZpZGVycy9NaWNyb3NvZnQuRWRnZS9zaXRlcw==/V/MjAyNS0wNi0wMQ=="}], "commandGroups": [{"name": "site", "commands": [{"name": "list", "version": "2025-06-01", "resources": [{"id": "/providers/microsoft.management/servicegroups/{}/providers/microsoft.edge/sites", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9zZXJ2aWNlR3JvdXBzL3tzZXJ2aWNlZ3JvdXBOYW1lfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXM=/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/providers/microsoft.edge/sites", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXM=/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/resourcegroups/{}/providers/microsoft.edge/sites", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9yZXNvdXJjZUdyb3Vwcy97cmVzb3VyY2VHcm91cE5hbWV9L3Byb3ZpZGVycy9NaWNyb3NvZnQuRWRnZS9zaXRlcw==/V/MjAyNS0wNi0wMQ=="}], "argGroups": [{"name": "", "args": [{"type": "ResourceGroupName", "var": "$Path.resourceGroupName", "options": ["g", "resource-group"], "group": "", "idPart": "resource_group", "help": {"short": "Name of the resource group"}}, {"type": "string", "var": "$Path.servicegroupName", "options": ["sg", "service-group"], "group": "", "help": {"short": "Name of the service group"}, "format": {"pattern": "^[a-zA-Z0-9\\-_().]{1,90}$"}}, {"type": "SubscriptionId", "var": "$Path.subscriptionId", "options": ["subscription"], "group": "", "idPart": "subscription", "help": {"short": "ID of subscription"}}]}], "conditions": [{"var": "$Condition_SitesByServiceGroup_ListByServiceGroup", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.servicegroupName"}]}}, {"var": "$Condition_SitesBySubscription_List", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.subscriptionId"}, {"type": "not", "operator": {"type": "hasValue", "arg": "$Path.resourceGroupName"}}]}}, {"var": "$Condition_Sites_ListByResourceGroup", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.resourceGroupName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}]}}], "operations": [{"when": ["$Condition_SitesByServiceGroup_ListByServiceGroup"], "operationId": "SitesByServiceGroup_ListByServiceGroup", "http": {"path": "/providers/Microsoft.Management/serviceGroups/{servicegroupName}/providers/Microsoft.Edge/sites", "request": {"method": "get", "path": {"params": [{"type": "string", "name": "servicegroupName", "arg": "$Path.servicegroupName", "required": true, "format": {"pattern": "^[a-zA-Z0-9\\-_().]{1,90}$"}}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"type": "string", "name": "nextLink"}, {"type": "array", "name": "value", "required": true, "item": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_SitesBySubscription_List"], "operationId": "SitesBySubscription_List", "http": {"path": "/subscriptions/{subscriptionId}/providers/Microsoft.Edge/sites", "request": {"method": "get", "path": {"params": [{"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"type": "string", "name": "nextLink"}, {"type": "array", "name": "value", "required": true, "item": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_Sites_ListByResourceGroup"], "operationId": "Sites_ListByResourceGroup", "http": {"path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/sites", "request": {"method": "get", "path": {"params": [{"type": "string", "name": "resourceGroupName", "arg": "$Path.resourceGroupName", "required": true, "format": {"maxLength": 90, "minLength": 1}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"type": "string", "name": "nextLink"}, {"type": "array", "name": "value", "required": true, "item": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}], "outputs": [{"type": "array", "ref": "$Instance.value", "clientFlatten": true, "nextLink": "$Instance.nextLink"}], "confirmation": ""}]}]} \ No newline at end of file diff --git a/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcw==/2025-06-01.xml b/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcw==/2025-06-01.xml index 094f5b3a9..c77eccf0e 100644 --- a/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcw==/2025-06-01.xml +++ b/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcw==/2025-06-01.xml @@ -3,18 +3,22 @@ - - + + - - - - + + + + + + + + + - @@ -40,7 +44,7 @@ - + @@ -84,7 +88,9 @@ - + + + @@ -94,7 +100,9 @@ - + + + @@ -168,7 +176,9 @@ - + + + @@ -178,7 +188,9 @@ - + + + @@ -255,7 +267,9 @@ - + + + @@ -265,7 +279,9 @@ - + + + diff --git a/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcy97fQ==/2025-06-01.json b/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcy97fQ==/2025-06-01.json index 9c3a2ecb1..3c3637a51 100644 --- a/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcy97fQ==/2025-06-01.json +++ b/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcy97fQ==/2025-06-01.json @@ -1 +1 @@ -{"plane": "mgmt-plane", "resources": [{"id": "/providers/microsoft.management/servicegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9zZXJ2aWNlR3JvdXBzL3tzZXJ2aWNlZ3JvdXBOYW1lfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/resourcegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9yZXNvdXJjZUdyb3Vwcy97cmVzb3VyY2VHcm91cE5hbWV9L3Byb3ZpZGVycy9NaWNyb3NvZnQuRWRnZS9zaXRlcy97c2l0ZU5hbWV9/V/MjAyNS0wNi0wMQ=="}], "commandGroups": [{"name": "workload-orchestration site", "commands": [{"name": "show", "version": "2025-06-01", "resources": [{"id": "/providers/microsoft.management/servicegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9zZXJ2aWNlR3JvdXBzL3tzZXJ2aWNlZ3JvdXBOYW1lfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/resourcegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9yZXNvdXJjZUdyb3Vwcy97cmVzb3VyY2VHcm91cE5hbWV9L3Byb3ZpZGVycy9NaWNyb3NvZnQuRWRnZS9zaXRlcy97c2l0ZU5hbWV9/V/MjAyNS0wNi0wMQ=="}], "argGroups": [{"name": "", "args": [{"type": "ResourceGroupName", "var": "$Path.resourceGroupName", "options": ["g", "resource-group"], "idPart": "resource_group"}, {"type": "string", "var": "$Path.servicegroupName", "options": ["servicegroup-name"], "help": {"short": "The name of the service group"}, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "string", "var": "$Path.siteName", "options": ["site-name"], "required": true, "help": {"short": "The name of the site"}, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "SubscriptionId", "var": "$Path.subscriptionId", "options": ["subscription"], "idPart": "subscription"}]}], "conditions": [{"var": "$Condition_SitesByServiceGroup_Get", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.servicegroupName"}, {"type": "hasValue", "arg": "$Path.siteName"}]}}, {"var": "$Condition_SitesBySubscription_Get", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.siteName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}, {"type": "not", "operator": {"type": "hasValue", "arg": "$Path.resourceGroupName"}}]}}, {"var": "$Condition_Sites_Get", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.resourceGroupName"}, {"type": "hasValue", "arg": "$Path.siteName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}]}}], "operations": [{"when": ["$Condition_SitesByServiceGroup_Get"], "operationId": "SitesByServiceGroup_Get", "http": {"path": "/providers/Microsoft.Management/serviceGroups/{servicegroupName}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "get", "path": {"params": [{"type": "string", "name": "servicegroupName", "arg": "$Path.servicegroupName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt"}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt"}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_SitesBySubscription_Get"], "operationId": "SitesBySubscription_Get", "http": {"path": "/subscriptions/{subscriptionId}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "get", "path": {"params": [{"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt"}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt"}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_Sites_Get"], "operationId": "Sites_Get", "http": {"path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "get", "path": {"params": [{"type": "string", "name": "resourceGroupName", "arg": "$Path.resourceGroupName", "required": true, "format": {"maxLength": 90, "minLength": 1}}, {"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt"}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt"}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}], "outputs": [{"type": "object", "ref": "$Instance", "clientFlatten": true}]}, {"name": "delete", "version": "2025-06-01", "resources": [{"id": "/providers/microsoft.management/servicegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9zZXJ2aWNlR3JvdXBzL3tzZXJ2aWNlZ3JvdXBOYW1lfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/resourcegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9yZXNvdXJjZUdyb3Vwcy97cmVzb3VyY2VHcm91cE5hbWV9L3Byb3ZpZGVycy9NaWNyb3NvZnQuRWRnZS9zaXRlcy97c2l0ZU5hbWV9/V/MjAyNS0wNi0wMQ=="}], "argGroups": [{"name": "", "args": [{"type": "ResourceGroupName", "var": "$Path.resourceGroupName", "options": ["g", "resource-group"], "idPart": "resource_group"}, {"type": "string", "var": "$Path.servicegroupName", "options": ["servicegroup-name"], "help": {"short": "The name of the service group"}, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "string", "var": "$Path.siteName", "options": ["site-name"], "required": true, "help": {"short": "The name of the site"}, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "SubscriptionId", "var": "$Path.subscriptionId", "options": ["subscription"], "idPart": "subscription"}]}], "conditions": [{"var": "$Condition_SitesByServiceGroup_Delete", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.servicegroupName"}, {"type": "hasValue", "arg": "$Path.siteName"}]}}, {"var": "$Condition_SitesBySubscription_Delete", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.siteName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}, {"type": "not", "operator": {"type": "hasValue", "arg": "$Path.resourceGroupName"}}]}}, {"var": "$Condition_Sites_Delete", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.resourceGroupName"}, {"type": "hasValue", "arg": "$Path.siteName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}]}}], "operations": [{"when": ["$Condition_SitesByServiceGroup_Delete"], "operationId": "SitesByServiceGroup_Delete", "http": {"path": "/providers/Microsoft.Management/serviceGroups/{servicegroupName}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "delete", "path": {"params": [{"type": "string", "name": "servicegroupName", "arg": "$Path.servicegroupName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200]}, {"statusCode": [204]}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_SitesBySubscription_Delete"], "operationId": "SitesBySubscription_Delete", "http": {"path": "/subscriptions/{subscriptionId}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "delete", "path": {"params": [{"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200]}, {"statusCode": [204]}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_Sites_Delete"], "operationId": "Sites_Delete", "http": {"path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "delete", "path": {"params": [{"type": "string", "name": "resourceGroupName", "arg": "$Path.resourceGroupName", "required": true, "format": {"maxLength": 90, "minLength": 1}}, {"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200]}, {"statusCode": [204]}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}], "confirmation": "Are you sure you want to perform this operation?"}, {"name": "create", "version": "2025-06-01", "resources": [{"id": "/providers/microsoft.management/servicegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9zZXJ2aWNlR3JvdXBzL3tzZXJ2aWNlZ3JvdXBOYW1lfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/resourcegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9yZXNvdXJjZUdyb3Vwcy97cmVzb3VyY2VHcm91cE5hbWV9L3Byb3ZpZGVycy9NaWNyb3NvZnQuRWRnZS9zaXRlcy97c2l0ZU5hbWV9/V/MjAyNS0wNi0wMQ=="}], "argGroups": [{"name": "", "args": [{"type": "ResourceGroupName", "var": "$Path.resourceGroupName", "options": ["g", "resource-group"], "idPart": "resource_group"}, {"type": "string", "var": "$Path.servicegroupName", "options": ["servicegroup-name"], "help": {"short": "The name of the service group"}, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "string", "var": "$Path.siteName", "options": ["site-name"], "required": true, "help": {"short": "The name of the site"}, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "SubscriptionId", "var": "$Path.subscriptionId", "options": ["subscription"], "idPart": "subscription"}]}, {"name": "Properties", "args": [{"type": "string", "var": "$resource.properties.description", "options": ["description"], "group": "Properties", "help": {"short": "Description of Site resource"}}, {"type": "string", "var": "$resource.properties.displayName", "options": ["display-name"], "group": "Properties", "help": {"short": "displayName of Site resource"}}, {"type": "object", "var": "$resource.properties.labels", "options": ["labels"], "group": "Properties", "help": {"short": "Key-value pairs for labeling the site resource."}, "additionalProps": {"item": {"type": "string"}}}, {"type": "object", "var": "$resource.properties.siteAddress", "options": ["site-address"], "group": "Properties", "help": {"short": "Physical address of the site"}, "args": [{"type": "string", "var": "$resource.properties.siteAddress.city", "options": ["city"], "help": {"short": "City of the address"}}, {"type": "string", "var": "$resource.properties.siteAddress.country", "options": ["country"], "help": {"short": "Country of the address"}}, {"type": "string", "var": "$resource.properties.siteAddress.postalCode", "options": ["postal-code"], "help": {"short": "Postal or ZIP code of the address"}}, {"type": "string", "var": "$resource.properties.siteAddress.stateOrProvince", "options": ["state-or-province"], "help": {"short": "State or province of the address"}}, {"type": "string", "var": "$resource.properties.siteAddress.streetAddress1", "options": ["street-address1"], "help": {"short": "First line of the street address"}}, {"type": "string", "var": "$resource.properties.siteAddress.streetAddress2", "options": ["street-address2"], "help": {"short": "Second line of the street address"}}]}]}], "conditions": [{"var": "$Condition_SitesByServiceGroup_CreateOrUpdate", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.servicegroupName"}, {"type": "hasValue", "arg": "$Path.siteName"}]}}, {"var": "$Condition_SitesBySubscription_CreateOrUpdate", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.siteName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}, {"type": "not", "operator": {"type": "hasValue", "arg": "$Path.resourceGroupName"}}]}}, {"var": "$Condition_Sites_CreateOrUpdate", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.resourceGroupName"}, {"type": "hasValue", "arg": "$Path.siteName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}]}}], "operations": [{"when": ["$Condition_SitesByServiceGroup_CreateOrUpdate"], "longRunning": {"finalStateVia": "azure-async-operation"}, "operationId": "SitesByServiceGroup_CreateOrUpdate", "http": {"path": "/providers/Microsoft.Management/serviceGroups/{servicegroupName}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "put", "path": {"params": [{"type": "string", "name": "servicegroupName", "arg": "$Path.servicegroupName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}, "body": {"json": {"schema": {"type": "object", "name": "resource", "required": true, "props": [{"type": "object", "name": "properties", "props": [{"type": "string", "name": "description", "arg": "$resource.properties.description"}, {"type": "string", "name": "displayName", "arg": "$resource.properties.displayName"}, {"type": "object", "name": "labels", "arg": "$resource.properties.labels", "additionalProps": {"item": {"type": "string"}}}, {"type": "object", "name": "siteAddress", "arg": "$resource.properties.siteAddress", "props": [{"type": "string", "name": "city", "arg": "$resource.properties.siteAddress.city"}, {"type": "string", "name": "country", "arg": "$resource.properties.siteAddress.country"}, {"type": "string", "name": "postalCode", "arg": "$resource.properties.siteAddress.postalCode"}, {"type": "string", "name": "stateOrProvince", "arg": "$resource.properties.siteAddress.stateOrProvince"}, {"type": "string", "name": "streetAddress1", "arg": "$resource.properties.siteAddress.streetAddress1"}, {"type": "string", "name": "streetAddress2", "arg": "$resource.properties.siteAddress.streetAddress2"}]}]}], "clientFlatten": true}}}}, "responses": [{"statusCode": [200, 201], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt"}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt"}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_SitesBySubscription_CreateOrUpdate"], "longRunning": {"finalStateVia": "azure-async-operation"}, "operationId": "SitesBySubscription_CreateOrUpdate", "http": {"path": "/subscriptions/{subscriptionId}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "put", "path": {"params": [{"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}, "body": {"json": {"schema": {"type": "object", "name": "resource", "required": true, "props": [{"type": "object", "name": "properties", "props": [{"type": "string", "name": "description", "arg": "$resource.properties.description"}, {"type": "string", "name": "displayName", "arg": "$resource.properties.displayName"}, {"type": "object", "name": "labels", "arg": "$resource.properties.labels", "additionalProps": {"item": {"type": "string"}}}, {"type": "object", "name": "siteAddress", "arg": "$resource.properties.siteAddress", "props": [{"type": "string", "name": "city", "arg": "$resource.properties.siteAddress.city"}, {"type": "string", "name": "country", "arg": "$resource.properties.siteAddress.country"}, {"type": "string", "name": "postalCode", "arg": "$resource.properties.siteAddress.postalCode"}, {"type": "string", "name": "stateOrProvince", "arg": "$resource.properties.siteAddress.stateOrProvince"}, {"type": "string", "name": "streetAddress1", "arg": "$resource.properties.siteAddress.streetAddress1"}, {"type": "string", "name": "streetAddress2", "arg": "$resource.properties.siteAddress.streetAddress2"}]}]}], "clientFlatten": true}}}}, "responses": [{"statusCode": [200, 201], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt"}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt"}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_Sites_CreateOrUpdate"], "longRunning": {"finalStateVia": "azure-async-operation"}, "operationId": "Sites_CreateOrUpdate", "http": {"path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "put", "path": {"params": [{"type": "string", "name": "resourceGroupName", "arg": "$Path.resourceGroupName", "required": true, "format": {"maxLength": 90, "minLength": 1}}, {"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}, "body": {"json": {"schema": {"type": "object", "name": "resource", "required": true, "props": [{"type": "object", "name": "properties", "props": [{"type": "string", "name": "description", "arg": "$resource.properties.description"}, {"type": "string", "name": "displayName", "arg": "$resource.properties.displayName"}, {"type": "object", "name": "labels", "arg": "$resource.properties.labels", "additionalProps": {"item": {"type": "string"}}}, {"type": "object", "name": "siteAddress", "arg": "$resource.properties.siteAddress", "props": [{"type": "string", "name": "city", "arg": "$resource.properties.siteAddress.city"}, {"type": "string", "name": "country", "arg": "$resource.properties.siteAddress.country"}, {"type": "string", "name": "postalCode", "arg": "$resource.properties.siteAddress.postalCode"}, {"type": "string", "name": "stateOrProvince", "arg": "$resource.properties.siteAddress.stateOrProvince"}, {"type": "string", "name": "streetAddress1", "arg": "$resource.properties.siteAddress.streetAddress1"}, {"type": "string", "name": "streetAddress2", "arg": "$resource.properties.siteAddress.streetAddress2"}]}]}], "clientFlatten": true}}}}, "responses": [{"statusCode": [200, 201], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt"}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt"}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}], "outputs": [{"type": "object", "ref": "$Instance", "clientFlatten": true}]}, {"name": "update", "version": "2025-06-01", "resources": [{"id": "/providers/microsoft.management/servicegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9zZXJ2aWNlR3JvdXBzL3tzZXJ2aWNlZ3JvdXBOYW1lfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/resourcegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9yZXNvdXJjZUdyb3Vwcy97cmVzb3VyY2VHcm91cE5hbWV9L3Byb3ZpZGVycy9NaWNyb3NvZnQuRWRnZS9zaXRlcy97c2l0ZU5hbWV9/V/MjAyNS0wNi0wMQ=="}], "argGroups": [{"name": "", "args": [{"type": "ResourceGroupName", "var": "$Path.resourceGroupName", "options": ["g", "resource-group"], "idPart": "resource_group"}, {"type": "string", "var": "$Path.servicegroupName", "options": ["servicegroup-name"], "help": {"short": "The name of the service group"}, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "string", "var": "$Path.siteName", "options": ["site-name"], "required": true, "help": {"short": "The name of the site"}, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "SubscriptionId", "var": "$Path.subscriptionId", "options": ["subscription"], "idPart": "subscription"}]}, {"name": "Properties", "args": [{"nullable": true, "type": "string", "var": "$resource.properties.description", "options": ["description"], "group": "Properties", "help": {"short": "Description of Site resource"}}, {"nullable": true, "type": "string", "var": "$resource.properties.displayName", "options": ["display-name"], "group": "Properties", "help": {"short": "displayName of Site resource"}}, {"nullable": true, "type": "object", "var": "$resource.properties.labels", "options": ["labels"], "group": "Properties", "help": {"short": "Key-value pairs for labeling the site resource."}, "additionalProps": {"item": {"nullable": true, "type": "string"}}}, {"nullable": true, "type": "object", "var": "$resource.properties.siteAddress", "options": ["site-address"], "group": "Properties", "help": {"short": "Physical address of the site"}, "args": [{"nullable": true, "type": "string", "var": "$resource.properties.siteAddress.city", "options": ["city"], "help": {"short": "City of the address"}}, {"nullable": true, "type": "string", "var": "$resource.properties.siteAddress.country", "options": ["country"], "help": {"short": "Country of the address"}}, {"nullable": true, "type": "string", "var": "$resource.properties.siteAddress.postalCode", "options": ["postal-code"], "help": {"short": "Postal or ZIP code of the address"}}, {"nullable": true, "type": "string", "var": "$resource.properties.siteAddress.stateOrProvince", "options": ["state-or-province"], "help": {"short": "State or province of the address"}}, {"nullable": true, "type": "string", "var": "$resource.properties.siteAddress.streetAddress1", "options": ["street-address1"], "help": {"short": "First line of the street address"}}, {"nullable": true, "type": "string", "var": "$resource.properties.siteAddress.streetAddress2", "options": ["street-address2"], "help": {"short": "Second line of the street address"}}]}]}], "conditions": [{"var": "$Condition_SitesByServiceGroup_Get", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.servicegroupName"}, {"type": "hasValue", "arg": "$Path.siteName"}]}}, {"var": "$Condition_SitesBySubscription_Get", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.siteName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}, {"type": "not", "operator": {"type": "hasValue", "arg": "$Path.resourceGroupName"}}]}}, {"var": "$Condition_Sites_Get", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.resourceGroupName"}, {"type": "hasValue", "arg": "$Path.siteName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}]}}, {"var": "$Condition_SitesByServiceGroup_CreateOrUpdate", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.servicegroupName"}, {"type": "hasValue", "arg": "$Path.siteName"}]}}, {"var": "$Condition_SitesBySubscription_CreateOrUpdate", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.siteName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}, {"type": "not", "operator": {"type": "hasValue", "arg": "$Path.resourceGroupName"}}]}}, {"var": "$Condition_Sites_CreateOrUpdate", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.resourceGroupName"}, {"type": "hasValue", "arg": "$Path.siteName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}]}}], "operations": [{"when": ["$Condition_SitesByServiceGroup_Get"], "operationId": "SitesByServiceGroup_Get", "http": {"path": "/providers/Microsoft.Management/serviceGroups/{servicegroupName}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "get", "path": {"params": [{"type": "string", "name": "servicegroupName", "arg": "$Path.servicegroupName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt"}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt"}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}], "cls": "Site_read"}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_SitesBySubscription_Get"], "operationId": "SitesBySubscription_Get", "http": {"path": "/subscriptions/{subscriptionId}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "get", "path": {"params": [{"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200], "body": {"json": {"var": "$Instance", "schema": {"type": "@Site_read"}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_Sites_Get"], "operationId": "Sites_Get", "http": {"path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "get", "path": {"params": [{"type": "string", "name": "resourceGroupName", "arg": "$Path.resourceGroupName", "required": true, "format": {"maxLength": 90, "minLength": 1}}, {"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200], "body": {"json": {"var": "$Instance", "schema": {"type": "@Site_read"}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"instanceUpdate": {"ref": "$Instance", "json": {"schema": {"type": "object", "name": "resource", "required": true, "props": [{"type": "object", "name": "properties", "props": [{"type": "string", "name": "description", "arg": "$resource.properties.description"}, {"type": "string", "name": "displayName", "arg": "$resource.properties.displayName"}, {"type": "object", "name": "labels", "arg": "$resource.properties.labels", "additionalProps": {"item": {"type": "string"}}}, {"type": "object", "name": "siteAddress", "arg": "$resource.properties.siteAddress", "props": [{"type": "string", "name": "city", "arg": "$resource.properties.siteAddress.city"}, {"type": "string", "name": "country", "arg": "$resource.properties.siteAddress.country"}, {"type": "string", "name": "postalCode", "arg": "$resource.properties.siteAddress.postalCode"}, {"type": "string", "name": "stateOrProvince", "arg": "$resource.properties.siteAddress.stateOrProvince"}, {"type": "string", "name": "streetAddress1", "arg": "$resource.properties.siteAddress.streetAddress1"}, {"type": "string", "name": "streetAddress2", "arg": "$resource.properties.siteAddress.streetAddress2"}]}]}], "clientFlatten": true}}}}, {"when": ["$Condition_SitesByServiceGroup_CreateOrUpdate"], "longRunning": {"finalStateVia": "azure-async-operation"}, "operationId": "SitesByServiceGroup_CreateOrUpdate", "http": {"path": "/providers/Microsoft.Management/serviceGroups/{servicegroupName}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "put", "path": {"params": [{"type": "string", "name": "servicegroupName", "arg": "$Path.servicegroupName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}, "body": {"json": {"ref": "$Instance"}}}, "responses": [{"statusCode": [200, 201], "body": {"json": {"var": "$Instance", "schema": {"type": "@Site_read"}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_SitesBySubscription_CreateOrUpdate"], "longRunning": {"finalStateVia": "azure-async-operation"}, "operationId": "SitesBySubscription_CreateOrUpdate", "http": {"path": "/subscriptions/{subscriptionId}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "put", "path": {"params": [{"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}, "body": {"json": {"ref": "$Instance"}}}, "responses": [{"statusCode": [200, 201], "body": {"json": {"var": "$Instance", "schema": {"type": "@Site_read"}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_Sites_CreateOrUpdate"], "longRunning": {"finalStateVia": "azure-async-operation"}, "operationId": "Sites_CreateOrUpdate", "http": {"path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "put", "path": {"params": [{"type": "string", "name": "resourceGroupName", "arg": "$Path.resourceGroupName", "required": true, "format": {"maxLength": 90, "minLength": 1}}, {"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}, "body": {"json": {"ref": "$Instance"}}}, "responses": [{"statusCode": [200, 201], "body": {"json": {"var": "$Instance", "schema": {"type": "@Site_read"}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}], "outputs": [{"type": "object", "ref": "$Instance", "clientFlatten": true}]}]}]} \ No newline at end of file +{"plane": "mgmt-plane", "resources": [{"id": "/providers/microsoft.management/servicegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9zZXJ2aWNlR3JvdXBzL3tzZXJ2aWNlZ3JvdXBOYW1lfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/resourcegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9yZXNvdXJjZUdyb3Vwcy97cmVzb3VyY2VHcm91cE5hbWV9L3Byb3ZpZGVycy9NaWNyb3NvZnQuRWRnZS9zaXRlcy97c2l0ZU5hbWV9/V/MjAyNS0wNi0wMQ=="}], "commandGroups": [{"name": "site", "commands": [{"name": "create", "version": "2025-06-01", "resources": [{"id": "/providers/microsoft.management/servicegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9zZXJ2aWNlR3JvdXBzL3tzZXJ2aWNlZ3JvdXBOYW1lfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/resourcegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9yZXNvdXJjZUdyb3Vwcy97cmVzb3VyY2VHcm91cE5hbWV9L3Byb3ZpZGVycy9NaWNyb3NvZnQuRWRnZS9zaXRlcy97c2l0ZU5hbWV9/V/MjAyNS0wNi0wMQ=="}], "argGroups": [{"name": "", "args": [{"type": "ResourceGroupName", "var": "$Path.resourceGroupName", "options": ["g", "resource-group"], "required": true, "group": "", "idPart": "resource_group", "help": {"short": "Name of the resource group"}}, {"type": "string", "var": "$Path.servicegroupName", "options": ["sg", "service-group"], "required": true, "group": "", "help": {"short": "Name of the service group"}, "format": {"pattern": "^[a-zA-Z0-9\\-_().]{1,90}$"}}, {"type": "string", "var": "$Path.siteName", "options": ["n", "name", "site-name"], "required": true, "group": "", "help": {"short": "Name of the site resource"}, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "SubscriptionId", "var": "$Path.subscriptionId", "options": ["subscription"], "required": true, "group": "", "idPart": "subscription", "help": {"short": "ID of subscription"}}]}, {"name": "Properties", "args": [{"type": "string", "var": "$resource.properties.description", "options": ["description"], "group": "Properties", "help": {"short": "Description of site resource"}}, {"type": "string", "var": "$resource.properties.displayName", "options": ["display-name"], "group": "Properties", "help": {"short": "Display name of site resource"}}, {"type": "object", "var": "$resource.properties.labels", "options": ["labels"], "group": "Properties", "help": {"short": "Key-value pairs for labeling the site resource."}, "additionalProps": {"item": {"type": "string"}}}]}, {"name": "SiteAddress", "args": [{"type": "string", "var": "$resource.properties.siteAddress.city", "options": ["city"], "group": "SiteAddress", "help": {"short": "City of the address"}}, {"type": "string", "var": "$resource.properties.siteAddress.country", "options": ["country"], "group": "SiteAddress", "help": {"short": "Country of the address"}}, {"type": "string", "var": "$resource.properties.siteAddress.postalCode", "options": ["postal-code"], "group": "SiteAddress", "help": {"short": "Postal or ZIP code of the address"}}, {"type": "string", "var": "$resource.properties.siteAddress.stateOrProvince", "options": ["state-or-province"], "group": "SiteAddress", "help": {"short": "State or province of the address"}}, {"type": "string", "var": "$resource.properties.siteAddress.streetAddress1", "options": ["street-address1"], "group": "SiteAddress", "help": {"short": "First line of the street address"}}, {"type": "string", "var": "$resource.properties.siteAddress.streetAddress2", "options": ["street-address2"], "group": "SiteAddress", "help": {"short": "Second line of the street address"}}]}], "conditions": [{"var": "$Condition_SitesByServiceGroup_CreateOrUpdate", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.servicegroupName"}, {"type": "hasValue", "arg": "$Path.siteName"}]}}, {"var": "$Condition_SitesBySubscription_CreateOrUpdate", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.siteName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}, {"type": "not", "operator": {"type": "hasValue", "arg": "$Path.resourceGroupName"}}]}}, {"var": "$Condition_Sites_CreateOrUpdate", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.resourceGroupName"}, {"type": "hasValue", "arg": "$Path.siteName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}]}}], "operations": [{"when": ["$Condition_SitesByServiceGroup_CreateOrUpdate"], "longRunning": {"finalStateVia": "azure-async-operation"}, "operationId": "SitesByServiceGroup_CreateOrUpdate", "http": {"path": "/providers/Microsoft.Management/serviceGroups/{servicegroupName}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "put", "path": {"params": [{"type": "string", "name": "servicegroupName", "arg": "$Path.servicegroupName", "required": true, "format": {"pattern": "^[a-zA-Z0-9\\-_().]{1,90}$"}}, {"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}, "body": {"json": {"schema": {"type": "object", "name": "resource", "required": true, "props": [{"type": "object", "name": "properties", "props": [{"type": "string", "name": "description", "arg": "$resource.properties.description"}, {"type": "string", "name": "displayName", "arg": "$resource.properties.displayName"}, {"type": "object", "name": "labels", "arg": "$resource.properties.labels", "additionalProps": {"item": {"type": "string"}}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city", "arg": "$resource.properties.siteAddress.city"}, {"type": "string", "name": "country", "arg": "$resource.properties.siteAddress.country"}, {"type": "string", "name": "postalCode", "arg": "$resource.properties.siteAddress.postalCode"}, {"type": "string", "name": "stateOrProvince", "arg": "$resource.properties.siteAddress.stateOrProvince"}, {"type": "string", "name": "streetAddress1", "arg": "$resource.properties.siteAddress.streetAddress1"}, {"type": "string", "name": "streetAddress2", "arg": "$resource.properties.siteAddress.streetAddress2"}]}]}], "clientFlatten": true}}}}, "responses": [{"statusCode": [200, 201], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_SitesBySubscription_CreateOrUpdate"], "longRunning": {"finalStateVia": "azure-async-operation"}, "operationId": "SitesBySubscription_CreateOrUpdate", "http": {"path": "/subscriptions/{subscriptionId}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "put", "path": {"params": [{"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}, "body": {"json": {"schema": {"type": "object", "name": "resource", "required": true, "props": [{"type": "object", "name": "properties", "props": [{"type": "string", "name": "description", "arg": "$resource.properties.description"}, {"type": "string", "name": "displayName", "arg": "$resource.properties.displayName"}, {"type": "object", "name": "labels", "arg": "$resource.properties.labels", "additionalProps": {"item": {"type": "string"}}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city", "arg": "$resource.properties.siteAddress.city"}, {"type": "string", "name": "country", "arg": "$resource.properties.siteAddress.country"}, {"type": "string", "name": "postalCode", "arg": "$resource.properties.siteAddress.postalCode"}, {"type": "string", "name": "stateOrProvince", "arg": "$resource.properties.siteAddress.stateOrProvince"}, {"type": "string", "name": "streetAddress1", "arg": "$resource.properties.siteAddress.streetAddress1"}, {"type": "string", "name": "streetAddress2", "arg": "$resource.properties.siteAddress.streetAddress2"}]}]}], "clientFlatten": true}}}}, "responses": [{"statusCode": [200, 201], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_Sites_CreateOrUpdate"], "longRunning": {"finalStateVia": "azure-async-operation"}, "operationId": "Sites_CreateOrUpdate", "http": {"path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "put", "path": {"params": [{"type": "string", "name": "resourceGroupName", "arg": "$Path.resourceGroupName", "required": true, "format": {"maxLength": 90, "minLength": 1}}, {"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}, "body": {"json": {"schema": {"type": "object", "name": "resource", "required": true, "props": [{"type": "object", "name": "properties", "props": [{"type": "string", "name": "description", "arg": "$resource.properties.description"}, {"type": "string", "name": "displayName", "arg": "$resource.properties.displayName"}, {"type": "object", "name": "labels", "arg": "$resource.properties.labels", "additionalProps": {"item": {"type": "string"}}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city", "arg": "$resource.properties.siteAddress.city"}, {"type": "string", "name": "country", "arg": "$resource.properties.siteAddress.country"}, {"type": "string", "name": "postalCode", "arg": "$resource.properties.siteAddress.postalCode"}, {"type": "string", "name": "stateOrProvince", "arg": "$resource.properties.siteAddress.stateOrProvince"}, {"type": "string", "name": "streetAddress1", "arg": "$resource.properties.siteAddress.streetAddress1"}, {"type": "string", "name": "streetAddress2", "arg": "$resource.properties.siteAddress.streetAddress2"}]}]}], "clientFlatten": true}}}}, "responses": [{"statusCode": [200, 201], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}], "outputs": [{"type": "object", "ref": "$Instance"}], "confirmation": ""}, {"name": "delete", "version": "2025-06-01", "resources": [{"id": "/providers/microsoft.management/servicegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9zZXJ2aWNlR3JvdXBzL3tzZXJ2aWNlZ3JvdXBOYW1lfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/resourcegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9yZXNvdXJjZUdyb3Vwcy97cmVzb3VyY2VHcm91cE5hbWV9L3Byb3ZpZGVycy9NaWNyb3NvZnQuRWRnZS9zaXRlcy97c2l0ZU5hbWV9/V/MjAyNS0wNi0wMQ=="}], "argGroups": [{"name": "", "args": [{"type": "ResourceGroupName", "var": "$Path.resourceGroupName", "options": ["g", "resource-group"], "group": "", "idPart": "resource_group", "help": {"short": "Name of the resource group"}}, {"type": "string", "var": "$Path.servicegroupName", "options": ["sg", "service-group"], "group": "", "help": {"short": "Name of the service group"}, "format": {"pattern": "^[a-zA-Z0-9\\-_().]{1,90}$"}}, {"type": "string", "var": "$Path.siteName", "options": ["n", "name", "site-name"], "required": true, "group": "", "help": {"short": "Name of the site resource"}, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "SubscriptionId", "var": "$Path.subscriptionId", "options": ["subscription"], "group": "", "idPart": "subscription", "help": {"short": "ID of subscription"}}]}], "conditions": [{"var": "$Condition_SitesByServiceGroup_Delete", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.servicegroupName"}, {"type": "hasValue", "arg": "$Path.siteName"}]}}, {"var": "$Condition_SitesBySubscription_Delete", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.siteName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}, {"type": "not", "operator": {"type": "hasValue", "arg": "$Path.resourceGroupName"}}]}}, {"var": "$Condition_Sites_Delete", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.resourceGroupName"}, {"type": "hasValue", "arg": "$Path.siteName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}]}}], "operations": [{"when": ["$Condition_SitesByServiceGroup_Delete"], "operationId": "SitesByServiceGroup_Delete", "http": {"path": "/providers/Microsoft.Management/serviceGroups/{servicegroupName}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "delete", "path": {"params": [{"type": "string", "name": "servicegroupName", "arg": "$Path.servicegroupName", "required": true, "format": {"pattern": "^[a-zA-Z0-9\\-_().]{1,90}$"}}, {"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200]}, {"statusCode": [204]}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_SitesBySubscription_Delete"], "operationId": "SitesBySubscription_Delete", "http": {"path": "/subscriptions/{subscriptionId}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "delete", "path": {"params": [{"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200]}, {"statusCode": [204]}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_Sites_Delete"], "operationId": "Sites_Delete", "http": {"path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "delete", "path": {"params": [{"type": "string", "name": "resourceGroupName", "arg": "$Path.resourceGroupName", "required": true, "format": {"maxLength": 90, "minLength": 1}}, {"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200]}, {"statusCode": [204]}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}], "confirmation": "Are you sure you want to perform this operation?"}, {"name": "show", "version": "2025-06-01", "resources": [{"id": "/providers/microsoft.management/servicegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9zZXJ2aWNlR3JvdXBzL3tzZXJ2aWNlZ3JvdXBOYW1lfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/resourcegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9yZXNvdXJjZUdyb3Vwcy97cmVzb3VyY2VHcm91cE5hbWV9L3Byb3ZpZGVycy9NaWNyb3NvZnQuRWRnZS9zaXRlcy97c2l0ZU5hbWV9/V/MjAyNS0wNi0wMQ=="}], "argGroups": [{"name": "", "args": [{"type": "ResourceGroupName", "var": "$Path.resourceGroupName", "options": ["g", "resource-group"], "group": "", "idPart": "resource_group", "help": {"short": "Name of the resource group"}}, {"type": "string", "var": "$Path.servicegroupName", "options": ["sg", "service-group"], "group": "", "help": {"short": "Name of the service group"}, "format": {"pattern": "^[a-zA-Z0-9\\-_().]{1,90}$"}}, {"type": "string", "var": "$Path.siteName", "options": ["n", "name", "site-name"], "required": true, "group": "", "help": {"short": "Name of the site resource"}, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "SubscriptionId", "var": "$Path.subscriptionId", "options": ["subscription"], "idPart": "subscription"}]}], "conditions": [{"var": "$Condition_SitesByServiceGroup_Get", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.servicegroupName"}, {"type": "hasValue", "arg": "$Path.siteName"}]}}, {"var": "$Condition_SitesBySubscription_Get", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.siteName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}, {"type": "not", "operator": {"type": "hasValue", "arg": "$Path.resourceGroupName"}}]}}, {"var": "$Condition_Sites_Get", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.resourceGroupName"}, {"type": "hasValue", "arg": "$Path.siteName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}]}}], "operations": [{"when": ["$Condition_SitesByServiceGroup_Get"], "operationId": "SitesByServiceGroup_Get", "http": {"path": "/providers/Microsoft.Management/serviceGroups/{servicegroupName}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "get", "path": {"params": [{"type": "string", "name": "servicegroupName", "arg": "$Path.servicegroupName", "required": true, "format": {"pattern": "^[a-zA-Z0-9\\-_().]{1,90}$"}}, {"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_SitesBySubscription_Get"], "operationId": "SitesBySubscription_Get", "http": {"path": "/subscriptions/{subscriptionId}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "get", "path": {"params": [{"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_Sites_Get"], "operationId": "Sites_Get", "http": {"path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "get", "path": {"params": [{"type": "string", "name": "resourceGroupName", "arg": "$Path.resourceGroupName", "required": true, "format": {"maxLength": 90, "minLength": 1}}, {"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}}, "responses": [{"statusCode": [200], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}], "outputs": [{"type": "object", "ref": "$Instance", "clientFlatten": true}], "confirmation": ""}, {"name": "update", "version": "2025-06-01", "resources": [{"id": "/providers/microsoft.management/servicegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFuYWdlbWVudC9zZXJ2aWNlR3JvdXBzL3tzZXJ2aWNlZ3JvdXBOYW1lfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9wcm92aWRlcnMvTWljcm9zb2Z0LkVkZ2Uvc2l0ZXMve3NpdGVOYW1lfQ==/V/MjAyNS0wNi0wMQ=="}, {"id": "/subscriptions/{}/resourcegroups/{}/providers/microsoft.edge/sites/{}", "version": "2025-06-01", "swagger": "mgmt-plane/edge/ResourceProviders/Microsoft.Edge/Paths/L3N1YnNjcmlwdGlvbnMve3N1YnNjcmlwdGlvbklkfS9yZXNvdXJjZUdyb3Vwcy97cmVzb3VyY2VHcm91cE5hbWV9L3Byb3ZpZGVycy9NaWNyb3NvZnQuRWRnZS9zaXRlcy97c2l0ZU5hbWV9/V/MjAyNS0wNi0wMQ=="}], "argGroups": [{"name": "", "args": [{"type": "ResourceGroupName", "var": "$Path.resourceGroupName", "options": ["g", "resource-group"], "required": true, "group": "", "idPart": "resource_group", "help": {"short": "Name of the resource group"}}, {"type": "string", "var": "$Path.servicegroupName", "options": ["sg", "service-group"], "required": true, "group": "", "help": {"short": "Name of the service group"}, "format": {"pattern": "^[a-zA-Z0-9\\-_().]{1,90}$"}}, {"type": "string", "var": "$Path.siteName", "options": ["n", "name", "site-name"], "required": true, "group": "", "help": {"short": "Name of the site resource"}, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "SubscriptionId", "var": "$Path.subscriptionId", "options": ["subscription"], "required": true, "group": "", "idPart": "subscription", "help": {"short": "ID of subscription"}}]}, {"name": "Properties", "args": [{"type": "string", "var": "$properties.properties.description", "options": ["description"], "group": "Properties", "help": {"short": "Description of Site resource"}}, {"type": "string", "var": "$properties.properties.displayName", "options": ["display-name"], "group": "Properties", "help": {"short": "displayName of Site resource"}}, {"type": "object", "var": "$properties.properties.labels", "options": ["labels"], "group": "Properties", "help": {"short": "Key-value pairs for labeling the site resource."}, "additionalProps": {"item": {"type": "string"}}}]}, {"name": "SiteAddress", "args": [{"type": "string", "var": "$properties.properties.siteAddress.city", "options": ["city"], "group": "SiteAddress", "help": {"short": "City of the address"}}, {"type": "string", "var": "$properties.properties.siteAddress.country", "options": ["country"], "group": "SiteAddress", "help": {"short": "Country of the address"}}, {"type": "string", "var": "$properties.properties.siteAddress.postalCode", "options": ["postal-code"], "group": "SiteAddress", "help": {"short": "Postal or ZIP code of the address"}}, {"type": "string", "var": "$properties.properties.siteAddress.stateOrProvince", "options": ["state-or-province"], "group": "SiteAddress", "help": {"short": "State or province of the address"}}, {"type": "string", "var": "$properties.properties.siteAddress.streetAddress1", "options": ["street-address1"], "group": "SiteAddress", "help": {"short": "First line of the street address"}}, {"type": "string", "var": "$properties.properties.siteAddress.streetAddress2", "options": ["street-address2"], "group": "SiteAddress", "help": {"short": "Second line of the street address"}}]}], "conditions": [{"var": "$Condition_SitesByServiceGroup_Update", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.servicegroupName"}, {"type": "hasValue", "arg": "$Path.siteName"}]}}, {"var": "$Condition_SitesBySubscription_Update", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.siteName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}, {"type": "not", "operator": {"type": "hasValue", "arg": "$Path.resourceGroupName"}}]}}, {"var": "$Condition_Sites_Update", "operator": {"type": "and", "operators": [{"type": "hasValue", "arg": "$Path.resourceGroupName"}, {"type": "hasValue", "arg": "$Path.siteName"}, {"type": "hasValue", "arg": "$Path.subscriptionId"}]}}], "operations": [{"when": ["$Condition_SitesByServiceGroup_Update"], "operationId": "SitesByServiceGroup_Update", "http": {"path": "/providers/Microsoft.Management/serviceGroups/{servicegroupName}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "patch", "path": {"params": [{"type": "string", "name": "servicegroupName", "arg": "$Path.servicegroupName", "required": true, "format": {"pattern": "^[a-zA-Z0-9\\-_().]{1,90}$"}}, {"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}, "body": {"json": {"schema": {"type": "object", "name": "properties", "required": true, "props": [{"type": "object", "name": "properties", "props": [{"type": "string", "name": "description", "arg": "$properties.properties.description"}, {"type": "string", "name": "displayName", "arg": "$properties.properties.displayName"}, {"type": "object", "name": "labels", "arg": "$properties.properties.labels", "additionalProps": {"item": {"type": "string"}}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city", "arg": "$properties.properties.siteAddress.city"}, {"type": "string", "name": "country", "arg": "$properties.properties.siteAddress.country"}, {"type": "string", "name": "postalCode", "arg": "$properties.properties.siteAddress.postalCode"}, {"type": "string", "name": "stateOrProvince", "arg": "$properties.properties.siteAddress.stateOrProvince"}, {"type": "string", "name": "streetAddress1", "arg": "$properties.properties.siteAddress.streetAddress1"}, {"type": "string", "name": "streetAddress2", "arg": "$properties.properties.siteAddress.streetAddress2"}]}]}], "clientFlatten": true}}}}, "responses": [{"statusCode": [200], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_SitesBySubscription_Update"], "operationId": "SitesBySubscription_Update", "http": {"path": "/subscriptions/{subscriptionId}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "patch", "path": {"params": [{"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}, "body": {"json": {"schema": {"type": "object", "name": "properties", "required": true, "props": [{"type": "object", "name": "properties", "props": [{"type": "string", "name": "description", "arg": "$properties.properties.description"}, {"type": "string", "name": "displayName", "arg": "$properties.properties.displayName"}, {"type": "object", "name": "labels", "arg": "$properties.properties.labels", "additionalProps": {"item": {"type": "string"}}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city", "arg": "$properties.properties.siteAddress.city"}, {"type": "string", "name": "country", "arg": "$properties.properties.siteAddress.country"}, {"type": "string", "name": "postalCode", "arg": "$properties.properties.siteAddress.postalCode"}, {"type": "string", "name": "stateOrProvince", "arg": "$properties.properties.siteAddress.stateOrProvince"}, {"type": "string", "name": "streetAddress1", "arg": "$properties.properties.siteAddress.streetAddress1"}, {"type": "string", "name": "streetAddress2", "arg": "$properties.properties.siteAddress.streetAddress2"}]}]}], "clientFlatten": true}}}}, "responses": [{"statusCode": [200], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}, {"when": ["$Condition_Sites_Update"], "operationId": "Sites_Update", "http": {"path": "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Edge/sites/{siteName}", "request": {"method": "patch", "path": {"params": [{"type": "string", "name": "resourceGroupName", "arg": "$Path.resourceGroupName", "required": true, "format": {"maxLength": 90, "minLength": 1}}, {"type": "string", "name": "siteName", "arg": "$Path.siteName", "required": true, "format": {"pattern": "^[a-zA-Z0-9][a-zA-Z0-9-_]{2,22}[a-zA-Z0-9]$"}}, {"type": "uuid", "name": "subscriptionId", "arg": "$Path.subscriptionId", "required": true}]}, "query": {"consts": [{"readOnly": true, "const": true, "default": {"value": "2025-06-01"}, "type": "string", "name": "api-version", "required": true, "format": {"minLength": 1}}]}, "body": {"json": {"schema": {"type": "object", "name": "properties", "required": true, "props": [{"type": "object", "name": "properties", "props": [{"type": "string", "name": "description", "arg": "$properties.properties.description"}, {"type": "string", "name": "displayName", "arg": "$properties.properties.displayName"}, {"type": "object", "name": "labels", "arg": "$properties.properties.labels", "additionalProps": {"item": {"type": "string"}}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city", "arg": "$properties.properties.siteAddress.city"}, {"type": "string", "name": "country", "arg": "$properties.properties.siteAddress.country"}, {"type": "string", "name": "postalCode", "arg": "$properties.properties.siteAddress.postalCode"}, {"type": "string", "name": "stateOrProvince", "arg": "$properties.properties.siteAddress.stateOrProvince"}, {"type": "string", "name": "streetAddress1", "arg": "$properties.properties.siteAddress.streetAddress1"}, {"type": "string", "name": "streetAddress2", "arg": "$properties.properties.siteAddress.streetAddress2"}]}]}], "clientFlatten": true}}}}, "responses": [{"statusCode": [200], "body": {"json": {"var": "$Instance", "schema": {"type": "object", "props": [{"readOnly": true, "type": "ResourceId", "name": "id"}, {"readOnly": true, "type": "string", "name": "name"}, {"type": "object", "name": "properties", "props": [{"type": "string", "name": "description"}, {"type": "string", "name": "displayName"}, {"type": "object", "name": "labels", "additionalProps": {"item": {"type": "string"}}}, {"readOnly": true, "type": "string", "name": "provisioningState", "enum": {"items": [{"value": "Canceled"}, {"value": "Failed"}, {"value": "Succeeded"}]}}, {"type": "object", "name": "siteAddress", "props": [{"type": "string", "name": "city"}, {"type": "string", "name": "country"}, {"type": "string", "name": "postalCode"}, {"type": "string", "name": "stateOrProvince"}, {"type": "string", "name": "streetAddress1"}, {"type": "string", "name": "streetAddress2"}]}]}, {"readOnly": true, "type": "object", "name": "systemData", "props": [{"type": "dateTime", "name": "createdAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "createdBy"}, {"type": "string", "name": "createdByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}, {"type": "dateTime", "name": "lastModifiedAt", "format": {"protocol": "iso"}}, {"type": "string", "name": "lastModifiedBy"}, {"type": "string", "name": "lastModifiedByType", "enum": {"items": [{"value": "Application"}, {"value": "Key"}, {"value": "ManagedIdentity"}, {"value": "User"}]}}]}, {"readOnly": true, "type": "string", "name": "type"}]}}}}, {"isError": true, "body": {"json": {"schema": {"type": "@MgmtErrorFormat"}}}}]}}], "outputs": [{"type": "object", "ref": "$Instance", "clientFlatten": true}], "confirmation": ""}]}]} \ No newline at end of file diff --git a/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcy97fQ==/2025-06-01.xml b/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcy97fQ==/2025-06-01.xml index 64cb93c77..fdcb71677 100644 --- a/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcy97fQ==/2025-06-01.xml +++ b/Resources/mgmt-plane/L3Byb3ZpZGVycy9taWNyb3NvZnQubWFuYWdlbWVudC9zZXJ2aWNlZ3JvdXBzL3t9L3Byb3ZpZGVycy9taWNyb3NvZnQuZWRnZS9zaXRlcy97fQ==/2025-06-01.xml @@ -3,30 +3,68 @@ - - + + - - - - + + + + + + - - + + - + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + @@ -35,19 +73,20 @@ - + - + + - + - + @@ -59,8 +98,31 @@ + + + + + + + + + + + + + + + + + + + + + + + - + @@ -91,7 +153,9 @@ - + + + @@ -101,7 +165,9 @@ - + + + @@ -126,9 +192,10 @@ - + + - + @@ -141,8 +208,31 @@ + + + + + + + + + + + + + + + + + + + + + + + - + @@ -173,7 +263,9 @@ - + + + @@ -183,7 +275,9 @@ - + + + @@ -208,9 +302,10 @@ - + + - + @@ -226,8 +321,31 @@ + + + + + + + + + + + + + + + + + + + + + + + - + @@ -258,7 +376,9 @@ - + + + @@ -268,7 +388,9 @@ - + + + @@ -293,23 +415,27 @@ - + - - - - + + - - + + + + + + - + + + @@ -338,7 +464,7 @@ - + @@ -420,64 +546,31 @@ - + - - - - + + + + + + - - + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + - + @@ -486,20 +579,19 @@ - + - - + - + - + @@ -511,31 +603,8 @@ - - - - - - - - - - - - - - - - - - - - - - - - + @@ -566,7 +635,9 @@ - + + + @@ -576,7 +647,9 @@ - + + + @@ -601,10 +674,9 @@ - - + - + @@ -617,31 +689,8 @@ - - - - - - - - - - - - - - - - - - - - - - - - + @@ -672,7 +721,9 @@ - + + + @@ -682,7 +733,9 @@ - + + + @@ -707,10 +760,9 @@ - - + - + @@ -726,31 +778,8 @@ - - - - - - - - - - - - - - - - - - - - - - - - + @@ -781,7 +810,9 @@ - + + + @@ -791,7 +822,9 @@ - + + + @@ -818,86 +851,67 @@ - + - - - - + + - - + + + + + + - + + + - + - + - + - + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + - + @@ -906,19 +920,19 @@ - + - + - + - + @@ -930,11 +944,34 @@ + + + + + + + + + + + + + + + + + + + + + + + - + @@ -962,7 +999,9 @@ - + + + @@ -972,7 +1011,9 @@ - + + + @@ -997,9 +1038,9 @@ - + - + @@ -1012,145 +1053,88 @@ - - - - - - - - - - + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -1163,10 +1147,9 @@ - - + - + @@ -1183,13 +1166,87 @@ - + + + + + + + + + + + + + + + + + + + + + - + - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +