Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding 2021-11-01 version for Microsoft.AzureArcData #16275

Merged
merged 4 commits into from
Oct 7, 2021
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"swagger": "2.0",
"info": {
"version": "2021-08-01",
"version": "2021-11-01",
"title": "AzureArcDataManagementClient",
"description": "The AzureArcData management API provides a RESTful set of web APIs to manage Azure Data Services on Azure Arc Resources."
},
Expand Down Expand Up @@ -1387,13 +1387,23 @@
"description": "Last uploaded date from Kubernetes cluster. Defaults to current date time"
},
"basicLoginInformation": {
"$ref": "#/definitions/BasicLoginInformation"
"$ref": "#/definitions/BasicLoginInformation",
"description": "Deprecated. Azure Arc Data Services data controller no longer expose any endpoint. All traffic are exposed through Kubernetes native API."
},
"metricsDashboardCredential": {
"$ref": "#/definitions/BasicLoginInformation",
"description": "Login credential for metrics dashboard on the Kubernetes cluster."
},
"logsDashboardCredential": {
"$ref": "#/definitions/BasicLoginInformation",
"description": "Login credential for logs dashboard on the Kubernetes cluster."
},
"logAnalyticsWorkspaceConfig": {
"$ref": "#/definitions/LogAnalyticsWorkspaceConfig"
},
"uploadServicePrincipal": {
"$ref": "#/definitions/UploadServicePrincipal"
"$ref": "#/definitions/UploadServicePrincipal",
"description": "Deprecated. Service principal is deprecated in favor of Arc Kubernetes service extension managed identity."
},
"provisioningState": {
"type": "string",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"resourceGroupName": "testrg",
"dataControllerName": "testdataController",
"api-version": "2021-08-01",
"api-version": "2021-11-01",
"dataControllerResource": {
"location": "northeurope",
"tags": {
Expand All @@ -22,6 +22,14 @@
"username": "username",
"password": "********"
},
"metricsDashboardCredential": {
"username": "username",
"password": "********"
},
"logsDashboardCredential": {
"username": "username",
"password": "********"
},
"logAnalyticsWorkspaceConfig": {
"workspaceId": "00000000-1111-2222-3333-444444444444",
"primaryKey": "********"
Expand Down Expand Up @@ -55,6 +63,12 @@
"basicLoginInformation": {
"username": "username"
},
"metricsDashboardCredential": {
"username": "username"
},
"logsDashboardCredential": {
"username": "username"
},
"logAnalyticsWorkspaceConfig": {
"workspaceId": "00000000-1111-2222-3333-444444444444"
},
Expand Down Expand Up @@ -104,6 +118,12 @@
"basicLoginInformation": {
"username": "username"
},
"metricsDashboardCredential": {
"username": "username"
},
"logsDashboardCredential": {
"username": "username"
},
"logAnalyticsWorkspaceConfig": {
"workspaceId": "00000000-1111-2222-3333-444444444444"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"resourceGroupName": "testrg",
"sqlManagedInstanceName": "testsqlManagedInstance",
"api-version": "2021-08-01",
"api-version": "2021-11-01",
"sqlManagedInstance": {
"location": "northeurope",
"tags": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"resourceGroupName": "testrg",
"sqlServerInstanceName": "testsqlServerInstance",
"api-version": "2021-08-01",
"api-version": "2021-11-01",
"sqlServerInstance": {
"location": "northeurope",
"tags": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"resourceGroupName": "testrg",
"dataControllerName": "testdataController",
"api-version": "2021-08-01"
"api-version": "2021-11-01"
},
"responses": {
"200": {},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"resourceGroupName": "testrg",
"sqlManagedInstanceName": "testsqlManagedInstance",
"api-version": "2021-08-01"
"api-version": "2021-11-01"
},
"responses": {
"200": {},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"resourceGroupName": "testrg",
"sqlServerInstanceName": "testsqlServerInstance",
"api-version": "2021-08-01"
"api-version": "2021-11-01"
},
"responses": {
"200": {},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"resourceGroupName": "testrg",
"dataControllerName": "testdataController",
"api-version": "2021-08-01"
"api-version": "2021-11-01"
},
"responses": {
"200": {
Expand All @@ -17,6 +17,12 @@
"basicLoginInformation": {
"username": "username"
},
"metricsDashboardCredential": {
"username": "username"
},
"logsDashboardCredential": {
"username": "username"
},
"logAnalyticsWorkspaceConfig": {
"workspaceId": "00000000-1111-2222-3333-444444444444"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"resourceGroupName": "testrg",
"sqlManagedInstanceName": "testsqlManagedInstance",
"api-version": "2021-08-01"
"api-version": "2021-11-01"
},
"responses": {
"200": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"resourceGroupName": "testrg",
"sqlServerInstanceName": "testsqlServerInstance",
"api-version": "2021-08-01"
"api-version": "2021-11-01"
},
"responses": {
"200": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"parameters": {
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"resourceGroupName": "testrg",
"api-version": "2021-08-01"
"api-version": "2021-11-01"
},
"responses": {
"200": {
Expand All @@ -18,6 +18,12 @@
"basicLoginInformation": {
"username": "username"
},
"metricsDashboardCredential": {
"username": "username"
},
"logsDashboardCredential": {
"username": "username"
},
"logAnalyticsWorkspaceConfig": {
"workspaceId": "00000000-1111-2222-3333-444444444444"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"parameters": {
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"resourceGroupName": "testrg",
"api-version": "2021-08-01"
"api-version": "2021-11-01"
},
"responses": {
"200": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"parameters": {
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"resourceGroupName": "testrg",
"api-version": "2021-08-01"
"api-version": "2021-11-01"
},
"responses": {
"200": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"parameters": {
"api-version": "2021-08-01"
"api-version": "2021-11-01"
},
"responses": {
"200": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"parameters": {
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"api-version": "2021-08-01"
"api-version": "2021-11-01"
},
"responses": {
"200": {
Expand All @@ -17,6 +17,12 @@
"basicLoginInformation": {
"username": "username"
},
"metricsDashboardCredential": {
"username": "username"
},
"logsDashboardCredential": {
"username": "username"
},
"logAnalyticsWorkspaceConfig": {
"workspaceId": "00000000-1111-2222-3333-444444444444"
},
Expand Down Expand Up @@ -64,6 +70,12 @@
"basicLoginInformation": {
"username": "username"
},
"metricsDashboardCredential": {
"username": "username"
},
"logsDashboardCredential": {
"username": "username"
},
"logAnalyticsWorkspaceConfig": {
"workspaceId": "00000000-1111-2222-3333-444444444444"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"parameters": {
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"api-version": "2021-08-01"
"api-version": "2021-11-01"
},
"responses": {
"200": {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"parameters": {
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"api-version": "2021-08-01"
"api-version": "2021-11-01"
},
"responses": {
"200": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"resourceGroupName": "testrg",
"dataControllerName": "testdataController1",
"api-version": "2021-08-01",
"api-version": "2021-11-01",
"dataControllerResource": {
"tags": {
"mytag": "myval"
Expand All @@ -22,6 +22,12 @@
"basicLoginInformation": {
"username": "username"
},
"metricsDashboardCredential": {
"username": "username"
},
"logsDashboardCredential": {
"username": "username"
},
"logAnalyticsWorkspaceConfig": {
"workspaceId": "00000000-1111-2222-3333-444444444444"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"resourceGroupName": "testrg",
"sqlManagedInstanceName": "testsqlManagedInstance",
"api-version": "2021-08-01",
"api-version": "2021-11-01",
"parameters": {
"tags": {
"mytag": "myval"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"subscriptionId": "00000000-1111-2222-3333-444444444444",
"resourceGroupName": "testrg",
"sqlServerInstanceName": "testsqlServerInstance",
"api-version": "2021-08-01",
"api-version": "2021-11-01",
"parameters": {
"tags": {
"mytag": "myval"
Expand Down
10 changes: 5 additions & 5 deletions specification/azurearcdata/resource-manager/readme.go.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ go:

``` yaml $(go) && $(multiapi)
batch:
- tag: package-2021-08-01
- tag: package-2021-11-01
```

### Tag: package-2021-08-01 and go
### Tag: package-2021-11-01 and go

These settings apply only when `--tag=package-2021-08-01 --go` is specified on the command line.
These settings apply only when `--tag=package-2021-11-01 --go` is specified on the command line.
Please also specify `--go-sdk-folder=<path to the root directory of your azure-sdk-for-go clone>`.

```yaml $(tag) == 'package-2021-08-01' && $(go)
output-folder: $(go-sdk-folder)/services/$(namespace)/mgmt/2021-08-01/$(namespace)
```yaml $(tag) == 'package-2021-11-01' && $(go)
output-folder: $(go-sdk-folder)/services/$(namespace)/mgmt/2021-11-01/$(namespace)
```
11 changes: 10 additions & 1 deletion specification/azurearcdata/resource-manager/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,16 @@ These are the global settings for the azurearcdata.
``` yaml
openapi-type: arm
openapi-subtype: rpaas
tag: package-2021-08-01
tag: package-2021-11-01
```

### Tag: package-2021-11-01

These settings apply only when `--tag=package-2021-11-01` is specified on the command line.

```yaml $(tag) == 'package-2021-11-01'
input-file:
- Microsoft.AzureArcData/stable/2021-11-01/azurearcdata.json
```

### Tag: package-2021-08-01
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ azure-arm: true
license-header: MICROSOFT_MIT_NO_VERSION
package-name: azure-mgmt-azurearcdata
no-namespace-folders: true
package-version: 1.0.0b1
package-version: 1.1.0b1
clear-output-folder: true
```

Expand Down
8 changes: 4 additions & 4 deletions specification/azurearcdata/resource-manager/readme.ruby.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ These settings apply only when `--ruby` is specified on the command line.

```yaml
package-name: azure_mgmt_azurearcdata
package-version: 2021-08-01
package-version: 2021-11-01
azure-arm: true
```

### Tag: package-2021-08-01 and ruby
### Tag: package-2021-11-01 and ruby

These settings apply only when `--tag=package-2021-08-01 --ruby` is specified on the command line.
These settings apply only when `--tag=package-2021-11-01 --ruby` is specified on the command line.
Please also specify `--ruby-sdks-folder=<path to the root directory of your azure-sdk-for-ruby clone>`.

```yaml $(tag) == 'package-2021-08-01' && $(ruby)
```yaml $(tag) == 'package-2021-11-01' && $(ruby)
namespace: Microsoft.AzureArcData
output-folder: $(ruby-sdks-folder)/azurearcdata
```