-
Notifications
You must be signed in to change notification settings - Fork 5.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Utkarshjain/2021 09 01 preview (#5150)
* Adding base api as per guidelines * Adding api changes for version 2021-09-01-preview * Adding readme changes * Adding fix for model validation * Adding fix for model validation 2 * Fixing prettier check * Fixing breaking changes * Annotating password with x-ms-secret Co-authored-by: Utkarsh Jain <utkarshjain@microsoft.com>
- Loading branch information
1 parent
ccf8e49
commit 555bb9b
Showing
20 changed files
with
2,316 additions
and
0 deletions.
There are no files selected for viewing
1,665 changes: 1,665 additions & 0 deletions
1,665
...cation/elastic/resource-manager/Microsoft.Elastic/preview/2021-09-01-preview/elastic.json
Large diffs are not rendered by default.
Oops, something went wrong.
18 changes: 18 additions & 0 deletions
18
...ce-manager/Microsoft.Elastic/preview/2021-09-01-preview/examples/DeploymentInfo_List.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,18 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2021-09-01-preview", | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"resourceGroupName": "myResourceGroup", | ||
"monitorName": "myMonitor" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"status": "Healthy", | ||
"version": "7.9.3", | ||
"memoryCapacity": "1024", | ||
"diskCapacity": "245760" | ||
} | ||
} | ||
} | ||
} |
25 changes: 25 additions & 0 deletions
25
...ource-manager/Microsoft.Elastic/preview/2021-09-01-preview/examples/ExternalUserInfo.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,25 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2021-09-01-preview", | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"resourceGroupName": "myResourceGroup", | ||
"monitorName": "myMonitor", | ||
"requestBody": { | ||
"UserName": "newuser", | ||
"FullName": "fullname", | ||
"Password": "Password", | ||
"EmailId": "myemail@outlook.com", | ||
"Roles": [ | ||
"admin", | ||
"other_role1" | ||
] | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"created": true | ||
} | ||
} | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
...anager/Microsoft.Elastic/preview/2021-09-01-preview/examples/MonitoredResources_List.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,21 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2021-09-01-preview", | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"resourceGroupName": "myResourceGroup", | ||
"monitorName": "myMonitor" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/providers/Microsoft.KeyVault/vaults/myVault", | ||
"sendingLogs": "True", | ||
"reasonForLogsStatus": "CapturedByRules" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
104 changes: 104 additions & 0 deletions
104
...source-manager/Microsoft.Elastic/preview/2021-09-01-preview/examples/Monitors_Create.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,104 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2021-09-01-preview", | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"resourceGroupName": "myResourceGroup", | ||
"monitorName": "myMonitor", | ||
"requestBody": { | ||
"name": "myMonitor", | ||
"sku": { | ||
"name": "free_Monthly" | ||
}, | ||
"properties": { | ||
"userInfo": { | ||
"firstName": "Alice", | ||
"lastName": "Bob", | ||
"companyName": "Microsoft", | ||
"emailAddress": "alice@microsoft.com", | ||
"companyInfo": { | ||
"domain": "microsoft.com", | ||
"business": "Technology", | ||
"employeeNumber": "10000", | ||
"state": "WA", | ||
"country": "US" | ||
} | ||
} | ||
}, | ||
"tags": { | ||
"Environment": "Dev" | ||
}, | ||
"location": "West US 2" | ||
} | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/monitors/myMonitor", | ||
"name": "myMonitor", | ||
"type": "Microsoft.Elastic/monitors", | ||
"sku": { | ||
"name": "free_Monthly" | ||
}, | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"elasticProperties": { | ||
"elasticCloudUser": { | ||
"emailAddress": "alice@microsoft.com", | ||
"id": "myid123", | ||
"elasticCloudSsoDefaultUrl": "https://examplessourl.com" | ||
}, | ||
"elasticCloudDeployment": { | ||
"name": "deploymentname", | ||
"deploymentId": "deployment_id", | ||
"azureSubscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"elasticsearchRegion": "azure-westus2", | ||
"elasticsearchServiceUrl": "https://elasticsearchendpoint.com", | ||
"kibanaServiceUrl": "https://kibanaserviceurl.com", | ||
"kibanaSsoUrl": "https://kibanssourl.com" | ||
} | ||
} | ||
}, | ||
"tags": { | ||
"Environment": "Dev" | ||
}, | ||
"location": "West US 2" | ||
} | ||
}, | ||
"201": { | ||
"body": { | ||
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/monitors/myMonitor", | ||
"name": "myMonitor", | ||
"type": "Microsoft.Elastic/monitors", | ||
"sku": { | ||
"name": "free_Monthly" | ||
}, | ||
"properties": { | ||
"provisioningState": "Accepted", | ||
"monitoringStatus": "Enabled", | ||
"elasticProperties": { | ||
"elasticCloudUser": { | ||
"emailAddress": "alice@microsoft.com", | ||
"id": "myid123", | ||
"elasticCloudSsoDefaultUrl": "https://examplessourl.com" | ||
}, | ||
"elasticCloudDeployment": { | ||
"name": "deploymentname", | ||
"deploymentId": "deployment_id", | ||
"azureSubscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"elasticsearchRegion": "azure-westus2", | ||
"elasticsearchServiceUrl": "https://elasticsearchendpoint.com", | ||
"kibanaServiceUrl": "https://kibanaserviceurl.com", | ||
"kibanaSsoUrl": "https://kibanssourl.com" | ||
} | ||
}, | ||
"liftrResourceCategory": "MonitorLogs", | ||
"liftrResourcePreference": 0 | ||
}, | ||
"tags": { | ||
"Environment": "Dev" | ||
}, | ||
"location": "West US 2" | ||
} | ||
} | ||
} | ||
} |
13 changes: 13 additions & 0 deletions
13
...source-manager/Microsoft.Elastic/preview/2021-09-01-preview/examples/Monitors_Delete.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,13 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2021-09-01-preview", | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"resourceGroupName": "myResourceGroup", | ||
"monitorName": "myMonitor" | ||
}, | ||
"responses": { | ||
"200": {}, | ||
"202": {}, | ||
"204": {} | ||
} | ||
} |
43 changes: 43 additions & 0 deletions
43
.../resource-manager/Microsoft.Elastic/preview/2021-09-01-preview/examples/Monitors_Get.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,43 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2021-09-01-preview", | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"resourceGroupName": "myResourceGroup", | ||
"monitorName": "myMonitor" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/monitors/myMonitor", | ||
"name": "myMonitor", | ||
"type": "Microsoft.Elastic/monitors", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"monitoringStatus": "Enabled", | ||
"elasticProperties": { | ||
"elasticCloudUser": { | ||
"emailAddress": "alice@microsoft.com", | ||
"id": "myid123", | ||
"elasticCloudSsoDefaultUrl": "https://examplessourl.com" | ||
}, | ||
"elasticCloudDeployment": { | ||
"name": "deploymentname", | ||
"deploymentId": "deployment_id", | ||
"azureSubscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"elasticsearchRegion": "azure-westus2", | ||
"elasticsearchServiceUrl": "https://elasticsearchendpoint.com", | ||
"kibanaServiceUrl": "https://kibanaserviceurl.com", | ||
"kibanaSsoUrl": "https://kibanssourl.com" | ||
} | ||
}, | ||
"liftrResourceCategory": "MonitorLogs", | ||
"liftrResourcePreference": 0 | ||
}, | ||
"tags": { | ||
"Environment": "Dev" | ||
}, | ||
"location": "West US 2" | ||
} | ||
} | ||
} | ||
} |
45 changes: 45 additions & 0 deletions
45
...resource-manager/Microsoft.Elastic/preview/2021-09-01-preview/examples/Monitors_List.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,45 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2021-09-01-preview", | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/monitors/myMonitor", | ||
"name": "myMonitor", | ||
"type": "Microsoft.Elastic/monitors", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"monitoringStatus": "Enabled", | ||
"elasticProperties": { | ||
"elasticCloudUser": { | ||
"emailAddress": "alice@microsoft.com", | ||
"id": "myid123", | ||
"elasticCloudSsoDefaultUrl": "https://examplessourl.com" | ||
}, | ||
"elasticCloudDeployment": { | ||
"name": "deploymentname", | ||
"deploymentId": "deployment_id", | ||
"azureSubscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"elasticsearchRegion": "azure-westus2", | ||
"elasticsearchServiceUrl": "https://elasticsearchendpoint.com", | ||
"kibanaServiceUrl": "https://kibanaserviceurl.com", | ||
"kibanaSsoUrl": "https://kibanssourl.com" | ||
} | ||
}, | ||
"liftrResourceCategory": "MonitorLogs", | ||
"liftrResourcePreference": 0 | ||
}, | ||
"tags": { | ||
"Environment": "Dev" | ||
}, | ||
"location": "West US 2" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
46 changes: 46 additions & 0 deletions
46
...r/Microsoft.Elastic/preview/2021-09-01-preview/examples/Monitors_ListByResourceGroup.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,46 @@ | ||
{ | ||
"parameters": { | ||
"api-version": "2021-09-01-preview", | ||
"subscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"resourceGroupName": "myResourceGroup" | ||
}, | ||
"responses": { | ||
"200": { | ||
"body": { | ||
"value": [ | ||
{ | ||
"id": "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/myResourceGroup/monitors/myMonitor", | ||
"name": "myMonitor", | ||
"type": "Microsoft.Elastic/monitors", | ||
"properties": { | ||
"provisioningState": "Succeeded", | ||
"monitoringStatus": "Enabled", | ||
"elasticProperties": { | ||
"elasticCloudUser": { | ||
"emailAddress": "alice@microsoft.com", | ||
"id": "myid123", | ||
"elasticCloudSsoDefaultUrl": "https://examplessourl.com" | ||
}, | ||
"elasticCloudDeployment": { | ||
"name": "deploymentname", | ||
"deploymentId": "deployment_id", | ||
"azureSubscriptionId": "00000000-0000-0000-0000-000000000000", | ||
"elasticsearchRegion": "azure-westus2", | ||
"elasticsearchServiceUrl": "https://elasticsearchendpoint.com", | ||
"kibanaServiceUrl": "https://kibanaserviceurl.com", | ||
"kibanaSsoUrl": "https://kibanssourl.com" | ||
} | ||
}, | ||
"liftrResourceCategory": "MonitorLogs", | ||
"liftrResourcePreference": 0 | ||
}, | ||
"tags": { | ||
"Environment": "Dev" | ||
}, | ||
"location": "West US 2" | ||
} | ||
] | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.