Skip to content

Commit c8c0ed7

Browse files
author
SDKAuto
committed
CodeGen from PR 18590 in Azure/azure-rest-api-specs
Merge e53d10b9818ab7afe6d196eabf447d1bfa5003f2 into c2b4d895f3a1edc7dd1d9ff88c48f9992faf8a6b
1 parent 452047d commit c8c0ed7

21 files changed

+1715
-148
lines changed

common/config/rush/pnpm-lock.yaml

Lines changed: 7 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/containerservice/arm-containerservice/CHANGELOG.md

Lines changed: 56 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,61 @@
11
# Release History
2+
3+
## 15.3.0-beta.1 (2022-04-07)
4+
5+
**Features**
26

3-
## 15.2.1 (Unreleased)
4-
5-
### Features Added
6-
7-
### Breaking Changes
8-
9-
### Bugs Fixed
10-
11-
### Other Changes
12-
7+
- Added operation group ManagedClusterSnapshots
8+
- Added operation ManagedClusters.beginRotateServiceAccountSigningKeys
9+
- Added operation ManagedClusters.beginRotateServiceAccountSigningKeysAndWait
10+
- Added Interface AzureKeyVaultKms
11+
- Added Interface ManagedClusterIngressProfile
12+
- Added Interface ManagedClusterIngressProfileWebAppRouting
13+
- Added Interface ManagedClusterOidcIssuerProfile
14+
- Added Interface ManagedClusterPropertiesForSnapshot
15+
- Added Interface ManagedClusterSecurityProfileWorkloadIdentity
16+
- Added Interface ManagedClusterSnapshotListResult
17+
- Added Interface ManagedClusterSnapshotsCreateOrUpdateOptionalParams
18+
- Added Interface ManagedClusterSnapshotsDeleteOptionalParams
19+
- Added Interface ManagedClusterSnapshotsGetOptionalParams
20+
- Added Interface ManagedClusterSnapshotsListByResourceGroupNextOptionalParams
21+
- Added Interface ManagedClusterSnapshotsListByResourceGroupOptionalParams
22+
- Added Interface ManagedClusterSnapshotsListNextOptionalParams
23+
- Added Interface ManagedClusterSnapshotsListOptionalParams
24+
- Added Interface ManagedClusterSnapshotsUpdateTagsOptionalParams
25+
- Added Interface ManagedClustersRotateServiceAccountSigningKeysOptionalParams
26+
- Added Interface ManagedClusterStorageProfile
27+
- Added Interface ManagedClusterStorageProfileDiskCSIDriver
28+
- Added Interface ManagedClusterStorageProfileFileCSIDriver
29+
- Added Interface ManagedClusterStorageProfileSnapshotController
30+
- Added Interface NetworkProfileForSnapshot
31+
- Added Type Alias ManagedClusterSnapshot
32+
- Added Type Alias ManagedClusterSnapshotsCreateOrUpdateResponse
33+
- Added Type Alias ManagedClusterSnapshotsGetResponse
34+
- Added Type Alias ManagedClusterSnapshotsListByResourceGroupNextResponse
35+
- Added Type Alias ManagedClusterSnapshotsListByResourceGroupResponse
36+
- Added Type Alias ManagedClusterSnapshotsListNextResponse
37+
- Added Type Alias ManagedClusterSnapshotsListResponse
38+
- Added Type Alias ManagedClusterSnapshotsUpdateTagsResponse
39+
- Interface ManagedClusterAgentPoolProfileProperties has a new optional parameter capacityReservationGroupID
40+
- Interface ManagedClusterAgentPoolProfileProperties has a new optional parameter currentOrchestratorVersion
41+
- Interface ManagedClusterAgentPoolProfileProperties has a new optional parameter hostGroupID
42+
- Interface ManagedClusterAgentPoolProfileProperties has a new optional parameter messageOfTheDay
43+
- Interface ManagedClusterSecurityProfile has a new optional parameter azureKeyVaultKms
44+
- Interface ManagedClusterSecurityProfile has a new optional parameter workloadIdentity
45+
- Class ContainerServiceClient has a new parameter managedClusterSnapshots
46+
- Type Alias AgentPool has a new parameter messageOfTheDay
47+
- Type Alias AgentPool has a new parameter currentOrchestratorVersion
48+
- Type Alias AgentPool has a new parameter capacityReservationGroupID
49+
- Type Alias AgentPool has a new parameter hostGroupID
50+
- Type Alias ManagedCluster has a new parameter creationData
51+
- Type Alias ManagedCluster has a new parameter currentKubernetesVersion
52+
- Type Alias ManagedCluster has a new parameter oidcIssuerProfile
53+
- Type Alias ManagedCluster has a new parameter enableNamespaceResources
54+
- Type Alias ManagedCluster has a new parameter ingressProfile
55+
- Enum KnownNetworkPlugin has a new value None
56+
- Enum KnownSnapshotType has a new value ManagedCluster
57+
58+
1359
## 15.2.0 (2022-03-23)
1460

1561
**Features**

sdk/containerservice/arm-containerservice/README.md

Lines changed: 1 addition & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The Container Service Client.
66

