@azure/arm-containerinstance 8.2.1-alpha.20220712.2 → 9.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +35 -10
- package/dist/index.js +363 -215
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/samples-dev/containerGroupsCreateOrUpdateSample.js +1 -1
- package/dist-esm/samples-dev/containerGroupsCreateOrUpdateSample.js.map +1 -1
- package/dist-esm/samples-dev/subnetServiceAssociationLinkDeleteSample.d.ts +2 -0
- package/dist-esm/samples-dev/subnetServiceAssociationLinkDeleteSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/subnetServiceAssociationLinkDeleteSample.js +32 -0
- package/dist-esm/samples-dev/subnetServiceAssociationLinkDeleteSample.js.map +1 -0
- package/dist-esm/src/containerInstanceManagementClient.d.ts +2 -1
- package/dist-esm/src/containerInstanceManagementClient.d.ts.map +1 -1
- package/dist-esm/src/containerInstanceManagementClient.js +3 -2
- package/dist-esm/src/containerInstanceManagementClient.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +95 -79
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/index.js +9 -9
- package/dist-esm/src/models/index.js.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +3 -2
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +204 -176
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/models/parameters.d.ts +2 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -1
- package/dist-esm/src/models/parameters.js +20 -0
- package/dist-esm/src/models/parameters.js.map +1 -1
- package/dist-esm/src/operations/index.d.ts +1 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -1
- package/dist-esm/src/operations/index.js +1 -0
- package/dist-esm/src/operations/index.js.map +1 -1
- package/dist-esm/src/operations/subnetServiceAssociationLink.d.ts +32 -0
- package/dist-esm/src/operations/subnetServiceAssociationLink.d.ts.map +1 -0
- package/dist-esm/src/operations/subnetServiceAssociationLink.js +104 -0
- package/dist-esm/src/operations/subnetServiceAssociationLink.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -1
- package/dist-esm/src/operationsInterfaces/index.js +1 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -1
- package/dist-esm/src/operationsInterfaces/subnetServiceAssociationLink.d.ts +24 -0
- package/dist-esm/src/operationsInterfaces/subnetServiceAssociationLink.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/subnetServiceAssociationLink.js +9 -0
- package/dist-esm/src/operationsInterfaces/subnetServiceAssociationLink.js.map +1 -0
- package/package.json +5 -5
- package/review/arm-containerinstance.api.md +55 -36
- package/src/containerInstanceManagementClient.ts +9 -3
- package/src/models/index.ts +97 -81
- package/src/models/mappers.ts +206 -193
- package/src/models/parameters.ts +22 -0
- package/src/operations/index.ts +1 -0
- package/src/operations/subnetServiceAssociationLink.ts +146 -0
- package/src/operationsInterfaces/index.ts +1 -0
- package/src/operationsInterfaces/subnetServiceAssociationLink.ts +42 -0
- package/types/arm-containerinstance.d.ts +128 -87
package/CHANGELOG.md
CHANGED
|
@@ -1,15 +1,40 @@
|
|
|
1
1
|
# Release History
|
|
2
|
+
|
|
3
|
+
## 9.0.0 (2022-08-30)
|
|
4
|
+
|
|
5
|
+
**Features**
|
|
2
6
|
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
7
|
+
- Added operation group SubnetServiceAssociationLink
|
|
8
|
+
- Added Interface ContainerGroupProperties
|
|
9
|
+
- Added Interface SubnetServiceAssociationLinkDeleteOptionalParams
|
|
10
|
+
- Added Interface UserAssignedIdentities
|
|
11
|
+
- Added Type Alias DnsNameLabelReusePolicy
|
|
12
|
+
- Interface IpAddress has a new optional parameter autoGeneratedDomainNameLabelScope
|
|
13
|
+
- Interface Usage has a new optional parameter id
|
|
14
|
+
- Class ContainerInstanceManagementClient has a new parameter subnetServiceAssociationLink
|
|
15
|
+
- Added Enum KnownDnsNameLabelReusePolicy
|
|
16
|
+
|
|
17
|
+
**Breaking Changes**
|
|
18
|
+
|
|
19
|
+
- Interface ContainerGroup no longer has parameter containers
|
|
20
|
+
- Interface ContainerGroup no longer has parameter diagnostics
|
|
21
|
+
- Interface ContainerGroup no longer has parameter dnsConfig
|
|
22
|
+
- Interface ContainerGroup no longer has parameter encryptionProperties
|
|
23
|
+
- Interface ContainerGroup no longer has parameter identity
|
|
24
|
+
- Interface ContainerGroup no longer has parameter imageRegistryCredentials
|
|
25
|
+
- Interface ContainerGroup no longer has parameter initContainers
|
|
26
|
+
- Interface ContainerGroup no longer has parameter instanceView
|
|
27
|
+
- Interface ContainerGroup no longer has parameter ipAddress
|
|
28
|
+
- Interface ContainerGroup no longer has parameter osType
|
|
29
|
+
- Interface ContainerGroup no longer has parameter provisioningState
|
|
30
|
+
- Interface ContainerGroup no longer has parameter restartPolicy
|
|
31
|
+
- Interface ContainerGroup no longer has parameter sku
|
|
32
|
+
- Interface ContainerGroup no longer has parameter subnetIds
|
|
33
|
+
- Interface ContainerGroup no longer has parameter volumes
|
|
34
|
+
- Interface IpAddress no longer has parameter dnsNameLabelReusePolicy
|
|
35
|
+
- Removed Enum KnownAutoGeneratedDomainNameLabelScope
|
|
36
|
+
|
|
37
|
+
|
|
13
38
|
## 8.2.0 (2022-07-11)
|
|
14
39
|
|
|
15
40
|
**Features**
|