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

[AutoPR @azure/arm-containerinstance] [Hub Generated] Review request for Microsoft.ContainerInstance to add version stable/2021-10-01 #6775

Draft
wants to merge 1 commit into
base: feature/v4
Choose a base branch
from
Draft
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
2 changes: 1 addition & 1 deletion sdk/containerinstance/arm-containerinstance/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"rollup-plugin-sourcemaps": "^0.4.2",
"uglify-js": "^3.6.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/feature/v4/sdk/containerinstance/arm-containerinstance",
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/containerinstance/arm-containerinstance",
"repository": {
"type": "git",
"url": "https://github.com/Azure/azure-sdk-for-js.git"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ export class ContainerInstanceManagementClientContext extends msRestAzure.AzureS

super(credentials, options);

this.apiVersion = '2021-09-01';
this.apiVersion = '2021-10-01';
this.acceptLanguage = 'en-US';
this.longRunningOperationRetryTimeout = 30;
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";
Expand Down
14 changes: 14 additions & 0 deletions sdk/containerinstance/arm-containerinstance/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -521,6 +521,11 @@ export interface IpAddress {
* The Dns name label for the IP.
*/
dnsNameLabel?: string;
/**
* The value representing the security enum. Possible values include: 'Unsecure', 'TenantReuse',
* 'SubscriptionReuse', 'ResourceGroupReuse', 'Noreuse'
*/
dnsNameLabelReusePolicy?: DnsNameLabelReusePolicy;
/**
* The FQDN for the IP.
* **NOTE: This property will not be serialized. It can only be populated by the server.**
Expand Down Expand Up @@ -1153,6 +1158,15 @@ export type ContainerGroupNetworkProtocol = 'TCP' | 'UDP';
*/
export type ContainerGroupIpAddressType = 'Public' | 'Private';

/**
* Defines values for DnsNameLabelReusePolicy.
* Possible values include: 'Unsecure', 'TenantReuse', 'SubscriptionReuse', 'ResourceGroupReuse',
* 'Noreuse'
* @readonly
* @enum {string}
*/
export type DnsNameLabelReusePolicy = 'Unsecure' | 'TenantReuse' | 'SubscriptionReuse' | 'ResourceGroupReuse' | 'Noreuse';

/**
* Defines values for OperatingSystemTypes.
* Possible values include: 'Windows', 'Linux'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -873,6 +873,19 @@ export const IpAddress: msRest.CompositeMapper = {
name: "String"
}
},
dnsNameLabelReusePolicy: {
serializedName: "dnsNameLabelReusePolicy",
type: {
name: "Enum",
allowedValues: [
"Unsecure",
"TenantReuse",
"SubscriptionReuse",
"ResourceGroupReuse",
"Noreuse"
]
}
},
fqdn: {
readOnly: true,
serializedName: "fqdn",
Expand Down