77
[Source code](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/containerservice/arm-containerservice) |
88
[Package (NPM)](https://www.npmjs.com/package/@azure/arm-containerservice) |
9-
[API reference documentation](https://docs.microsoft.com/javascript/api/@azure/arm-containerservice) |
9+
[API reference documentation](https://docs.microsoft.com/javascript/api/@azure/arm-containerservice?view=azure-node-preview) |
1010
[Samples](https://github.com/Azure-Samples/azure-samples-js-management)
1111

1212
## Getting started
@@ -16,8 +16,6 @@ The Container Service Client.
1616
- [LTS versions of Node.js](https://nodejs.org/about/releases/)
1717
- Latest versions of Safari, Chrome, Edge and Firefox.
1818

19-
See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details.
20-
2119
### Prerequisites
2220

2321
- An [Azure subscription][azure_sub].
@@ -51,17 +49,8 @@ For more information about how to create an Azure AD Application check out [this
5149
```javascript
5250
const { ContainerServiceClient } = require("@azure/arm-containerservice");
5351
const { DefaultAzureCredential } = require("@azure/identity");
54-
// For client-side applications running in the browser, use InteractiveBrowserCredential instead of DefaultAzureCredential. See https://aka.ms/azsdk/js/identity/examples for more details.
55-
5652
const subscriptionId = "00000000-0000-0000-0000-000000000000";
5753
const client = new ContainerServiceClient(new DefaultAzureCredential(), subscriptionId);
58-
59-
// For client-side applications running in the browser, use this code instead:
60-
// const credential = new InteractiveBrowserCredential({
61-
// tenantId: "<YOUR_TENANT_ID>",
62-
// clientId: "<YOUR_CLIENT_ID>"
63-
// });
64-
// const client = new ContainerServiceClient(credential, subscriptionId);
6554
```
6655

6756

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
{
2-
"commit": "82fdf284eea880a8e027c354911a814999a77178",
2+
"commit": "e2a14e16bd4c9f88c3f7b6fef3e5b0b864825b7e",
33
"readme": "specification/containerservice/resource-manager/readme.md",
4-
"autorest_command": "autorest --version=3.7.3 --typescript --modelerfour.lenient-model-deduplication --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=D:\\work\\azure-sdk-for-js ..\\azure-rest-api-specs\\specification\\containerservice\\resource-manager\\readme.md --use=@autorest/[email protected]beta.17 --generate-sample=true",
4+
"autorest_command": "autorest --version=3.7.3 --typescript --modelerfour.lenient-model-deduplication --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=/mnt/vss/_work/1/s/azure-sdk-for-js ../azure-rest-api-specs/specification/containerservice/resource-manager/readme.md --use=@autorest/[email protected]alpha.16.20220105.1",
55
"repository_url": "https://github.com/Azure/azure-rest-api-specs.git",
6-
"release_tool": "@azure-tools/[email protected].0",
7-
"use": "@autorest/[email protected]beta.17"
6+
"release_tool": "@azure-tools/[email protected].6",
7+
"use": "@autorest/[email protected]alpha.16.20220105.1"
88
}

sdk/containerservice/arm-containerservice/package.json

Lines changed: 9 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"sdk-type": "mgmt",
44
"author": "Microsoft Corporation",
55
"description": "A generated SDK for ContainerServiceClient.",
6-
"version": "15.2.1",
6+
"version": "15.3.0-beta.1",
77
"engines": {
88
"node": ">=12.0.0"
99
},
@@ -29,13 +29,13 @@
2929
"types": "./types/arm-containerservice.d.ts",
3030
"devDependencies": {
3131
"@microsoft/api-extractor": "^7.18.11",
32-
"@rollup/plugin-commonjs": "^21.0.1",
33-
"@rollup/plugin-json": "^4.1.0",
34-
"@rollup/plugin-multi-entry": "^4.1.0",
35-
"@rollup/plugin-node-resolve": "^13.1.3",
32+
"@rollup/plugin-commonjs": "11.0.2",
33+
"@rollup/plugin-json": "^4.0.0",
34+
"@rollup/plugin-multi-entry": "^3.0.0",
35+
"@rollup/plugin-node-resolve": "^8.0.0",
3636
"mkdirp": "^1.0.4",
37-
"rollup": "^2.66.1",
38-
"rollup-plugin-sourcemaps": "^0.6.3",
37+
"rollup": "^1.16.3",
38+
"rollup-plugin-sourcemaps": "^0.4.2",
3939
"typescript": "~4.2.0",
4040
"uglify-js": "^3.4.9",
4141
"rimraf": "^3.0.0",
@@ -98,21 +98,5 @@
9898
"docs": "echo skipped"
9999
},
100100
"sideEffects": false,
101-
"//metadata": {
102-
"constantPaths": [
103-
{
104-
"path": "src/containerServiceClient.ts",
105-
"prefix": "packageDetails"
106-
}
107-
]
108-
},
109-
"autoPublish": true,
110-
"//sampleConfiguration": {
111-
"productName": "",
112-
"productSlugs": [
113-
"azure"
114-
],
115-
"disableDocsMs": true,
116-
"apiRefLink": "https://docs.microsoft.com/javascript/api/@azure/arm-containerservice?view=azure-node-preview"
117-
}
118-
}
101+
"autoPublish": true
102+
}

0 commit comments

Comments
 (0)