@azure/arm-containerinstance 7.1.0 → 8.0.0-alpha.20220104.2
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 +11 -0
- package/{LICENSE.txt → LICENSE} +2 -2
- package/README.md +70 -78
- package/dist/index.js +3335 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/dist-esm/src/containerInstanceManagementClient.d.ts +22 -0
- package/dist-esm/src/containerInstanceManagementClient.d.ts.map +1 -0
- package/dist-esm/src/containerInstanceManagementClient.js +55 -0
- package/dist-esm/src/containerInstanceManagementClient.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/lroImpl.d.ts +16 -0
- package/dist-esm/src/lroImpl.d.ts.map +1 -0
- package/dist-esm/src/lroImpl.js +29 -0
- package/dist-esm/src/lroImpl.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +964 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +70 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +54 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/mappers.js +782 -805
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +17 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/{esm → dist-esm/src}/models/parameters.js +67 -37
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/containerGroups.d.ts +159 -0
- package/dist-esm/src/operations/containerGroups.d.ts.map +1 -0
- package/dist-esm/src/operations/containerGroups.js +678 -0
- package/dist-esm/src/operations/containerGroups.js.map +1 -0
- package/dist-esm/src/operations/containers.d.ts +40 -0
- package/dist-esm/src/operations/containers.d.ts.map +1 -0
- package/dist-esm/src/operations/containers.js +134 -0
- package/dist-esm/src/operations/containers.js.map +1 -0
- package/{esm → dist-esm/src}/operations/index.d.ts +0 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/{esm → dist-esm/src}/operations/index.js +1 -2
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/location.d.ts +70 -0
- package/dist-esm/src/operations/location.d.ts.map +1 -0
- package/dist-esm/src/operations/location.js +310 -0
- package/dist-esm/src/operations/location.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +32 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +120 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/containerGroups.d.ts +119 -0
- package/dist-esm/src/operationsInterfaces/containerGroups.d.ts.map +1 -0
- package/{src/models/operationsMappers.ts → dist-esm/src/operationsInterfaces/containerGroups.js} +2 -7
- package/dist-esm/src/operationsInterfaces/containerGroups.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/containers.d.ts +32 -0
- package/dist-esm/src/operationsInterfaces/containers.d.ts.map +1 -0
- package/{esm/models/operationsMappers.js → dist-esm/src/operationsInterfaces/containers.js} +2 -2
- package/dist-esm/src/operationsInterfaces/containers.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +5 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +12 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/location.d.ts +24 -0
- package/dist-esm/src/operationsInterfaces/location.d.ts.map +1 -0
- package/{esm/models/index.js → dist-esm/src/operationsInterfaces/location.js} +2 -1
- package/dist-esm/src/operationsInterfaces/location.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
- package/{src/models/containersMappers.ts → dist-esm/src/operationsInterfaces/operations.js} +2 -9
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/test/containerinstance_examples.d.ts +4 -0
- package/dist-esm/test/containerinstance_examples.d.ts.map +1 -0
- package/dist-esm/test/containerinstance_examples.js +156 -0
- package/dist-esm/test/containerinstance_examples.js.map +1 -0
- package/package.json +65 -22
- package/review/arm-containerinstance.api.md +752 -0
- package/rollup.config.js +181 -30
- package/src/containerInstanceManagementClient.ts +78 -40
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +728 -1245
- package/src/models/mappers.ts +790 -809
- package/src/models/parameters.ts +90 -38
- package/src/operations/containerGroups.ts +667 -500
- package/src/operations/containers.ts +89 -143
- package/src/operations/index.ts +1 -2
- package/src/operations/location.ts +262 -179
- package/src/operations/operations.ts +85 -73
- package/src/operationsInterfaces/containerGroups.ts +212 -0
- package/src/operationsInterfaces/containers.ts +64 -0
- package/src/operationsInterfaces/index.ts +12 -0
- package/src/operationsInterfaces/location.ts +49 -0
- package/src/operationsInterfaces/operations.ts +22 -0
- package/tsconfig.json +3 -3
- package/types/arm-containerinstance.d.ts +1282 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-containerinstance.js +0 -3094
- package/dist/arm-containerinstance.js.map +0 -1
- package/dist/arm-containerinstance.min.js +0 -1
- package/dist/arm-containerinstance.min.js.map +0 -1
- package/esm/containerInstanceManagementClient.d.ts +0 -28
- package/esm/containerInstanceManagementClient.d.ts.map +0 -1
- package/esm/containerInstanceManagementClient.js +0 -41
- package/esm/containerInstanceManagementClient.js.map +0 -1
- package/esm/containerInstanceManagementClientContext.d.ts +0 -23
- package/esm/containerInstanceManagementClientContext.d.ts.map +0 -1
- package/esm/containerInstanceManagementClientContext.js +0 -61
- package/esm/containerInstanceManagementClientContext.js.map +0 -1
- package/esm/models/containerGroupsMappers.d.ts +0 -2
- package/esm/models/containerGroupsMappers.d.ts.map +0 -1
- package/esm/models/containerGroupsMappers.js +0 -9
- package/esm/models/containerGroupsMappers.js.map +0 -1
- package/esm/models/containersMappers.d.ts +0 -2
- package/esm/models/containersMappers.d.ts.map +0 -1
- package/esm/models/containersMappers.js +0 -9
- package/esm/models/containersMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -1501
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js.map +0 -1
- package/esm/models/locationMappers.d.ts +0 -2
- package/esm/models/locationMappers.d.ts.map +0 -1
- package/esm/models/locationMappers.js +0 -9
- package/esm/models/locationMappers.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -54
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/operationsMappers.d.ts +0 -2
- package/esm/models/operationsMappers.d.ts.map +0 -1
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -12
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js.map +0 -1
- package/esm/operations/containerGroups.d.ts +0 -270
- package/esm/operations/containerGroups.d.ts.map +0 -1
- package/esm/operations/containerGroups.js +0 -496
- package/esm/operations/containerGroups.js.map +0 -1
- package/esm/operations/containers.d.ts +0 -94
- package/esm/operations/containers.d.ts.map +0 -1
- package/esm/operations/containers.js +0 -133
- package/esm/operations/containers.js.map +0 -1
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/location.d.ts +0 -107
- package/esm/operations/location.d.ts.map +0 -1
- package/esm/operations/location.js +0 -171
- package/esm/operations/location.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -46
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -79
- package/esm/operations/operations.js.map +0 -1
- package/src/containerInstanceManagementClientContext.ts +0 -68
- package/src/models/containerGroupsMappers.ts +0 -46
- package/src/models/locationMappers.ts +0 -19
|
@@ -1 +0,0 @@
|
|
|
1
|
-
!function(e,a){"object"==typeof exports&&"undefined"!=typeof module?a(exports,require("@azure/ms-rest-azure-js"),require("@azure/ms-rest-js")):"function"==typeof define&&define.amd?define(["exports","@azure/ms-rest-azure-js","@azure/ms-rest-js"],a):a(((e=e||self).Azure=e.Azure||{},e.Azure.ArmContainerinstance={}),e.msRestAzure,e.msRest)}(this,function(e,n,a){"use strict";var t=function(e,a){return(t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,a){e.__proto__=a}||function(e,a){for(var r in a)a.hasOwnProperty(r)&&(e[r]=a[r])})(e,a)};function r(e,a){function r(){this.constructor=e}t(e,a),e.prototype=null===a?Object.create(a):(r.prototype=a.prototype,new r)}var i=function(){return(i=Object.assign||function(e){for(var a,r=1,t=arguments.length;r<t;r++)for(var i in a=arguments[r])Object.prototype.hasOwnProperty.call(a,i)&&(e[i]=a[i]);return e}).apply(this,arguments)},s=Object.freeze({__proto__:null}),o=n.CloudErrorMapper,p=n.BaseResourceMapper,m={serializedName:"ContainerPort",type:{name:"Composite",className:"ContainerPort",modelProperties:{protocol:{serializedName:"protocol",type:{name:"String"}},port:{required:!0,serializedName:"port",type:{name:"Number"}}}}},l={serializedName:"EnvironmentVariable",type:{name:"Composite",className:"EnvironmentVariable",modelProperties:{name:{required:!0,serializedName:"name",type:{name:"String"}},value:{serializedName:"value",type:{name:"String"}},secureValue:{serializedName:"secureValue",type:{name:"String"}}}}},u={serializedName:"ContainerState",type:{name:"Composite",className:"ContainerState",modelProperties:{state:{readOnly:!0,serializedName:"state",type:{name:"String"}},startTime:{readOnly:!0,serializedName:"startTime",type:{name:"DateTime"}},exitCode:{readOnly:!0,serializedName:"exitCode",type:{name:"Number"}},finishTime:{readOnly:!0,serializedName:"finishTime",type:{name:"DateTime"}},detailStatus:{readOnly:!0,serializedName:"detailStatus",type:{name:"String"}}}}},d={serializedName:"Event",type:{name:"Composite",className:"Event",modelProperties:{count:{readOnly:!0,serializedName:"count",type:{name:"Number"}},firstTimestamp:{readOnly:!0,serializedName:"firstTimestamp",type:{name:"DateTime"}},lastTimestamp:{readOnly:!0,serializedName:"lastTimestamp",type:{name:"DateTime"}},name:{readOnly:!0,serializedName:"name",type:{name:"String"}},message:{readOnly:!0,serializedName:"message",type:{name:"String"}},type:{readOnly:!0,serializedName:"type",type:{name:"String"}}}}},c={serializedName:"ContainerProperties_instanceView",type:{name:"Composite",className:"ContainerPropertiesInstanceView",modelProperties:{restartCount:{readOnly:!0,serializedName:"restartCount",type:{name:"Number"}},currentState:{readOnly:!0,serializedName:"currentState",type:{name:"Composite",className:"ContainerState"}},previousState:{readOnly:!0,serializedName:"previousState",type:{name:"Composite",className:"ContainerState"}},events:{readOnly:!0,serializedName:"events",type:{name:"Sequence",element:{type:{name:"Composite",className:"Event"}}}}}}},y={serializedName:"GpuResource",type:{name:"Composite",className:"GpuResource",modelProperties:{count:{required:!0,serializedName:"count",type:{name:"Number"}},sku:{required:!0,serializedName:"sku",type:{name:"String"}}}}},N={serializedName:"ResourceRequests",type:{name:"Composite",className:"ResourceRequests",modelProperties:{memoryInGB:{required:!0,serializedName:"memoryInGB",type:{name:"Number"}},cpu:{required:!0,serializedName:"cpu",type:{name:"Number"}},gpu:{serializedName:"gpu",type:{name:"Composite",className:"GpuResource"}}}}},z={serializedName:"ResourceLimits",type:{name:"Composite",className:"ResourceLimits",modelProperties:{memoryInGB:{serializedName:"memoryInGB",type:{name:"Number"}},cpu:{serializedName:"cpu",type:{name:"Number"}},gpu:{serializedName:"gpu",type:{name:"Composite",className:"GpuResource"}}}}},C={serializedName:"ResourceRequirements",type:{name:"Composite",className:"ResourceRequirements",modelProperties:{requests:{required:!0,serializedName:"requests",type:{name:"Composite",className:"ResourceRequests"}},limits:{serializedName:"limits",type:{name:"Composite",className:"ResourceLimits"}}}}},g={serializedName:"VolumeMount",type:{name:"Composite",className:"VolumeMount",modelProperties:{name:{required:!0,serializedName:"name",type:{name:"String"}},mountPath:{required:!0,serializedName:"mountPath",type:{name:"String"}},readOnly:{serializedName:"readOnly",type:{name:"Boolean"}}}}},h={serializedName:"ContainerExec",type:{name:"Composite",className:"ContainerExec",modelProperties:{command:{serializedName:"command",type:{name:"Sequence",element:{type:{name:"String"}}}}}}},b={serializedName:"HttpHeader",type:{name:"Composite",className:"HttpHeader",modelProperties:{name:{serializedName:"name",type:{name:"String"}},value:{serializedName:"value",type:{name:"String"}}}}},P={serializedName:"ContainerHttpGet",type:{name:"Composite",className:"ContainerHttpGet",modelProperties:{path:{serializedName:"path",type:{name:"String"}},port:{required:!0,serializedName:"port",type:{name:"Number"}},scheme:{serializedName:"scheme",type:{name:"String"}},httpHeaders:{serializedName:"httpHeaders",type:{name:"Sequence",element:{type:{name:"Composite",className:"HttpHeader"}}}}}}},S={serializedName:"ContainerProbe",type:{name:"Composite",className:"ContainerProbe",modelProperties:{exec:{serializedName:"exec",type:{name:"Composite",className:"ContainerExec"}},httpGet:{serializedName:"httpGet",type:{name:"Composite",className:"ContainerHttpGet"}},initialDelaySeconds:{serializedName:"initialDelaySeconds",type:{name:"Number"}},periodSeconds:{serializedName:"periodSeconds",type:{name:"Number"}},failureThreshold:{serializedName:"failureThreshold",type:{name:"Number"}},successThreshold:{serializedName:"successThreshold",type:{name:"Number"}},timeoutSeconds:{serializedName:"timeoutSeconds",type:{name:"Number"}}}}},G={serializedName:"Container",type:{name:"Composite",className:"Container",modelProperties:{name:{required:!0,serializedName:"name",type:{name:"String"}},image:{required:!0,serializedName:"properties.image",type:{name:"String"}},command:{serializedName:"properties.command",type:{name:"Sequence",element:{type:{name:"String"}}}},ports:{serializedName:"properties.ports",type:{name:"Sequence",element:{type:{name:"Composite",className:"ContainerPort"}}}},environmentVariables:{serializedName:"properties.environmentVariables",type:{name:"Sequence",element:{type:{name:"Composite",className:"EnvironmentVariable"}}}},instanceView:{readOnly:!0,serializedName:"properties.instanceView",type:{name:"Composite",className:"ContainerPropertiesInstanceView"}},resources:{required:!0,serializedName:"properties.resources",type:{name:"Composite",className:"ResourceRequirements"}},volumeMounts:{serializedName:"properties.volumeMounts",type:{name:"Sequence",element:{type:{name:"Composite",className:"VolumeMount"}}}},livenessProbe:{serializedName:"properties.livenessProbe",type:{name:"Composite",className:"ContainerProbe"}},readinessProbe:{serializedName:"properties.readinessProbe",type:{name:"Composite",className:"ContainerProbe"}}}}},q={serializedName:"AzureFileVolume",type:{name:"Composite",className:"AzureFileVolume",modelProperties:{shareName:{required:!0,serializedName:"shareName",type:{name:"String"}},readOnly:{serializedName:"readOnly",type:{name:"Boolean"}},storageAccountName:{required:!0,serializedName:"storageAccountName",type:{name:"String"}},storageAccountKey:{serializedName:"storageAccountKey",type:{name:"String"}}}}},R={serializedName:"GitRepoVolume",type:{name:"Composite",className:"GitRepoVolume",modelProperties:{directory:{serializedName:"directory",type:{name:"String"}},repository:{required:!0,serializedName:"repository",type:{name:"String"}},revision:{serializedName:"revision",type:{name:"String"}}}}},f={serializedName:"Volume",type:{name:"Composite",className:"Volume",modelProperties:{name:{required:!0,serializedName:"name",type:{name:"String"}},azureFile:{serializedName:"azureFile",type:{name:"Composite",className:"AzureFileVolume"}},emptyDir:{serializedName:"emptyDir",type:{name:"Object"}},secret:{serializedName:"secret",type:{name:"Dictionary",value:{type:{name:"String"}}}},gitRepo:{serializedName:"gitRepo",type:{name:"Composite",className:"GitRepoVolume"}}}}},I={serializedName:"ContainerGroupIdentity_userAssignedIdentitiesValue",type:{name:"Composite",className:"ContainerGroupIdentityUserAssignedIdentitiesValue",modelProperties:{principalId:{readOnly:!0,serializedName:"principalId",type:{name:"String"}},clientId:{readOnly:!0,serializedName:"clientId",type:{name:"String"}}}}},O={serializedName:"ContainerGroupIdentity",type:{name:"Composite",className:"ContainerGroupIdentity",modelProperties:{principalId:{readOnly:!0,serializedName:"principalId",type:{name:"String"}},tenantId:{readOnly:!0,serializedName:"tenantId",type:{name:"String"}},type:{serializedName:"type",type:{name:"Enum",allowedValues:["SystemAssigned","UserAssigned","SystemAssigned, UserAssigned","None"]}},userAssignedIdentities:{serializedName:"userAssignedIdentities",type:{name:"Dictionary",value:{type:{name:"Composite",className:"ContainerGroupIdentityUserAssignedIdentitiesValue"}}}}}}},M={serializedName:"ImageRegistryCredential",type:{name:"Composite",className:"ImageRegistryCredential",modelProperties:{server:{required:!0,serializedName:"server",type:{name:"String"}},username:{required:!0,serializedName:"username",type:{name:"String"}},password:{serializedName:"password",type:{name:"String"}},identity:{serializedName:"identity",type:{name:"String"}},identityUrl:{serializedName:"identityUrl",type:{name:"String"}}}}},v={serializedName:"Port",type:{name:"Composite",className:"Port",modelProperties:{protocol:{serializedName:"protocol",type:{name:"String"}},port:{required:!0,serializedName:"port",type:{name:"Number"}}}}},V={serializedName:"IpAddress",type:{name:"Composite",className:"IpAddress",modelProperties:{ports:{required:!0,serializedName:"ports",type:{name:"Sequence",element:{type:{name:"Composite",className:"Port"}}}},type:{required:!0,serializedName:"type",type:{name:"String"}},ip:{serializedName:"ip",type:{name:"String"}},dnsNameLabel:{serializedName:"dnsNameLabel",type:{name:"String"}},fqdn:{readOnly:!0,serializedName:"fqdn",type:{name:"String"}}}}},L={serializedName:"ContainerGroup_properties_instanceView",type:{name:"Composite",className:"ContainerGroupPropertiesInstanceView",modelProperties:{events:{readOnly:!0,serializedName:"events",type:{name:"Sequence",element:{type:{name:"Composite",className:"Event"}}}},state:{readOnly:!0,serializedName:"state",type:{name:"String"}}}}},E={serializedName:"LogAnalytics",type:{name:"Composite",className:"LogAnalytics",modelProperties:{workspaceId:{required:!0,serializedName:"workspaceId",type:{name:"String"}},workspaceKey:{required:!0,serializedName:"workspaceKey",type:{name:"String"}},logType:{serializedName:"logType",type:{name:"String"}},metadata:{serializedName:"metadata",type:{name:"Dictionary",value:{type:{name:"String"}}}},workspaceResourceId:{serializedName:"workspaceResourceId",type:{name:"String"}}}}},x={serializedName:"ContainerGroupDiagnostics",type:{name:"Composite",className:"ContainerGroupDiagnostics",modelProperties:{logAnalytics:{serializedName:"logAnalytics",type:{name:"Composite",className:"LogAnalytics"}}}}},T={serializedName:"ContainerGroupSubnetId",type:{name:"Composite",className:"ContainerGroupSubnetId",modelProperties:{id:{required:!0,serializedName:"id",type:{name:"String"}},name:{serializedName:"name",type:{name:"String"}}}}},w={serializedName:"DnsConfiguration",type:{name:"Composite",className:"DnsConfiguration",modelProperties:{nameServers:{required:!0,serializedName:"nameServers",type:{name:"Sequence",element:{type:{name:"String"}}}},searchDomains:{serializedName:"searchDomains",type:{name:"String"}},options:{serializedName:"options",type:{name:"String"}}}}},A={serializedName:"EncryptionProperties",type:{name:"Composite",className:"EncryptionProperties",modelProperties:{vaultBaseUrl:{required:!0,serializedName:"vaultBaseUrl",type:{name:"String"}},keyName:{required:!0,serializedName:"keyName",type:{name:"String"}},keyVersion:{required:!0,serializedName:"keyVersion",type:{name:"String"}}}}},U={serializedName:"InitContainerPropertiesDefinition_instanceView",type:{name:"Composite",className:"InitContainerPropertiesDefinitionInstanceView",modelProperties:{restartCount:{readOnly:!0,serializedName:"restartCount",type:{name:"Number"}},currentState:{readOnly:!0,serializedName:"currentState",type:{name:"Composite",className:"ContainerState"}},previousState:{readOnly:!0,serializedName:"previousState",type:{name:"Composite",className:"ContainerState"}},events:{readOnly:!0,serializedName:"events",type:{name:"Sequence",element:{type:{name:"Composite",className:"Event"}}}}}}},D={serializedName:"InitContainerDefinition",type:{name:"Composite",className:"InitContainerDefinition",modelProperties:{name:{required:!0,serializedName:"name",type:{name:"String"}},image:{serializedName:"properties.image",type:{name:"String"}},command:{serializedName:"properties.command",type:{name:"Sequence",element:{type:{name:"String"}}}},environmentVariables:{serializedName:"properties.environmentVariables",type:{name:"Sequence",element:{type:{name:"Composite",className:"EnvironmentVariable"}}}},instanceView:{readOnly:!0,serializedName:"properties.instanceView",type:{name:"Composite",className:"InitContainerPropertiesDefinitionInstanceView"}},volumeMounts:{serializedName:"properties.volumeMounts",type:{name:"Sequence",element:{type:{name:"Composite",className:"VolumeMount"}}}}}}},_={serializedName:"Resource",type:{name:"Composite",className:"Resource",modelProperties:{id:{readOnly:!0,serializedName:"id",type:{name:"String"}},name:{readOnly:!0,serializedName:"name",type:{name:"String"}},type:{readOnly:!0,serializedName:"type",type:{name:"String"}},location:{serializedName:"location",type:{name:"String"}},tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},zones:{serializedName:"zones",type:{name:"Sequence",element:{type:{name:"String"}}}}}}},k={serializedName:"ContainerGroup",type:{name:"Composite",className:"ContainerGroup",modelProperties:i(i({},_.type.modelProperties),{identity:{serializedName:"identity",type:{name:"Composite",className:"ContainerGroupIdentity"}},provisioningState:{readOnly:!0,serializedName:"properties.provisioningState",type:{name:"String"}},containers:{required:!0,serializedName:"properties.containers",type:{name:"Sequence",element:{type:{name:"Composite",className:"Container"}}}},imageRegistryCredentials:{serializedName:"properties.imageRegistryCredentials",type:{name:"Sequence",element:{type:{name:"Composite",className:"ImageRegistryCredential"}}}},restartPolicy:{serializedName:"properties.restartPolicy",type:{name:"String"}},ipAddress:{serializedName:"properties.ipAddress",type:{name:"Composite",className:"IpAddress"}},osType:{required:!0,serializedName:"properties.osType",type:{name:"String"}},volumes:{serializedName:"properties.volumes",type:{name:"Sequence",element:{type:{name:"Composite",className:"Volume"}}}},instanceView:{readOnly:!0,serializedName:"properties.instanceView",type:{name:"Composite",className:"ContainerGroupPropertiesInstanceView"}},diagnostics:{serializedName:"properties.diagnostics",type:{name:"Composite",className:"ContainerGroupDiagnostics"}},subnetIds:{serializedName:"properties.subnetIds",type:{name:"Sequence",element:{type:{name:"Composite",className:"ContainerGroupSubnetId"}}}},dnsConfig:{serializedName:"properties.dnsConfig",type:{name:"Composite",className:"DnsConfiguration"}},sku:{serializedName:"properties.sku",type:{name:"String"}},encryptionProperties:{serializedName:"properties.encryptionProperties",type:{name:"Composite",className:"EncryptionProperties"}},initContainers:{serializedName:"properties.initContainers",type:{name:"Sequence",element:{type:{name:"Composite",className:"InitContainerDefinition"}}}}})}},j={serializedName:"Operation_display",type:{name:"Composite",className:"OperationDisplay",modelProperties:{provider:{serializedName:"provider",type:{name:"String"}},resource:{serializedName:"resource",type:{name:"String"}},operation:{serializedName:"operation",type:{name:"String"}},description:{serializedName:"description",type:{name:"String"}}}}},B={serializedName:"Operation",type:{name:"Composite",className:"Operation",modelProperties:{name:{required:!0,serializedName:"name",type:{name:"String"}},display:{required:!0,serializedName:"display",type:{name:"Composite",className:"OperationDisplay"}},properties:{serializedName:"properties",type:{name:"Object"}},origin:{serializedName:"origin",type:{name:"String"}}}}},H={serializedName:"Usage_name",type:{name:"Composite",className:"UsageName",modelProperties:{value:{readOnly:!0,serializedName:"value",type:{name:"String"}},localizedValue:{readOnly:!0,serializedName:"localizedValue",type:{name:"String"}}}}},F={serializedName:"Usage",type:{name:"Composite",className:"Usage",modelProperties:{unit:{readOnly:!0,serializedName:"unit",type:{name:"String"}},currentValue:{readOnly:!0,serializedName:"currentValue",type:{name:"Number"}},limit:{readOnly:!0,serializedName:"limit",type:{name:"Number"}},name:{readOnly:!0,serializedName:"name",type:{name:"Composite",className:"UsageName"}}}}},K={serializedName:"Logs",type:{name:"Composite",className:"Logs",modelProperties:{content:{serializedName:"content",type:{name:"String"}}}}},J={serializedName:"ContainerExecRequest_terminalSize",type:{name:"Composite",className:"ContainerExecRequestTerminalSize",modelProperties:{rows:{serializedName:"rows",type:{name:"Number"}},cols:{serializedName:"cols",type:{name:"Number"}}}}},Q={serializedName:"ContainerExecRequest",type:{name:"Composite",className:"ContainerExecRequest",modelProperties:{command:{serializedName:"command",type:{name:"String"}},terminalSize:{serializedName:"terminalSize",type:{name:"Composite",className:"ContainerExecRequestTerminalSize"}}}}},W={serializedName:"ContainerExecResponse",type:{name:"Composite",className:"ContainerExecResponse",modelProperties:{webSocketUri:{serializedName:"webSocketUri",type:{name:"String"}},password:{serializedName:"password",type:{name:"String"}}}}},X={serializedName:"ContainerAttachResponse",type:{name:"Composite",className:"ContainerAttachResponse",modelProperties:{webSocketUri:{serializedName:"webSocketUri",type:{name:"String"}},password:{serializedName:"password",type:{name:"String"}}}}},Y={serializedName:"cachedImages",type:{name:"Composite",className:"CachedImages",modelProperties:{osType:{required:!0,serializedName:"osType",type:{name:"String"}},image:{required:!0,serializedName:"image",type:{name:"String"}}}}},Z={serializedName:"Capabilities_capabilities",type:{name:"Composite",className:"CapabilitiesCapabilities",modelProperties:{maxMemoryInGB:{readOnly:!0,serializedName:"maxMemoryInGB",type:{name:"Number"}},maxCpu:{readOnly:!0,serializedName:"maxCpu",type:{name:"Number"}},maxGpuCount:{readOnly:!0,serializedName:"maxGpuCount",type:{name:"Number"}}}}},$={serializedName:"Capabilities",type:{name:"Composite",className:"Capabilities",modelProperties:{resourceType:{readOnly:!0,serializedName:"resourceType",type:{name:"String"}},osType:{readOnly:!0,serializedName:"osType",type:{name:"String"}},location:{readOnly:!0,serializedName:"location",type:{name:"String"}},ipAddressType:{readOnly:!0,serializedName:"ipAddressType",type:{name:"String"}},gpu:{readOnly:!0,serializedName:"gpu",type:{name:"String"}},capabilities:{readOnly:!0,serializedName:"capabilities",type:{name:"Composite",className:"CapabilitiesCapabilities"}}}}},ee={serializedName:"ContainerGroupListResult",type:{name:"Composite",className:"ContainerGroupListResult",modelProperties:{value:{serializedName:"",type:{name:"Sequence",element:{type:{name:"Composite",className:"ContainerGroup"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},ae={serializedName:"OperationListResult",type:{name:"Composite",className:"OperationListResult",modelProperties:{value:{serializedName:"",type:{name:"Sequence",element:{type:{name:"Composite",className:"Operation"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},re={serializedName:"UsageListResult",type:{name:"Composite",className:"UsageListResult",modelProperties:{value:{readOnly:!0,serializedName:"",type:{name:"Sequence",element:{type:{name:"Composite",className:"Usage"}}}}}}},te={serializedName:"CachedImagesListResult",type:{name:"Composite",className:"CachedImagesListResult",modelProperties:{value:{serializedName:"",type:{name:"Sequence",element:{type:{name:"Composite",className:"CachedImages"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},ie={serializedName:"CapabilitiesListResult",type:{name:"Composite",className:"CapabilitiesListResult",modelProperties:{value:{serializedName:"",type:{name:"Sequence",element:{type:{name:"Composite",className:"Capabilities"}}}},nextLink:{serializedName:"nextLink",type:{name:"String"}}}}},ne=Object.freeze({__proto__:null,CloudError:o,BaseResource:p,ContainerPort:m,EnvironmentVariable:l,ContainerState:u,Event:d,ContainerPropertiesInstanceView:c,GpuResource:y,ResourceRequests:N,ResourceLimits:z,ResourceRequirements:C,VolumeMount:g,ContainerExec:h,HttpHeader:b,ContainerHttpGet:P,ContainerProbe:S,Container:G,AzureFileVolume:q,GitRepoVolume:R,Volume:f,ContainerGroupIdentityUserAssignedIdentitiesValue:I,ContainerGroupIdentity:O,ImageRegistryCredential:M,Port:v,IpAddress:V,ContainerGroupPropertiesInstanceView:L,LogAnalytics:E,ContainerGroupDiagnostics:x,ContainerGroupSubnetId:T,DnsConfiguration:w,EncryptionProperties:A,InitContainerPropertiesDefinitionInstanceView:U,InitContainerDefinition:D,Resource:_,ContainerGroup:k,OperationDisplay:j,Operation:B,UsageName:H,Usage:F,Logs:K,ContainerExecRequestTerminalSize:J,ContainerExecRequest:Q,ContainerExecResponse:W,ContainerAttachResponse:X,CachedImages:Y,CapabilitiesCapabilities:Z,Capabilities:$,ContainerGroupListResult:ee,OperationListResult:ae,UsageListResult:re,CachedImagesListResult:te,CapabilitiesListResult:ie}),U=Object.freeze({__proto__:null,AzureFileVolume:q,BaseResource:p,CloudError:o,Container:G,ContainerExec:h,ContainerGroup:k,ContainerGroupDiagnostics:x,ContainerGroupIdentity:O,ContainerGroupIdentityUserAssignedIdentitiesValue:I,ContainerGroupListResult:ee,ContainerGroupPropertiesInstanceView:L,ContainerGroupSubnetId:T,ContainerHttpGet:P,ContainerPort:m,ContainerProbe:S,ContainerPropertiesInstanceView:c,ContainerState:u,DnsConfiguration:w,EncryptionProperties:A,EnvironmentVariable:l,Event:d,GitRepoVolume:R,GpuResource:y,HttpHeader:b,ImageRegistryCredential:M,InitContainerDefinition:D,InitContainerPropertiesDefinitionInstanceView:U,IpAddress:V,LogAnalytics:E,Port:v,Resource:_,ResourceLimits:z,ResourceRequests:N,ResourceRequirements:C,Volume:f,VolumeMount:g}),V={parameterPath:"acceptLanguage",mapper:{serializedName:"accept-language",defaultValue:"en-US",type:{name:"String"}}},E={parameterPath:"apiVersion",mapper:{required:!0,serializedName:"api-version",type:{name:"String"}}},v={parameterPath:"containerGroupName",mapper:{required:!0,serializedName:"containerGroupName",type:{name:"String"}}},z={parameterPath:"containerName",mapper:{required:!0,serializedName:"containerName",type:{name:"String"}}},N={parameterPath:"location",mapper:{required:!0,serializedName:"location",type:{name:"String"}}},C={parameterPath:"nextPageLink",mapper:{required:!0,serializedName:"nextLink",type:{name:"String"}},skipEncoding:!0},f={parameterPath:"resourceGroupName",mapper:{required:!0,serializedName:"resourceGroupName",type:{name:"String"}}},g={parameterPath:"subscriptionId",mapper:{required:!0,serializedName:"subscriptionId",type:{name:"String"}}},se=(oe.prototype.list=function(e,a){return this.client.sendOperationRequest({options:e},pe,a)},oe.prototype.listByResourceGroup=function(e,a,r){return this.client.sendOperationRequest({resourceGroupName:e,options:a},me,r)},oe.prototype.get=function(e,a,r,t){return this.client.sendOperationRequest({resourceGroupName:e,containerGroupName:a,options:r},le,t)},oe.prototype.createOrUpdate=function(e,a,r,t){return this.beginCreateOrUpdate(e,a,r,t).then(function(e){return e.pollUntilFinished()})},oe.prototype.update=function(e,a,r,t,i){return this.client.sendOperationRequest({resourceGroupName:e,containerGroupName:a,resource:r,options:t},ue,i)},oe.prototype.deleteMethod=function(e,a,r){return this.beginDeleteMethod(e,a,r).then(function(e){return e.pollUntilFinished()})},oe.prototype.restart=function(e,a,r){return this.beginRestart(e,a,r).then(function(e){return e.pollUntilFinished()})},oe.prototype.stop=function(e,a,r,t){return this.client.sendOperationRequest({resourceGroupName:e,containerGroupName:a,options:r},de,t)},oe.prototype.start=function(e,a,r){return this.beginStart(e,a,r).then(function(e){return e.pollUntilFinished()})},oe.prototype.getOutboundNetworkDependenciesEndpoints=function(e,a,r,t){return this.client.sendOperationRequest({resourceGroupName:e,containerGroupName:a,options:r},ce,t)},oe.prototype.beginCreateOrUpdate=function(e,a,r,t){return this.client.sendLRORequest({resourceGroupName:e,containerGroupName:a,containerGroup:r,options:t},ye,t)},oe.prototype.beginDeleteMethod=function(e,a,r){return this.client.sendLRORequest({resourceGroupName:e,containerGroupName:a,options:r},Ne,r)},oe.prototype.beginRestart=function(e,a,r){return this.client.sendLRORequest({resourceGroupName:e,containerGroupName:a,options:r},ze,r)},oe.prototype.beginStart=function(e,a,r){return this.client.sendLRORequest({resourceGroupName:e,containerGroupName:a,options:r},Ce,r)},oe.prototype.listNext=function(e,a,r){return this.client.sendOperationRequest({nextPageLink:e,options:a},ge,r)},oe.prototype.listByResourceGroupNext=function(e,a,r){return this.client.sendOperationRequest({nextPageLink:e,options:a},he,r)},oe);function oe(e){this.client=e}var U=new a.Serializer(U),pe={httpMethod:"GET",path:"subscriptions/{subscriptionId}/providers/Microsoft.ContainerInstance/containerGroups",urlParameters:[g],queryParameters:[E],headerParameters:[V],responses:{200:{bodyMapper:ee},default:{bodyMapper:o}},serializer:U},me={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups",urlParameters:[g,f],queryParameters:[E],headerParameters:[V],responses:{200:{bodyMapper:ee},default:{bodyMapper:o}},serializer:U},le={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}",urlParameters:[g,f,v],queryParameters:[E],headerParameters:[V],responses:{200:{bodyMapper:k},default:{bodyMapper:o}},serializer:U},ue={httpMethod:"PATCH",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}",urlParameters:[g,f,v],queryParameters:[E],headerParameters:[V],requestBody:{parameterPath:"resource",mapper:i(i({},_),{required:!0})},responses:{200:{bodyMapper:k},default:{bodyMapper:o}},serializer:U},de={httpMethod:"POST",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/stop",urlParameters:[g,f,v],queryParameters:[E],headerParameters:[V],responses:{204:{},default:{bodyMapper:o}},serializer:U},ce={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/outboundNetworkDependenciesEndpoints",urlParameters:[g,f,v],queryParameters:[E],headerParameters:[V],responses:{200:{bodyMapper:{serializedName:"parsedResponse",type:{name:"Sequence",element:{type:{name:"String"}}}}},default:{bodyMapper:o}},serializer:U},ye={httpMethod:"PUT",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}",urlParameters:[g,f,v],queryParameters:[E],headerParameters:[V],requestBody:{parameterPath:"containerGroup",mapper:i(i({},k),{required:!0})},responses:{200:{bodyMapper:k},201:{bodyMapper:k},default:{bodyMapper:o}},serializer:U},Ne={httpMethod:"DELETE",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}",urlParameters:[g,f,v],queryParameters:[E],headerParameters:[V],responses:{200:{bodyMapper:k},202:{},204:{},default:{bodyMapper:o}},serializer:U},ze={httpMethod:"POST",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/restart",urlParameters:[g,f,v],queryParameters:[E],headerParameters:[V],responses:{204:{},default:{bodyMapper:o}},serializer:U},Ce={httpMethod:"POST",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/start",urlParameters:[g,f,v],queryParameters:[E],headerParameters:[V],responses:{202:{},default:{bodyMapper:o}},serializer:U},ge={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[C],queryParameters:[E],headerParameters:[V],responses:{200:{bodyMapper:ee},default:{bodyMapper:o}},serializer:U},he={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[C],queryParameters:[E],headerParameters:[V],responses:{200:{bodyMapper:ee},default:{bodyMapper:o}},serializer:U},j=Object.freeze({__proto__:null,CloudError:o,Operation:B,OperationDisplay:j,OperationListResult:ae}),be=(Pe.prototype.list=function(e,a){return this.client.sendOperationRequest({options:e},Se,a)},Pe.prototype.listNext=function(e,a,r){return this.client.sendOperationRequest({nextPageLink:e,options:a},Ge,r)},Pe);function Pe(e){this.client=e}var j=new a.Serializer(j),Se={httpMethod:"GET",path:"providers/Microsoft.ContainerInstance/operations",queryParameters:[E],headerParameters:[V],responses:{200:{bodyMapper:ae},default:{bodyMapper:o}},serializer:j},Ge={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[C],queryParameters:[E],headerParameters:[V],responses:{200:{bodyMapper:ae},default:{bodyMapper:o}},serializer:j},H=Object.freeze({__proto__:null,CachedImages:Y,CachedImagesListResult:te,Capabilities:$,CapabilitiesCapabilities:Z,CapabilitiesListResult:ie,CloudError:o,Usage:F,UsageListResult:re,UsageName:H}),qe=(Re.prototype.listUsage=function(e,a,r){return this.client.sendOperationRequest({location:e,options:a},fe,r)},Re.prototype.listCachedImages=function(e,a,r){return this.client.sendOperationRequest({location:e,options:a},Ie,r)},Re.prototype.listCapabilities=function(e,a,r){return this.client.sendOperationRequest({location:e,options:a},Oe,r)},Re.prototype.listCachedImagesNext=function(e,a,r){return this.client.sendOperationRequest({nextPageLink:e,options:a},Me,r)},Re.prototype.listCapabilitiesNext=function(e,a,r){return this.client.sendOperationRequest({nextPageLink:e,options:a},ve,r)},Re);function Re(e){this.client=e}var H=new a.Serializer(H),fe={httpMethod:"GET",path:"subscriptions/{subscriptionId}/providers/Microsoft.ContainerInstance/locations/{location}/usages",urlParameters:[g,N],queryParameters:[E],headerParameters:[V],responses:{200:{bodyMapper:re},default:{bodyMapper:o}},serializer:H},Ie={httpMethod:"GET",path:"subscriptions/{subscriptionId}/providers/Microsoft.ContainerInstance/locations/{location}/cachedImages",urlParameters:[g,N],queryParameters:[E],headerParameters:[V],responses:{200:{bodyMapper:te},default:{bodyMapper:o}},serializer:H},Oe={httpMethod:"GET",path:"subscriptions/{subscriptionId}/providers/Microsoft.ContainerInstance/locations/{location}/capabilities",urlParameters:[g,N],queryParameters:[E],headerParameters:[V],responses:{200:{bodyMapper:ie},default:{bodyMapper:o}},serializer:H},Me={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[C],queryParameters:[E],headerParameters:[V],responses:{200:{bodyMapper:te},default:{bodyMapper:o}},serializer:H},ve={httpMethod:"GET",baseUrl:"https://management.azure.com",path:"{nextLink}",urlParameters:[C],queryParameters:[E],headerParameters:[V],responses:{200:{bodyMapper:ie},default:{bodyMapper:o}},serializer:H},J=Object.freeze({__proto__:null,CloudError:o,ContainerAttachResponse:X,ContainerExecRequest:Q,ContainerExecRequestTerminalSize:J,ContainerExecResponse:W,Logs:K}),Ve=(Le.prototype.listLogs=function(e,a,r,t,i){return this.client.sendOperationRequest({resourceGroupName:e,containerGroupName:a,containerName:r,options:t},xe,i)},Le.prototype.executeCommand=function(e,a,r,t,i,n){return this.client.sendOperationRequest({resourceGroupName:e,containerGroupName:a,containerName:r,containerExecRequest:t,options:i},Te,n)},Le.prototype.attach=function(e,a,r,t,i){return this.client.sendOperationRequest({resourceGroupName:e,containerGroupName:a,containerName:r,options:t},we,i)},Le);function Le(e){this.client=e}var Ee,J=new a.Serializer(J),xe={httpMethod:"GET",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/containers/{containerName}/logs",urlParameters:[g,f,v,z],queryParameters:[E,{parameterPath:["options","tail"],mapper:{serializedName:"tail",type:{name:"Number"}}},{parameterPath:["options","timestamps"],mapper:{serializedName:"timestamps",type:{name:"Boolean"}}}],headerParameters:[V],responses:{200:{bodyMapper:K},default:{bodyMapper:o}},serializer:J},Te={httpMethod:"POST",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/containers/{containerName}/exec",urlParameters:[g,f,v,z],queryParameters:[E],headerParameters:[V],requestBody:{parameterPath:"containerExecRequest",mapper:i(i({},Q),{required:!0})},responses:{200:{bodyMapper:W},default:{bodyMapper:o}},serializer:J},we={httpMethod:"POST",path:"subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerInstance/containerGroups/{containerGroupName}/containers/{containerName}/attach",urlParameters:[g,f,v,z],queryParameters:[E],headerParameters:[V],responses:{200:{bodyMapper:X},default:{bodyMapper:o}},serializer:J},o=(r(Ae,Ee=n.AzureServiceClient),Ae);function Ae(e,a,r){var t,i=this;if(null==e)throw new Error("'credentials' cannot be null.");if(null==a)throw new Error("'subscriptionId' cannot be null.");return(r=r||{}).userAgent||(t=n.getDefaultUserAgentValue(),r.userAgent="@azure/arm-containerinstance/7.1.0 "+t),(i=Ee.call(this,e,r)||this).apiVersion="2021-09-01",i.acceptLanguage="en-US",i.longRunningOperationRetryTimeout=30,i.baseUri=r.baseUri||i.baseUri||"https://management.azure.com",i.requestContentType="application/json; charset=utf-8",i.credentials=e,i.subscriptionId=a,null!==r.acceptLanguage&&void 0!==r.acceptLanguage&&(i.acceptLanguage=r.acceptLanguage),null!==r.longRunningOperationRetryTimeout&&void 0!==r.longRunningOperationRetryTimeout&&(i.longRunningOperationRetryTimeout=r.longRunningOperationRetryTimeout),i}var Ue,J=(r(De,Ue=o),De);function De(e,a,r){r=Ue.call(this,e,a,r)||this;return r.containerGroups=new se(r),r.operations=new be(r),r.location=new qe(r),r.containers=new Ve(r),r}e.ContainerGroups=se,e.ContainerInstanceManagementClient=J,e.ContainerInstanceManagementClientContext=o,e.ContainerInstanceManagementMappers=ne,e.ContainerInstanceManagementModels=s,e.Containers=Ve,e.Location=qe,e.Operations=be,Object.defineProperty(e,"__esModule",{value:!0})});
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../node_modules/tslib/tslib.es6.js","../src/models/mappers.ts","../src/models/parameters.ts","../src/operations/containerGroups.ts","../src/operations/operations.ts","../src/operations/location.ts","../src/operations/containers.ts","../src/containerInstanceManagementClientContext.ts","../src/containerInstanceManagementClient.ts"],"names":["extendStatics","d","b","Object","setPrototypeOf","__proto__","Array","p","hasOwnProperty","__extends","__","this","constructor","prototype","create","__assign","assign","t","s","i","n","arguments","length","call","apply","CloudError","CloudErrorMapper","BaseResource","BaseResourceMapper","ContainerPort","serializedName","type","name","className","modelProperties","protocol","port","required","EnvironmentVariable","value","secureValue","ContainerState","state","readOnly","startTime","exitCode","finishTime","detailStatus","Event","count","firstTimestamp","lastTimestamp","message","ContainerPropertiesInstanceView","restartCount","currentState","previousState","events","element","GpuResource","sku","ResourceRequests","memoryInGB","cpu","gpu","ResourceLimits","ResourceRequirements","requests","limits","VolumeMount","mountPath","ContainerExec","command","HttpHeader","ContainerHttpGet","path","scheme","httpHeaders","ContainerProbe","exec","httpGet","initialDelaySeconds","periodSeconds","failureThreshold","successThreshold","timeoutSeconds","Container","image","ports","environmentVariables","instanceView","resources","volumeMounts","livenessProbe","readinessProbe","AzureFileVolume","shareName","storageAccountName","storageAccountKey","GitRepoVolume","directory","repository","revision","Volume","azureFile","emptyDir","secret","gitRepo","ContainerGroupIdentityUserAssignedIdentitiesValue","principalId","clientId","ContainerGroupIdentity","tenantId","allowedValues","userAssignedIdentities","ImageRegistryCredential","server","username","password","identity","identityUrl","Port","IpAddress","ip","dnsNameLabel","fqdn","ContainerGroupPropertiesInstanceView","LogAnalytics","workspaceId","workspaceKey","logType","metadata","workspaceResourceId","ContainerGroupDiagnostics","logAnalytics","ContainerGroupSubnetId","id","DnsConfiguration","nameServers","searchDomains","options","EncryptionProperties","vaultBaseUrl","keyName","keyVersion","InitContainerPropertiesDefinitionInstanceView","InitContainerDefinition","Resource","location","tags","zones","ContainerGroup","provisioningState","containers","imageRegistryCredentials","restartPolicy","ipAddress","osType","volumes","diagnostics","subnetIds","dnsConfig","encryptionProperties","initContainers","OperationDisplay","provider","resource","operation","description","Operation","display","properties","origin","UsageName","localizedValue","Usage","unit","currentValue","limit","Logs","content","ContainerExecRequestTerminalSize","rows","cols","ContainerExecRequest","terminalSize","ContainerExecResponse","webSocketUri","ContainerAttachResponse","CachedImages","CapabilitiesCapabilities","maxMemoryInGB","maxCpu","maxGpuCount","Capabilities","resourceType","ipAddressType","capabilities","ContainerGroupListResult","nextLink","OperationListResult","UsageListResult","CachedImagesListResult","CapabilitiesListResult","acceptLanguage","parameterPath","mapper","defaultValue","apiVersion","containerGroupName","containerName","nextPageLink","skipEncoding","resourceGroupName","subscriptionId","ContainerGroups","list","callback","client","sendOperationRequest","listOperationSpec","listByResourceGroup","listByResourceGroupOperationSpec","get","getOperationSpec","createOrUpdate","containerGroup","beginCreateOrUpdate","then","lroPoller","pollUntilFinished","update","updateOperationSpec","deleteMethod","beginDeleteMethod","restart","beginRestart","stop","stopOperationSpec","start","beginStart","getOutboundNetworkDependenciesEndpoints","getOutboundNetworkDependenciesEndpointsOperationSpec","sendLRORequest","beginCreateOrUpdateOperationSpec","beginDeleteMethodOperationSpec","beginRestartOperationSpec","beginStartOperationSpec","listNext","listNextOperationSpec","listByResourceGroupNext","listByResourceGroupNextOperationSpec","serializer","msRest.Serializer","Mappers","httpMethod","urlParameters","Parameters.subscriptionId","queryParameters","Parameters.apiVersion","headerParameters","Parameters.acceptLanguage","responses","200","bodyMapper","Mappers.ContainerGroupListResult","default","Mappers.CloudError","Parameters.resourceGroupName","Parameters.containerGroupName","Mappers.ContainerGroup","requestBody","Mappers.Resource","204","201","202","baseUrl","Parameters.nextPageLink","Operations","Mappers.OperationListResult","serializer$1","Location","listUsage","listUsageOperationSpec","listCachedImages","listCachedImagesOperationSpec","listCapabilities","listCapabilitiesOperationSpec","listCachedImagesNext","listCachedImagesNextOperationSpec","listCapabilitiesNext","listCapabilitiesNextOperationSpec","Parameters.location","Mappers.UsageListResult","serializer$2","Mappers.CachedImagesListResult","Mappers.CapabilitiesListResult","Containers","listLogs","listLogsOperationSpec","executeCommand","containerExecRequest","executeCommandOperationSpec","attach","attachOperationSpec","_super","Parameters.containerName","Mappers.Logs","serializer$3","Mappers.ContainerExecRequest","Mappers.ContainerExecResponse","Mappers.ContainerAttachResponse","ContainerInstanceManagementClientContext","msRestAzure.AzureServiceClient","credentials","defaultUserAgent","_this","undefined","Error","userAgent","msRestAzure.getDefaultUserAgentValue","packageName","longRunningOperationRetryTimeout","baseUri","requestContentType","ContainerInstanceManagementClient","containerGroups","operations.ContainerGroups","operations","operations.Operations","operations.Location","operations.Containers"],"mappings":"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"}
|
|
@@ -1,28 +0,0 @@
|
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
2
|
-
import { TokenCredential } from "@azure/core-auth";
|
|
3
|
-
import * as Models from "./models";
|
|
4
|
-
import * as Mappers from "./models/mappers";
|
|
5
|
-
import * as operations from "./operations";
|
|
6
|
-
import { ContainerInstanceManagementClientContext } from "./containerInstanceManagementClientContext";
|
|
7
|
-
declare class ContainerInstanceManagementClient extends ContainerInstanceManagementClientContext {
|
|
8
|
-
containerGroups: operations.ContainerGroups;
|
|
9
|
-
operations: operations.Operations;
|
|
10
|
-
location: operations.Location;
|
|
11
|
-
containers: operations.Containers;
|
|
12
|
-
/**
|
|
13
|
-
* Initializes a new instance of the ContainerInstanceManagementClient class.
|
|
14
|
-
* @param credentials Credentials needed for the client to connect to Azure. Credentials
|
|
15
|
-
* implementing the TokenCredential interface from the @azure/identity package are recommended. For
|
|
16
|
-
* more information about these credentials, see
|
|
17
|
-
* {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
|
|
18
|
-
* ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
|
|
19
|
-
* @azure/ms-rest-browserauth are also supported.
|
|
20
|
-
* @param subscriptionId Subscription credentials which uniquely identify Microsoft Azure
|
|
21
|
-
* subscription. The subscription ID forms part of the URI for every service call.
|
|
22
|
-
* @param [options] The parameter options
|
|
23
|
-
*/
|
|
24
|
-
constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.ContainerInstanceManagementClientOptions);
|
|
25
|
-
}
|
|
26
|
-
export { ContainerInstanceManagementClient, ContainerInstanceManagementClientContext, Models as ContainerInstanceManagementModels, Mappers as ContainerInstanceManagementMappers };
|
|
27
|
-
export * from "./operations";
|
|
28
|
-
//# sourceMappingURL=containerInstanceManagementClient.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containerInstanceManagementClient.d.ts","sourceRoot":"","sources":["../src/containerInstanceManagementClient.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AACnD,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,wCAAwC,EAAE,MAAM,4CAA4C,CAAC;AAGtG,cAAM,iCAAkC,SAAQ,wCAAwC;IAEtF,eAAe,EAAE,UAAU,CAAC,eAAe,CAAC;IAC5C,UAAU,EAAE,UAAU,CAAC,UAAU,CAAC;IAClC,QAAQ,EAAE,UAAU,CAAC,QAAQ,CAAC;IAC9B,UAAU,EAAE,UAAU,CAAC,UAAU,CAAC;IAElC;;;;;;;;;;;OAWG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,GAAG,eAAe,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,wCAAwC;CAO9J;AAID,OAAO,EACL,iCAAiC,EACjC,wCAAwC,EACxC,MAAM,IAAI,iCAAiC,EAC3C,OAAO,IAAI,kCAAkC,EAC9C,CAAC;AACF,cAAc,cAAc,CAAC"}
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
7
|
-
* regenerated.
|
|
8
|
-
*/
|
|
9
|
-
import { __extends } from "tslib";
|
|
10
|
-
import * as Models from "./models";
|
|
11
|
-
import * as Mappers from "./models/mappers";
|
|
12
|
-
import * as operations from "./operations";
|
|
13
|
-
import { ContainerInstanceManagementClientContext } from "./containerInstanceManagementClientContext";
|
|
14
|
-
var ContainerInstanceManagementClient = /** @class */ (function (_super) {
|
|
15
|
-
__extends(ContainerInstanceManagementClient, _super);
|
|
16
|
-
/**
|
|
17
|
-
* Initializes a new instance of the ContainerInstanceManagementClient class.
|
|
18
|
-
* @param credentials Credentials needed for the client to connect to Azure. Credentials
|
|
19
|
-
* implementing the TokenCredential interface from the @azure/identity package are recommended. For
|
|
20
|
-
* more information about these credentials, see
|
|
21
|
-
* {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
|
|
22
|
-
* ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
|
|
23
|
-
* @azure/ms-rest-browserauth are also supported.
|
|
24
|
-
* @param subscriptionId Subscription credentials which uniquely identify Microsoft Azure
|
|
25
|
-
* subscription. The subscription ID forms part of the URI for every service call.
|
|
26
|
-
* @param [options] The parameter options
|
|
27
|
-
*/
|
|
28
|
-
function ContainerInstanceManagementClient(credentials, subscriptionId, options) {
|
|
29
|
-
var _this = _super.call(this, credentials, subscriptionId, options) || this;
|
|
30
|
-
_this.containerGroups = new operations.ContainerGroups(_this);
|
|
31
|
-
_this.operations = new operations.Operations(_this);
|
|
32
|
-
_this.location = new operations.Location(_this);
|
|
33
|
-
_this.containers = new operations.Containers(_this);
|
|
34
|
-
return _this;
|
|
35
|
-
}
|
|
36
|
-
return ContainerInstanceManagementClient;
|
|
37
|
-
}(ContainerInstanceManagementClientContext));
|
|
38
|
-
// Operation Specifications
|
|
39
|
-
export { ContainerInstanceManagementClient, ContainerInstanceManagementClientContext, Models as ContainerInstanceManagementModels, Mappers as ContainerInstanceManagementMappers };
|
|
40
|
-
export * from "./operations";
|
|
41
|
-
//# sourceMappingURL=containerInstanceManagementClient.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containerInstanceManagementClient.js","sourceRoot":"","sources":["../src/containerInstanceManagementClient.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;;AAIH,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,OAAO,MAAM,kBAAkB,CAAC;AAC5C,OAAO,KAAK,UAAU,MAAM,cAAc,CAAC;AAC3C,OAAO,EAAE,wCAAwC,EAAE,MAAM,4CAA4C,CAAC;AAGtG;IAAgD,qDAAwC;IAOtF;;;;;;;;;;;OAWG;IACH,2CAAY,WAA8D,EAAE,cAAsB,EAAE,OAAyD;QAA7J,YACE,kBAAM,WAAW,EAAE,cAAc,EAAE,OAAO,CAAC,SAK5C;QAJC,KAAI,CAAC,eAAe,GAAG,IAAI,UAAU,CAAC,eAAe,CAAC,KAAI,CAAC,CAAC;QAC5D,KAAI,CAAC,UAAU,GAAG,IAAI,UAAU,CAAC,UAAU,CAAC,KAAI,CAAC,CAAC;QAClD,KAAI,CAAC,QAAQ,GAAG,IAAI,UAAU,CAAC,QAAQ,CAAC,KAAI,CAAC,CAAC;QAC9C,KAAI,CAAC,UAAU,GAAG,IAAI,UAAU,CAAC,UAAU,CAAC,KAAI,CAAC,CAAC;;IACpD,CAAC;IACH,wCAAC;AAAD,CAAC,AA1BD,CAAgD,wCAAwC,GA0BvF;AAED,2BAA2B;AAE3B,OAAO,EACL,iCAAiC,EACjC,wCAAwC,EACxC,MAAM,IAAI,iCAAiC,EAC3C,OAAO,IAAI,kCAAkC,EAC9C,CAAC;AACF,cAAc,cAAc,CAAC"}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import * as Models from "./models";
|
|
2
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
3
|
-
import * as msRestAzure from "@azure/ms-rest-azure-js";
|
|
4
|
-
import { TokenCredential } from "@azure/core-auth";
|
|
5
|
-
export declare class ContainerInstanceManagementClientContext extends msRestAzure.AzureServiceClient {
|
|
6
|
-
credentials: msRest.ServiceClientCredentials | TokenCredential;
|
|
7
|
-
subscriptionId: string;
|
|
8
|
-
apiVersion?: string;
|
|
9
|
-
/**
|
|
10
|
-
* Initializes a new instance of the ContainerInstanceManagementClient class.
|
|
11
|
-
* @param credentials Credentials needed for the client to connect to Azure. Credentials
|
|
12
|
-
* implementing the TokenCredential interface from the @azure/identity package are recommended. For
|
|
13
|
-
* more information about these credentials, see
|
|
14
|
-
* {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
|
|
15
|
-
* ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
|
|
16
|
-
* @azure/ms-rest-browserauth are also supported.
|
|
17
|
-
* @param subscriptionId Subscription credentials which uniquely identify Microsoft Azure
|
|
18
|
-
* subscription. The subscription ID forms part of the URI for every service call.
|
|
19
|
-
* @param [options] The parameter options
|
|
20
|
-
*/
|
|
21
|
-
constructor(credentials: msRest.ServiceClientCredentials | TokenCredential, subscriptionId: string, options?: Models.ContainerInstanceManagementClientOptions);
|
|
22
|
-
}
|
|
23
|
-
//# sourceMappingURL=containerInstanceManagementClientContext.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containerInstanceManagementClientContext.d.ts","sourceRoot":"","sources":["../src/containerInstanceManagementClientContext.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,UAAU,CAAC;AACnC,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AACvD,OAAO,EAAE,eAAe,EAAE,MAAM,kBAAkB,CAAC;AAKnD,qBAAa,wCAAyC,SAAQ,WAAW,CAAC,kBAAkB;IAC1F,WAAW,EAAE,MAAM,CAAC,wBAAwB,GAAG,eAAe,CAAC;IAC/D,cAAc,EAAE,MAAM,CAAC;IACvB,UAAU,CAAC,EAAE,MAAM,CAAC;IAEpB;;;;;;;;;;;OAWG;gBACS,WAAW,EAAE,MAAM,CAAC,wBAAwB,GAAG,eAAe,EAAE,cAAc,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,wCAAwC;CAiC9J"}
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
7
|
-
* regenerated.
|
|
8
|
-
*/
|
|
9
|
-
import { __extends } from "tslib";
|
|
10
|
-
import * as msRestAzure from "@azure/ms-rest-azure-js";
|
|
11
|
-
var packageName = "@azure/arm-containerinstance";
|
|
12
|
-
var packageVersion = "7.1.0";
|
|
13
|
-
var ContainerInstanceManagementClientContext = /** @class */ (function (_super) {
|
|
14
|
-
__extends(ContainerInstanceManagementClientContext, _super);
|
|
15
|
-
/**
|
|
16
|
-
* Initializes a new instance of the ContainerInstanceManagementClient class.
|
|
17
|
-
* @param credentials Credentials needed for the client to connect to Azure. Credentials
|
|
18
|
-
* implementing the TokenCredential interface from the @azure/identity package are recommended. For
|
|
19
|
-
* more information about these credentials, see
|
|
20
|
-
* {@link https://www.npmjs.com/package/@azure/identity}. Credentials implementing the
|
|
21
|
-
* ServiceClientCredentials interface from the older packages @azure/ms-rest-nodeauth and
|
|
22
|
-
* @azure/ms-rest-browserauth are also supported.
|
|
23
|
-
* @param subscriptionId Subscription credentials which uniquely identify Microsoft Azure
|
|
24
|
-
* subscription. The subscription ID forms part of the URI for every service call.
|
|
25
|
-
* @param [options] The parameter options
|
|
26
|
-
*/
|
|
27
|
-
function ContainerInstanceManagementClientContext(credentials, subscriptionId, options) {
|
|
28
|
-
var _this = this;
|
|
29
|
-
if (credentials == undefined) {
|
|
30
|
-
throw new Error('\'credentials\' cannot be null.');
|
|
31
|
-
}
|
|
32
|
-
if (subscriptionId == undefined) {
|
|
33
|
-
throw new Error('\'subscriptionId\' cannot be null.');
|
|
34
|
-
}
|
|
35
|
-
if (!options) {
|
|
36
|
-
options = {};
|
|
37
|
-
}
|
|
38
|
-
if (!options.userAgent) {
|
|
39
|
-
var defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
|
|
40
|
-
options.userAgent = packageName + "/" + packageVersion + " " + defaultUserAgent;
|
|
41
|
-
}
|
|
42
|
-
_this = _super.call(this, credentials, options) || this;
|
|
43
|
-
_this.apiVersion = '2021-09-01';
|
|
44
|
-
_this.acceptLanguage = 'en-US';
|
|
45
|
-
_this.longRunningOperationRetryTimeout = 30;
|
|
46
|
-
_this.baseUri = options.baseUri || _this.baseUri || "https://management.azure.com";
|
|
47
|
-
_this.requestContentType = "application/json; charset=utf-8";
|
|
48
|
-
_this.credentials = credentials;
|
|
49
|
-
_this.subscriptionId = subscriptionId;
|
|
50
|
-
if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
|
|
51
|
-
_this.acceptLanguage = options.acceptLanguage;
|
|
52
|
-
}
|
|
53
|
-
if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
|
|
54
|
-
_this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
|
|
55
|
-
}
|
|
56
|
-
return _this;
|
|
57
|
-
}
|
|
58
|
-
return ContainerInstanceManagementClientContext;
|
|
59
|
-
}(msRestAzure.AzureServiceClient));
|
|
60
|
-
export { ContainerInstanceManagementClientContext };
|
|
61
|
-
//# sourceMappingURL=containerInstanceManagementClientContext.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containerInstanceManagementClientContext.js","sourceRoot":"","sources":["../src/containerInstanceManagementClientContext.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;;AAIH,OAAO,KAAK,WAAW,MAAM,yBAAyB,CAAC;AAGvD,IAAM,WAAW,GAAG,8BAA8B,CAAC;AACnD,IAAM,cAAc,GAAG,OAAO,CAAC;AAE/B;IAA8D,4DAA8B;IAK1F;;;;;;;;;;;OAWG;IACH,kDAAY,WAA8D,EAAE,cAAsB,EAAE,OAAyD;QAA7J,iBAgCC;QA/BC,IAAI,WAAW,IAAI,SAAS,EAAE;YAC5B,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;SACpD;QACD,IAAI,cAAc,IAAI,SAAS,EAAE;YAC/B,MAAM,IAAI,KAAK,CAAC,oCAAoC,CAAC,CAAC;SACvD;QAED,IAAI,CAAC,OAAO,EAAE;YACZ,OAAO,GAAG,EAAE,CAAC;SACd;QACD,IAAI,CAAC,OAAO,CAAC,SAAS,EAAE;YACtB,IAAM,gBAAgB,GAAG,WAAW,CAAC,wBAAwB,EAAE,CAAC;YAChE,OAAO,CAAC,SAAS,GAAM,WAAW,SAAI,cAAc,SAAI,gBAAkB,CAAC;SAC5E;QAED,QAAA,kBAAM,WAAW,EAAE,OAAO,CAAC,SAAC;QAE5B,KAAI,CAAC,UAAU,GAAG,YAAY,CAAC;QAC/B,KAAI,CAAC,cAAc,GAAG,OAAO,CAAC;QAC9B,KAAI,CAAC,gCAAgC,GAAG,EAAE,CAAC;QAC3C,KAAI,CAAC,OAAO,GAAG,OAAO,CAAC,OAAO,IAAI,KAAI,CAAC,OAAO,IAAI,8BAA8B,CAAC;QACjF,KAAI,CAAC,kBAAkB,GAAG,iCAAiC,CAAC;QAC5D,KAAI,CAAC,WAAW,GAAG,WAAW,CAAC;QAC/B,KAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QAErC,IAAI,OAAO,CAAC,cAAc,KAAK,IAAI,IAAI,OAAO,CAAC,cAAc,KAAK,SAAS,EAAE;YAC3E,KAAI,CAAC,cAAc,GAAG,OAAO,CAAC,cAAc,CAAC;SAC9C;QACD,IAAI,OAAO,CAAC,gCAAgC,KAAK,IAAI,IAAI,OAAO,CAAC,gCAAgC,KAAK,SAAS,EAAE;YAC/G,KAAI,CAAC,gCAAgC,GAAG,OAAO,CAAC,gCAAgC,CAAC;SAClF;;IACH,CAAC;IACH,+CAAC;AAAD,CAAC,AAlDD,CAA8D,WAAW,CAAC,kBAAkB,GAkD3F"}
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
export { AzureFileVolume, BaseResource, CloudError, Container, ContainerExec, ContainerGroup, ContainerGroupDiagnostics, ContainerGroupIdentity, ContainerGroupIdentityUserAssignedIdentitiesValue, ContainerGroupListResult, ContainerGroupPropertiesInstanceView, ContainerGroupSubnetId, ContainerHttpGet, ContainerPort, ContainerProbe, ContainerPropertiesInstanceView, ContainerState, DnsConfiguration, EncryptionProperties, EnvironmentVariable, Event, GitRepoVolume, GpuResource, HttpHeader, ImageRegistryCredential, InitContainerDefinition, InitContainerPropertiesDefinitionInstanceView, IpAddress, LogAnalytics, Port, Resource, ResourceLimits, ResourceRequests, ResourceRequirements, Volume, VolumeMount } from "../models/mappers";
|
|
2
|
-
//# sourceMappingURL=containerGroupsMappers.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containerGroupsMappers.d.ts","sourceRoot":"","sources":["../../src/models/containerGroupsMappers.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,eAAe,EACf,YAAY,EACZ,UAAU,EACV,SAAS,EACT,aAAa,EACb,cAAc,EACd,yBAAyB,EACzB,sBAAsB,EACtB,iDAAiD,EACjD,wBAAwB,EACxB,oCAAoC,EACpC,sBAAsB,EACtB,gBAAgB,EAChB,aAAa,EACb,cAAc,EACd,+BAA+B,EAC/B,cAAc,EACd,gBAAgB,EAChB,oBAAoB,EACpB,mBAAmB,EACnB,KAAK,EACL,aAAa,EACb,WAAW,EACX,UAAU,EACV,uBAAuB,EACvB,uBAAuB,EACvB,6CAA6C,EAC7C,SAAS,EACT,YAAY,EACZ,IAAI,EACJ,QAAQ,EACR,cAAc,EACd,gBAAgB,EAChB,oBAAoB,EACpB,MAAM,EACN,WAAW,EACZ,MAAM,mBAAmB,CAAC"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
-
*/
|
|
8
|
-
export { AzureFileVolume, BaseResource, CloudError, Container, ContainerExec, ContainerGroup, ContainerGroupDiagnostics, ContainerGroupIdentity, ContainerGroupIdentityUserAssignedIdentitiesValue, ContainerGroupListResult, ContainerGroupPropertiesInstanceView, ContainerGroupSubnetId, ContainerHttpGet, ContainerPort, ContainerProbe, ContainerPropertiesInstanceView, ContainerState, DnsConfiguration, EncryptionProperties, EnvironmentVariable, Event, GitRepoVolume, GpuResource, HttpHeader, ImageRegistryCredential, InitContainerDefinition, InitContainerPropertiesDefinitionInstanceView, IpAddress, LogAnalytics, Port, Resource, ResourceLimits, ResourceRequests, ResourceRequirements, Volume, VolumeMount } from "../models/mappers";
|
|
9
|
-
//# sourceMappingURL=containerGroupsMappers.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containerGroupsMappers.js","sourceRoot":"","sources":["../../src/models/containerGroupsMappers.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EACL,eAAe,EACf,YAAY,EACZ,UAAU,EACV,SAAS,EACT,aAAa,EACb,cAAc,EACd,yBAAyB,EACzB,sBAAsB,EACtB,iDAAiD,EACjD,wBAAwB,EACxB,oCAAoC,EACpC,sBAAsB,EACtB,gBAAgB,EAChB,aAAa,EACb,cAAc,EACd,+BAA+B,EAC/B,cAAc,EACd,gBAAgB,EAChB,oBAAoB,EACpB,mBAAmB,EACnB,KAAK,EACL,aAAa,EACb,WAAW,EACX,UAAU,EACV,uBAAuB,EACvB,uBAAuB,EACvB,6CAA6C,EAC7C,SAAS,EACT,YAAY,EACZ,IAAI,EACJ,QAAQ,EACR,cAAc,EACd,gBAAgB,EAChB,oBAAoB,EACpB,MAAM,EACN,WAAW,EACZ,MAAM,mBAAmB,CAAC"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containersMappers.d.ts","sourceRoot":"","sources":["../../src/models/containersMappers.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,UAAU,EACV,uBAAuB,EACvB,oBAAoB,EACpB,gCAAgC,EAChC,qBAAqB,EACrB,IAAI,EACL,MAAM,mBAAmB,CAAC"}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
-
*/
|
|
8
|
-
export { CloudError, ContainerAttachResponse, ContainerExecRequest, ContainerExecRequestTerminalSize, ContainerExecResponse, Logs } from "../models/mappers";
|
|
9
|
-
//# sourceMappingURL=containersMappers.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"containersMappers.js","sourceRoot":"","sources":["../../src/models/containersMappers.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EACL,UAAU,EACV,uBAAuB,EACvB,oBAAoB,EACpB,gCAAgC,EAChC,qBAAqB,EACrB,IAAI,EACL,MAAM,mBAAmB,CAAC"}
|