Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all 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
Expand Up @@ -10,8 +10,6 @@

'use strict';

const models = require('./index');

/**
* Profile for diagnostics on the container service cluster.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

'use strict';

const models = require('./index');

/**
* Profile for Linux VMs in the container service cluster.
*
Expand Down Expand Up @@ -47,7 +45,7 @@ class ContainerServiceLinuxProfile {
required: true,
serializedName: 'adminUsername',
constraints: {
Pattern: '^[a-z][a-z0-9_-]*$'
Pattern: '^[A-Za-z][-A-Za-z0-9_]*$'
},
type: {
name: 'String'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

'use strict';

const models = require('./index');

/**
* Information about a service principal identity for the cluster to use for
* manipulating Azure APIs. Either secret or keyVaultSecretRef must be
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

'use strict';

const models = require('./index');

/**
* SSH configuration for Linux-based VMs running on Azure.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class CredentialResult {
/**
* Create a CredentialResult.
* @member {string} [name] The name of the credential.
* @member {string} [value] The value of the credential.
* @member {buffer} [value] Base64-encoded Kubernetes configuration file.
*/
constructor() {
}
Expand Down Expand Up @@ -50,7 +50,7 @@ class CredentialResult {
readOnly: true,
serializedName: 'value',
type: {
name: 'String'
name: 'ByteArray'
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,14 @@

'use strict';

const models = require('./index');

/**
* The list of credential result response.
*
*/
class CredentialResults {
/**
* Create a CredentialResults.
* @member {array} [values]
* @member {array} [kubeconfigs]
*/
constructor() {
}
Expand All @@ -38,10 +36,10 @@ class CredentialResults {
name: 'Composite',
className: 'CredentialResults',
modelProperties: {
values: {
kubeconfigs: {
required: false,
readOnly: true,
serializedName: 'values',
serializedName: 'kubeconfigs',
type: {
name: 'Sequence',
element: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -878,11 +878,11 @@ export interface ManagedClusterUpgradeProfile {
* The credential result response.
*
* @member {string} [name] The name of the credential.
* @member {string} [value] The value of the credential.
* @member {buffer} [value] Base64-encoded Kubernetes configuration file.
*/
export interface CredentialResult {
readonly name?: string;
readonly value?: string;
readonly value?: Buffer;
}

/**
Expand All @@ -891,10 +891,10 @@ export interface CredentialResult {
* @constructor
* The list of credential result response.
*
* @member {array} [values]
* @member {array} [kubeconfigs]
*/
export interface CredentialResults {
readonly values?: CredentialResult[];
readonly kubeconfigs?: CredentialResult[];
}

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

'use strict';

const models = require('./index');

/**
* The list of available upgrades for compute pools.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

'use strict';

const models = require('./index');

/**
* The profile of an orchestrator and its available versions.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@

'use strict';

const models = require('./index');

/**
* The list of versions for supported orchestrators.
*
Expand Down
2 changes: 1 addition & 1 deletion lib/services/containerservicesManagement/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions lib/services/containerservicesManagement/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "azure-arm-containerservice",
"author": "Microsoft Corporation",
"description": "ContainerServiceClient Library with typescript type definitions for node",
"version": "4.0.0",
"version": "5.0.0",
"dependencies": {
"ms-rest": "^2.3.3",
"ms-rest-azure": "^2.5.5"
Expand All @@ -14,7 +14,7 @@
"license": "MIT",
"main": "./lib/containerServiceClient.js",
"types": "./lib/containerServiceClient.d.ts",
"homepage": "https://github.com/azure/azure-sdk-for-node/lib/services/containerservicesManagement",
"homepage": "https://github.com/azure/azure-sdk-for-node/tree/master/lib/services/containerservicesManagement",
"repository": {
"type": "git",
"url": "https://github.com/azure/azure-sdk-for-node.git"
Expand Down