forked from Azure/azure-rest-api-specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introducing service group for orbital (aogs and aodg) (Azure#27582)
* Introducing service group for orbital (aogs and aodg) * Updated path to common-types * Updated tag * changing folder structure * Moved from Id to a ResourceReference object * Updated descriptions * Updated id to resourceId * Updated examples * Revert "Updated examples" This reverts commit 0f5604a. * Revert "Updated id to resourceId" This reverts commit 8d31746.
- Loading branch information
1 parent
66be833
commit cec34cc
Showing
25 changed files
with
2,545 additions
and
0 deletions.
There are no files selected for viewing
1,672 changes: 1,672 additions & 0 deletions
1,672
...tion/orbital/resource-manager/Microsoft.Orbital/aodg/preview/2024-03-01-preview/aodg.json
Large diffs are not rendered by default.
Oops, something went wrong.
56 changes: 56 additions & 0 deletions
56
...ce-manager/Microsoft.Orbital/aodg/preview/2024-03-01-preview/examples/EdgeSiteCreate.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2024-03-01-preview", | ||
"subscriptionId": "c1be1141-a7c9-4aac-9608-3c2e2f1152c3", | ||
"resourceGroupName": "rg1", | ||
"edgeSiteName": "es1", | ||
"parameters": { | ||
"location": "westus", | ||
"tags": { | ||
"tag1": "value1", | ||
"tag2": "value2" | ||
}, | ||
"properties": { | ||
"globalCommunicationsSite": { | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/providers/Microsoft.Orbital/globalCommunicationsSites/contoso-Vernon" | ||
} | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "es1", | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/edgeSites/es1", | ||
"type": "Microsoft.Orbital/edgeSites", | ||
"location": "westus", | ||
"tags": { | ||
"tag1": "value1", | ||
"tag2": "value2" | ||
}, | ||
"properties": { | ||
"globalCommunicationsSite": { | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/providers/Microsoft.Orbital/globalCommunicationsSites/contoso-Vernon" | ||
} | ||
} | ||
} | ||
}, | ||
"201": { | ||
"body": { | ||
"name": "es1", | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/edgeSites/es1", | ||
"type": "Microsoft.Orbital/edgeSites", | ||
"location": "westus", | ||
"tags": { | ||
"tag1": "value1", | ||
"tag2": "value2" | ||
}, | ||
"properties": { | ||
"globalCommunicationsSite": { | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/providers/Microsoft.Orbital/globalCommunicationsSites/contoso-Vernon" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
...ce-manager/Microsoft.Orbital/aodg/preview/2024-03-01-preview/examples/EdgeSiteDelete.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2024-03-01-preview", | ||
"subscriptionId": "c1be1141-a7c9-4aac-9608-3c2e2f1152c3", | ||
"resourceGroupName": "rg1", | ||
"edgeSiteName": "oep1" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"204": {} | ||
} | ||
} |
27 changes: 27 additions & 0 deletions
27
...ource-manager/Microsoft.Orbital/aodg/preview/2024-03-01-preview/examples/EdgeSiteGet.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2024-03-01-preview", | ||
"subscriptionId": "c1be1141-a7c9-4aac-9608-3c2e2f1152c3", | ||
"resourceGroupName": "rg1", | ||
"edgeSiteName": "es1" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "es1", | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/edgeSites/es1", | ||
"type": "Microsoft.Orbital/edgeSites", | ||
"location": "westus", | ||
"tags": { | ||
"tag1": "value1", | ||
"tag2": "value2" | ||
}, | ||
"properties": { | ||
"globalCommunicationsSite": { | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/providers/Microsoft.Orbital/globalCommunicationsSites/contoso-Vernon" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
33 changes: 33 additions & 0 deletions
33
...manager/Microsoft.Orbital/aodg/preview/2024-03-01-preview/examples/EdgeSiteUpdateTag.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2024-03-01-preview", | ||
"subscriptionId": "c1be1141-a7c9-4aac-9608-3c2e2f1152c3", | ||
"resourceGroupName": "rg1", | ||
"edgeSiteName": "oep1", | ||
"parameters": { | ||
"tags": { | ||
"tag1": "value1", | ||
"tag2": "value2" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "oep1", | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/edgeSites/oep1", | ||
"type": "Microsoft.Orbital/edgeSites", | ||
"location": "westus", | ||
"tags": { | ||
"tag1": "value1", | ||
"tag2": "value2" | ||
}, | ||
"properties": { | ||
"globalCommunicationsSite": { | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/providers/Microsoft.Orbital/globalCommunicationsSites/contoso-Vernon" | ||
} | ||
} | ||
} | ||
} | ||
} | ||
} |
32 changes: 32 additions & 0 deletions
32
...rosoft.Orbital/aodg/preview/2024-03-01-preview/examples/EdgeSitesByResourceGroupList.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2024-03-01-preview", | ||
"subscriptionId": "c1be1141-a7c9-4aac-9608-3c2e2f1152c3", | ||
"resourceGroupName": "rg1", | ||
"$skipToken": "opaqueString" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": "oep1", | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/edgeSites/oep1", | ||
"type": "Microsoft.Orbital/edgeSites", | ||
"location": "westus", | ||
"tags": { | ||
"tag1": "value1", | ||
"tag2": "value2" | ||
}, | ||
"properties": { | ||
"globalCommunicationsSite": { | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/providers/Microsoft.Orbital/globalCommunicationsSites/contoso-Vernon" | ||
} | ||
} | ||
} | ||
], | ||
"nextLink": "https://example.com" | ||
} | ||
} | ||
} | ||
} |
31 changes: 31 additions & 0 deletions
31
...crosoft.Orbital/aodg/preview/2024-03-01-preview/examples/EdgeSitesBySubscriptionList.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2024-03-01-preview", | ||
"subscriptionId": "c1be1141-a7c9-4aac-9608-3c2e2f1152c3", | ||
"$skipToken": "opaqueString" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": "oep1", | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/edgeSites/oep1", | ||
"type": "Microsoft.Orbital/edgeSites", | ||
"location": "westus", | ||
"tags": { | ||
"tag1": "value1", | ||
"tag2": "value2" | ||
}, | ||
"properties": { | ||
"globalCommunicationsSite": { | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/providers/Microsoft.Orbital/globalCommunicationsSites/contoso-Vernon" | ||
} | ||
} | ||
} | ||
], | ||
"nextLink": "https://example.com" | ||
} | ||
} | ||
} | ||
} |
36 changes: 36 additions & 0 deletions
36
...crosoft.Orbital/aodg/preview/2024-03-01-preview/examples/GlobalCommunicationsSiteGet.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2024-03-01-preview", | ||
"subscriptionId": "c1be1141-a7c9-4aac-9608-3c2e2f1152c3", | ||
"resourceGroupName": "rg1", | ||
"globalCommunicationsSiteName": "contoso-Vernon" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "contoso-Vernon", | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/providers/Microsoft.Orbital/globalCommunicationsSites/contoso-Vernon", | ||
"type": "Microsoft.Orbital/globalCommunicationsSites", | ||
"properties": { | ||
"locationData": { | ||
"city": "Vernon", | ||
"district": "Texas", | ||
"country": "United States of America", | ||
"extra": "Zip code: 76384", | ||
"closestAzureRegion": "southcentralus" | ||
}, | ||
"globalCommunicationsSiteType": "GroundStation", | ||
"partnerRouters": [ | ||
{ | ||
"name": "contoso-pr1" | ||
}, | ||
{ | ||
"name": "contoso-pr2" | ||
} | ||
], | ||
"partnerSiteBandwidth": 100000000 | ||
} | ||
} | ||
} | ||
} | ||
} |
39 changes: 39 additions & 0 deletions
39
...aodg/preview/2024-03-01-preview/examples/GlobalCommunicationsSitesBySubscriptionList.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2024-03-01-preview", | ||
"subscriptionId": "c1be1141-a7c9-4aac-9608-3c2e2f1152c3" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"name": "contoso-Vernon", | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/providers/Microsoft.Orbital/globalCommunicationsSites/contoso-Vernon", | ||
"type": "Microsoft.Orbital/globalCommunicationsSites", | ||
"properties": { | ||
"locationData": { | ||
"city": "Vernon", | ||
"district": "Texas", | ||
"country": "United States of America", | ||
"extra": "Zip code: 76384", | ||
"closestAzureRegion": "southcentralus" | ||
}, | ||
"globalCommunicationsSiteType": "GroundStation", | ||
"partnerRouters": [ | ||
{ | ||
"name": "contoso-pr1" | ||
}, | ||
{ | ||
"name": "contoso-pr2" | ||
} | ||
], | ||
"partnerSiteBandwidth": 100000000 | ||
} | ||
} | ||
], | ||
"nextLink": "https://example.com" | ||
} | ||
} | ||
} | ||
} |
80 changes: 80 additions & 0 deletions
80
...nager/Microsoft.Orbital/aodg/preview/2024-03-01-preview/examples/GroundStationCreate.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2024-03-01-preview", | ||
"subscriptionId": "c1be1141-a7c9-4aac-9608-3c2e2f1152c3", | ||
"resourceGroupName": "rg1", | ||
"groundStationName": "westus_gs1", | ||
"parameters": { | ||
"location": "westus", | ||
"properties": { | ||
"city": "redmond", | ||
"providerName": "Microsoft", | ||
"capabilities": [ | ||
"Communication" | ||
], | ||
"longitudeDegrees": 47.674, | ||
"latitudeDegrees": -122.122, | ||
"altitudeMeters": 1500.83, | ||
"globalCommunicationsSite": { | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/providers/Microsoft.Orbital/globalCommunicationsSites/contoso-Vernon" | ||
} | ||
}, | ||
"tags": { | ||
"key1": "value1", | ||
"key2": "value2" | ||
} | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"name": "westus_gs1", | ||
"location": "westus", | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/groundStations/westus_gs1", | ||
"properties": { | ||
"city": "redmond", | ||
"providerName": "Microsoft", | ||
"capabilities": [ | ||
"Communication" | ||
], | ||
"longitudeDegrees": 47.674, | ||
"latitudeDegrees": -122.122, | ||
"altitudeMeters": 1500.83, | ||
"globalCommunicationsSite": { | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/providers/Microsoft.Orbital/globalCommunicationsSites/contoso-Vernon" | ||
} | ||
}, | ||
"type": "Microsoft.Orbital/groundStations", | ||
"tags": { | ||
"key1": "value1", | ||
"key2": "value2" | ||
} | ||
} | ||
}, | ||
"201": { | ||
"body": { | ||
"name": "westus_gs1", | ||
"location": "westus", | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/resourceGroups/rg1/providers/Microsoft.Orbital/groundStations/westus_gs1", | ||
"properties": { | ||
"city": "redmond", | ||
"providerName": "Microsoft", | ||
"capabilities": [ | ||
"Communication" | ||
], | ||
"longitudeDegrees": 47.674, | ||
"latitudeDegrees": -122.122, | ||
"altitudeMeters": 1500.83, | ||
"globalCommunicationsSite": { | ||
"id": "/subscriptions/c1be1141-a7c9-4aac-9608-3c2e2f1152c3/providers/Microsoft.Orbital/globalCommunicationsSites/contoso-Vernon" | ||
} | ||
}, | ||
"type": "Microsoft.Orbital/groundStations", | ||
"tags": { | ||
"key1": "value1", | ||
"key2": "value2" | ||
} | ||
} | ||
} | ||
} | ||
} |
12 changes: 12 additions & 0 deletions
12
...nager/Microsoft.Orbital/aodg/preview/2024-03-01-preview/examples/GroundStationDelete.json
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2024-03-01-preview", | ||
"subscriptionId": "c1be1141-a7c9-4aac-9608-3c2e2f1152c3", | ||
"resourceGroupName": "rg1", | ||
"groundStationName": "westus_gs1" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"204": {} | ||
} | ||
} |
Oops, something went wrong.