pulumi-azure 6.27.2__py3-none-any.whl → 6.28.0a1759516578__py3-none-any.whl
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.
Potentially problematic release.
This version of pulumi-azure might be problematic. Click here for more details.
- pulumi_azure/__init__.py +8 -0
- pulumi_azure/apimanagement/__init__.py +1 -0
- pulumi_azure/apimanagement/workspace_policy.py +350 -0
- pulumi_azure/cognitive/_inputs.py +70 -6
- pulumi_azure/cognitive/account.py +139 -23
- pulumi_azure/cognitive/outputs.py +59 -4
- pulumi_azure/containerapp/_inputs.py +48 -48
- pulumi_azure/containerapp/outputs.py +108 -108
- pulumi_azure/management/group_policy_remediation.py +7 -7
- pulumi_azure/paloalto/local_rulestack_rule.py +7 -7
- pulumi_azure/pulumi-plugin.json +1 -1
- pulumi_azure/storage/queue.py +2 -2
- pulumi_azure/streamanalytics/_inputs.py +23 -22
- pulumi_azure/streamanalytics/outputs.py +17 -16
- {pulumi_azure-6.27.2.dist-info → pulumi_azure-6.28.0a1759516578.dist-info}/METADATA +1 -1
- {pulumi_azure-6.27.2.dist-info → pulumi_azure-6.28.0a1759516578.dist-info}/RECORD +18 -17
- {pulumi_azure-6.27.2.dist-info → pulumi_azure-6.28.0a1759516578.dist-info}/WHEEL +0 -0
- {pulumi_azure-6.27.2.dist-info → pulumi_azure-6.28.0a1759516578.dist-info}/top_level.txt +0 -0
|
@@ -1226,13 +1226,13 @@ class AppTemplateContainer(dict):
|
|
|
1226
1226
|
startup_probes: Optional[Sequence['outputs.AppTemplateContainerStartupProbe']] = None,
|
|
1227
1227
|
volume_mounts: Optional[Sequence['outputs.AppTemplateContainerVolumeMount']] = None):
|
|
1228
1228
|
"""
|
|
1229
|
-
:param _builtins.float cpu: The amount of vCPU to allocate to the container.
|
|
1229
|
+
:param _builtins.float cpu: The amount of vCPU to allocate to the container.
|
|
1230
1230
|
|
|
1231
|
-
> **Note:** `cpu` and `memory` must
|
|
1231
|
+
> **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
1232
1232
|
:param _builtins.str image: The image to use to create the container.
|
|
1233
|
-
:param _builtins.str memory: The amount of memory to allocate to the container.
|
|
1233
|
+
:param _builtins.str memory: The amount of memory to allocate to the container.
|
|
1234
1234
|
|
|
1235
|
-
> **Note:** `cpu` and `memory` must
|
|
1235
|
+
> **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
1236
1236
|
:param _builtins.str name: The name of the container
|
|
1237
1237
|
:param Sequence[_builtins.str] args: A list of extra arguments to pass to the container.
|
|
1238
1238
|
:param Sequence[_builtins.str] commands: A command to pass to the container to override the default. This is provided as a list of command line elements without spaces.
|
|
@@ -1270,9 +1270,9 @@ class AppTemplateContainer(dict):
|
|
|
1270
1270
|
@pulumi.getter
|
|
1271
1271
|
def cpu(self) -> _builtins.float:
|
|
1272
1272
|
"""
|
|
1273
|
-
The amount of vCPU to allocate to the container.
|
|
1273
|
+
The amount of vCPU to allocate to the container.
|
|
1274
1274
|
|
|
1275
|
-
> **Note:** `cpu` and `memory` must
|
|
1275
|
+
> **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
1276
1276
|
"""
|
|
1277
1277
|
return pulumi.get(self, "cpu")
|
|
1278
1278
|
|
|
@@ -1288,9 +1288,9 @@ class AppTemplateContainer(dict):
|
|
|
1288
1288
|
@pulumi.getter
|
|
1289
1289
|
def memory(self) -> _builtins.str:
|
|
1290
1290
|
"""
|
|
1291
|
-
The amount of memory to allocate to the container.
|
|
1291
|
+
The amount of memory to allocate to the container.
|
|
1292
1292
|
|
|
1293
|
-
> **Note:** `cpu` and `memory` must
|
|
1293
|
+
> **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
1294
1294
|
"""
|
|
1295
1295
|
return pulumi.get(self, "memory")
|
|
1296
1296
|
|
|
@@ -2281,16 +2281,16 @@ class AppTemplateInitContainer(dict):
|
|
|
2281
2281
|
:param _builtins.str name: The name of the container
|
|
2282
2282
|
:param Sequence[_builtins.str] args: A list of extra arguments to pass to the container.
|
|
2283
2283
|
:param Sequence[_builtins.str] commands: A command to pass to the container to override the default. This is provided as a list of command line elements without spaces.
|
|
2284
|
-
:param _builtins.float cpu: The amount of vCPU to allocate to the container.
|
|
2284
|
+
:param _builtins.float cpu: The amount of vCPU to allocate to the container.
|
|
2285
2285
|
|
|
2286
|
-
> **Note:** `cpu` and `memory` must
|
|
2286
|
+
> **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
2287
2287
|
:param Sequence['AppTemplateInitContainerEnvArgs'] envs: One or more `env` blocks as detailed below.
|
|
2288
2288
|
:param _builtins.str ephemeral_storage: The amount of ephemeral storage available to the Container App.
|
|
2289
2289
|
|
|
2290
2290
|
> **Note:** `ephemeral_storage` is currently in preview and not configurable at this time.
|
|
2291
|
-
:param _builtins.str memory: The amount of memory to allocate to the container.
|
|
2291
|
+
:param _builtins.str memory: The amount of memory to allocate to the container.
|
|
2292
2292
|
|
|
2293
|
-
> **Note:** `cpu` and `memory` must
|
|
2293
|
+
> **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
2294
2294
|
:param Sequence['AppTemplateInitContainerVolumeMountArgs'] volume_mounts: A `volume_mounts` block as detailed below.
|
|
2295
2295
|
"""
|
|
2296
2296
|
pulumi.set(__self__, "image", image)
|
|
@@ -2346,9 +2346,9 @@ class AppTemplateInitContainer(dict):
|
|
|
2346
2346
|
@pulumi.getter
|
|
2347
2347
|
def cpu(self) -> Optional[_builtins.float]:
|
|
2348
2348
|
"""
|
|
2349
|
-
The amount of vCPU to allocate to the container.
|
|
2349
|
+
The amount of vCPU to allocate to the container.
|
|
2350
2350
|
|
|
2351
|
-
> **Note:** `cpu` and `memory` must
|
|
2351
|
+
> **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
2352
2352
|
"""
|
|
2353
2353
|
return pulumi.get(self, "cpu")
|
|
2354
2354
|
|
|
@@ -2374,9 +2374,9 @@ class AppTemplateInitContainer(dict):
|
|
|
2374
2374
|
@pulumi.getter
|
|
2375
2375
|
def memory(self) -> Optional[_builtins.str]:
|
|
2376
2376
|
"""
|
|
2377
|
-
The amount of memory to allocate to the container.
|
|
2377
|
+
The amount of memory to allocate to the container.
|
|
2378
2378
|
|
|
2379
|
-
> **Note:** `cpu` and `memory` must
|
|
2379
|
+
> **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
2380
2380
|
"""
|
|
2381
2381
|
return pulumi.get(self, "memory")
|
|
2382
2382
|
|
|
@@ -3662,13 +3662,13 @@ class JobTemplateContainer(dict):
|
|
|
3662
3662
|
startup_probes: Optional[Sequence['outputs.JobTemplateContainerStartupProbe']] = None,
|
|
3663
3663
|
volume_mounts: Optional[Sequence['outputs.JobTemplateContainerVolumeMount']] = None):
|
|
3664
3664
|
"""
|
|
3665
|
-
:param _builtins.float cpu: The amount of vCPU to allocate to the container.
|
|
3665
|
+
:param _builtins.float cpu: The amount of vCPU to allocate to the container.
|
|
3666
3666
|
|
|
3667
|
-
> **Note:** `cpu` and `memory` must
|
|
3667
|
+
> **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
3668
3668
|
:param _builtins.str image: The image to use to create the container.
|
|
3669
|
-
:param _builtins.str memory: The amount of memory to allocate to the container.
|
|
3669
|
+
:param _builtins.str memory: The amount of memory to allocate to the container.
|
|
3670
3670
|
|
|
3671
|
-
> **Note:** `cpu` and `memory` must
|
|
3671
|
+
> **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
3672
3672
|
:param _builtins.str name: The name of the container.
|
|
3673
3673
|
:param Sequence[_builtins.str] args: A list of extra arguments to pass to the container.
|
|
3674
3674
|
:param Sequence[_builtins.str] commands: A command to pass to the container to override the default. This is provided as a list of command line elements without spaces.
|
|
@@ -3706,9 +3706,9 @@ class JobTemplateContainer(dict):
|
|
|
3706
3706
|
@pulumi.getter
|
|
3707
3707
|
def cpu(self) -> _builtins.float:
|
|
3708
3708
|
"""
|
|
3709
|
-
The amount of vCPU to allocate to the container.
|
|
3709
|
+
The amount of vCPU to allocate to the container.
|
|
3710
3710
|
|
|
3711
|
-
> **Note:** `cpu` and `memory` must
|
|
3711
|
+
> **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
3712
3712
|
"""
|
|
3713
3713
|
return pulumi.get(self, "cpu")
|
|
3714
3714
|
|
|
@@ -3724,9 +3724,9 @@ class JobTemplateContainer(dict):
|
|
|
3724
3724
|
@pulumi.getter
|
|
3725
3725
|
def memory(self) -> _builtins.str:
|
|
3726
3726
|
"""
|
|
3727
|
-
The amount of memory to allocate to the container.
|
|
3727
|
+
The amount of memory to allocate to the container.
|
|
3728
3728
|
|
|
3729
|
-
> **Note:** `cpu` and `memory` must
|
|
3729
|
+
> **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
3730
3730
|
"""
|
|
3731
3731
|
return pulumi.get(self, "memory")
|
|
3732
3732
|
|
|
@@ -4489,16 +4489,16 @@ class JobTemplateInitContainer(dict):
|
|
|
4489
4489
|
:param _builtins.str name: The name of the container.
|
|
4490
4490
|
:param Sequence[_builtins.str] args: A list of extra arguments to pass to the container.
|
|
4491
4491
|
:param Sequence[_builtins.str] commands: A command to pass to the container to override the default. This is provided as a list of command line elements without spaces.
|
|
4492
|
-
:param _builtins.float cpu: The amount of vCPU to allocate to the container.
|
|
4492
|
+
:param _builtins.float cpu: The amount of vCPU to allocate to the container.
|
|
4493
4493
|
|
|
4494
|
-
> **Note:** `cpu` and `memory` must
|
|
4494
|
+
> **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
4495
4495
|
:param Sequence['JobTemplateInitContainerEnvArgs'] envs: One or more `env` blocks as detailed below.
|
|
4496
4496
|
:param _builtins.str ephemeral_storage: The amount of ephemeral storage available to the Container App.
|
|
4497
4497
|
|
|
4498
4498
|
> **Note:** `ephemeral_storage` is currently in preview and not configurable at this time.
|
|
4499
|
-
:param _builtins.str memory: The amount of memory to allocate to the container.
|
|
4499
|
+
:param _builtins.str memory: The amount of memory to allocate to the container.
|
|
4500
4500
|
|
|
4501
|
-
> **Note:** `cpu` and `memory` must
|
|
4501
|
+
> **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
4502
4502
|
:param Sequence['JobTemplateInitContainerVolumeMountArgs'] volume_mounts: A `volume_mounts` block as detailed below.
|
|
4503
4503
|
"""
|
|
4504
4504
|
pulumi.set(__self__, "image", image)
|
|
@@ -4554,9 +4554,9 @@ class JobTemplateInitContainer(dict):
|
|
|
4554
4554
|
@pulumi.getter
|
|
4555
4555
|
def cpu(self) -> Optional[_builtins.float]:
|
|
4556
4556
|
"""
|
|
4557
|
-
The amount of vCPU to allocate to the container.
|
|
4557
|
+
The amount of vCPU to allocate to the container.
|
|
4558
4558
|
|
|
4559
|
-
> **Note:** `cpu` and `memory` must
|
|
4559
|
+
> **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
4560
4560
|
"""
|
|
4561
4561
|
return pulumi.get(self, "cpu")
|
|
4562
4562
|
|
|
@@ -4582,9 +4582,9 @@ class JobTemplateInitContainer(dict):
|
|
|
4582
4582
|
@pulumi.getter
|
|
4583
4583
|
def memory(self) -> Optional[_builtins.str]:
|
|
4584
4584
|
"""
|
|
4585
|
-
The amount of memory to allocate to the container.
|
|
4585
|
+
The amount of memory to allocate to the container.
|
|
4586
4586
|
|
|
4587
|
-
> **Note:** `cpu` and `memory` must
|
|
4587
|
+
> **Note:** When using a Consumption plan, the `cpu` and `memory` properties must add up to one of the combinations found in the Microsoft provided documentation, for more information see [vCPU and memory allocation requirements](https://learn.microsoft.com/azure/container-apps/containers#allocations)
|
|
4588
4588
|
"""
|
|
4589
4589
|
return pulumi.get(self, "memory")
|
|
4590
4590
|
|
|
@@ -4798,7 +4798,7 @@ class GetAppDaprResult(dict):
|
|
|
4798
4798
|
"""
|
|
4799
4799
|
:param _builtins.str app_id: The Dapr Application Identifier.
|
|
4800
4800
|
:param _builtins.int app_port: The port which the application is listening on. This is the same as the `ingress` port.
|
|
4801
|
-
:param _builtins.str app_protocol: The protocol for the app.
|
|
4801
|
+
:param _builtins.str app_protocol: The protocol for the app.
|
|
4802
4802
|
"""
|
|
4803
4803
|
pulumi.set(__self__, "app_id", app_id)
|
|
4804
4804
|
pulumi.set(__self__, "app_port", app_port)
|
|
@@ -4824,7 +4824,7 @@ class GetAppDaprResult(dict):
|
|
|
4824
4824
|
@pulumi.getter(name="appProtocol")
|
|
4825
4825
|
def app_protocol(self) -> _builtins.str:
|
|
4826
4826
|
"""
|
|
4827
|
-
The protocol for the app.
|
|
4827
|
+
The protocol for the app.
|
|
4828
4828
|
"""
|
|
4829
4829
|
return pulumi.get(self, "app_protocol")
|
|
4830
4830
|
|
|
@@ -4837,8 +4837,8 @@ class GetAppIdentityResult(dict):
|
|
|
4837
4837
|
tenant_id: _builtins.str,
|
|
4838
4838
|
type: _builtins.str):
|
|
4839
4839
|
"""
|
|
4840
|
-
:param Sequence[_builtins.str] identity_ids: A list of one or more Resource IDs for User Assigned Managed identities to assign.
|
|
4841
|
-
:param _builtins.str type: The type of managed identity to assign.
|
|
4840
|
+
:param Sequence[_builtins.str] identity_ids: A list of one or more Resource IDs for User Assigned Managed identities to assign.
|
|
4841
|
+
:param _builtins.str type: The type of managed identity to assign.
|
|
4842
4842
|
"""
|
|
4843
4843
|
pulumi.set(__self__, "identity_ids", identity_ids)
|
|
4844
4844
|
pulumi.set(__self__, "principal_id", principal_id)
|
|
@@ -4849,7 +4849,7 @@ class GetAppIdentityResult(dict):
|
|
|
4849
4849
|
@pulumi.getter(name="identityIds")
|
|
4850
4850
|
def identity_ids(self) -> Sequence[_builtins.str]:
|
|
4851
4851
|
"""
|
|
4852
|
-
A list of one or more Resource IDs for User Assigned Managed identities to assign.
|
|
4852
|
+
A list of one or more Resource IDs for User Assigned Managed identities to assign.
|
|
4853
4853
|
"""
|
|
4854
4854
|
return pulumi.get(self, "identity_ids")
|
|
4855
4855
|
|
|
@@ -4867,7 +4867,7 @@ class GetAppIdentityResult(dict):
|
|
|
4867
4867
|
@pulumi.getter
|
|
4868
4868
|
def type(self) -> _builtins.str:
|
|
4869
4869
|
"""
|
|
4870
|
-
The type of managed identity to assign.
|
|
4870
|
+
The type of managed identity to assign.
|
|
4871
4871
|
"""
|
|
4872
4872
|
return pulumi.get(self, "type")
|
|
4873
4873
|
|
|
@@ -4897,7 +4897,7 @@ class GetAppIngressResult(dict):
|
|
|
4897
4897
|
:param Sequence['GetAppIngressIpSecurityRestrictionArgs'] ip_security_restrictions: One or more `ip_security_restriction` blocks for IP-filtering rules as defined below.
|
|
4898
4898
|
:param _builtins.int target_port: The target port on the container for the Ingress traffic.
|
|
4899
4899
|
:param Sequence['GetAppIngressTrafficWeightArgs'] traffic_weights: A `traffic_weight` block as detailed below.
|
|
4900
|
-
:param _builtins.str transport: The transport method for the Ingress.
|
|
4900
|
+
:param _builtins.str transport: The transport method for the Ingress.
|
|
4901
4901
|
"""
|
|
4902
4902
|
pulumi.set(__self__, "allow_insecure_connections", allow_insecure_connections)
|
|
4903
4903
|
pulumi.set(__self__, "client_certificate_mode", client_certificate_mode)
|
|
@@ -4995,7 +4995,7 @@ class GetAppIngressResult(dict):
|
|
|
4995
4995
|
@pulumi.getter
|
|
4996
4996
|
def transport(self) -> _builtins.str:
|
|
4997
4997
|
"""
|
|
4998
|
-
The transport method for the Ingress.
|
|
4998
|
+
The transport method for the Ingress.
|
|
4999
4999
|
"""
|
|
5000
5000
|
return pulumi.get(self, "transport")
|
|
5001
5001
|
|
|
@@ -5080,7 +5080,7 @@ class GetAppIngressCustomDomainResult(dict):
|
|
|
5080
5080
|
certificate_id: _builtins.str,
|
|
5081
5081
|
name: _builtins.str):
|
|
5082
5082
|
"""
|
|
5083
|
-
:param _builtins.str certificate_binding_type: The Binding type.
|
|
5083
|
+
:param _builtins.str certificate_binding_type: The Binding type.
|
|
5084
5084
|
:param _builtins.str certificate_id: The ID of the Container App Environment Certificate.
|
|
5085
5085
|
:param _builtins.str name: The name of the Container App.
|
|
5086
5086
|
"""
|
|
@@ -5092,7 +5092,7 @@ class GetAppIngressCustomDomainResult(dict):
|
|
|
5092
5092
|
@pulumi.getter(name="certificateBindingType")
|
|
5093
5093
|
def certificate_binding_type(self) -> _builtins.str:
|
|
5094
5094
|
"""
|
|
5095
|
-
The Binding type.
|
|
5095
|
+
The Binding type.
|
|
5096
5096
|
"""
|
|
5097
5097
|
return pulumi.get(self, "certificate_binding_type")
|
|
5098
5098
|
|
|
@@ -5224,9 +5224,9 @@ class GetAppRegistryResult(dict):
|
|
|
5224
5224
|
username: _builtins.str):
|
|
5225
5225
|
"""
|
|
5226
5226
|
:param _builtins.str identity: Resource ID for the User Assigned Managed identity to use when pulling from the Container Registry.
|
|
5227
|
-
:param _builtins.str password_secret_name: The name of the Secret Reference containing the password value for
|
|
5227
|
+
:param _builtins.str password_secret_name: The name of the Secret Reference containing the password value for the user on the Container Registry.
|
|
5228
5228
|
:param _builtins.str server: The hostname for the Container Registry.
|
|
5229
|
-
:param _builtins.str username: The username
|
|
5229
|
+
:param _builtins.str username: The username used for this Container Registry.
|
|
5230
5230
|
"""
|
|
5231
5231
|
pulumi.set(__self__, "identity", identity)
|
|
5232
5232
|
pulumi.set(__self__, "password_secret_name", password_secret_name)
|
|
@@ -5245,7 +5245,7 @@ class GetAppRegistryResult(dict):
|
|
|
5245
5245
|
@pulumi.getter(name="passwordSecretName")
|
|
5246
5246
|
def password_secret_name(self) -> _builtins.str:
|
|
5247
5247
|
"""
|
|
5248
|
-
The name of the Secret Reference containing the password value for
|
|
5248
|
+
The name of the Secret Reference containing the password value for the user on the Container Registry.
|
|
5249
5249
|
"""
|
|
5250
5250
|
return pulumi.get(self, "password_secret_name")
|
|
5251
5251
|
|
|
@@ -5261,7 +5261,7 @@ class GetAppRegistryResult(dict):
|
|
|
5261
5261
|
@pulumi.getter
|
|
5262
5262
|
def username(self) -> _builtins.str:
|
|
5263
5263
|
"""
|
|
5264
|
-
The username
|
|
5264
|
+
The username used for this Container Registry.
|
|
5265
5265
|
"""
|
|
5266
5266
|
return pulumi.get(self, "username")
|
|
5267
5267
|
|
|
@@ -5510,14 +5510,14 @@ class GetAppTemplateContainerResult(dict):
|
|
|
5510
5510
|
startup_probes: Sequence['outputs.GetAppTemplateContainerStartupProbeResult'],
|
|
5511
5511
|
volume_mounts: Sequence['outputs.GetAppTemplateContainerVolumeMountResult']):
|
|
5512
5512
|
"""
|
|
5513
|
-
:param Sequence[_builtins.str] args: A list of extra arguments
|
|
5514
|
-
:param Sequence[_builtins.str] commands: A command
|
|
5515
|
-
:param _builtins.float cpu: The amount of vCPU
|
|
5513
|
+
:param Sequence[_builtins.str] args: A list of extra arguments passed to the container.
|
|
5514
|
+
:param Sequence[_builtins.str] commands: A command passed to the container to override the default. This is provided as a list of command line elements without spaces.
|
|
5515
|
+
:param _builtins.float cpu: The amount of vCPU allocated to the container.
|
|
5516
5516
|
:param Sequence['GetAppTemplateContainerEnvArgs'] envs: One or more `env` blocks as detailed below.
|
|
5517
5517
|
:param _builtins.str ephemeral_storage: The amount of ephemeral storage available to the Container App.
|
|
5518
5518
|
:param _builtins.str image: The image to use to create the container.
|
|
5519
5519
|
:param Sequence['GetAppTemplateContainerLivenessProbeArgs'] liveness_probes: A `liveness_probe` block as detailed below.
|
|
5520
|
-
:param _builtins.str memory: The amount of memory
|
|
5520
|
+
:param _builtins.str memory: The amount of memory allocated to the container.
|
|
5521
5521
|
:param _builtins.str name: The name of the Container App.
|
|
5522
5522
|
:param Sequence['GetAppTemplateContainerReadinessProbeArgs'] readiness_probes: A `readiness_probe` block as detailed below.
|
|
5523
5523
|
:param Sequence['GetAppTemplateContainerStartupProbeArgs'] startup_probes: A `startup_probe` block as detailed below.
|
|
@@ -5540,7 +5540,7 @@ class GetAppTemplateContainerResult(dict):
|
|
|
5540
5540
|
@pulumi.getter
|
|
5541
5541
|
def args(self) -> Sequence[_builtins.str]:
|
|
5542
5542
|
"""
|
|
5543
|
-
A list of extra arguments
|
|
5543
|
+
A list of extra arguments passed to the container.
|
|
5544
5544
|
"""
|
|
5545
5545
|
return pulumi.get(self, "args")
|
|
5546
5546
|
|
|
@@ -5548,7 +5548,7 @@ class GetAppTemplateContainerResult(dict):
|
|
|
5548
5548
|
@pulumi.getter
|
|
5549
5549
|
def commands(self) -> Sequence[_builtins.str]:
|
|
5550
5550
|
"""
|
|
5551
|
-
A command
|
|
5551
|
+
A command passed to the container to override the default. This is provided as a list of command line elements without spaces.
|
|
5552
5552
|
"""
|
|
5553
5553
|
return pulumi.get(self, "commands")
|
|
5554
5554
|
|
|
@@ -5556,7 +5556,7 @@ class GetAppTemplateContainerResult(dict):
|
|
|
5556
5556
|
@pulumi.getter
|
|
5557
5557
|
def cpu(self) -> _builtins.float:
|
|
5558
5558
|
"""
|
|
5559
|
-
The amount of vCPU
|
|
5559
|
+
The amount of vCPU allocated to the container.
|
|
5560
5560
|
"""
|
|
5561
5561
|
return pulumi.get(self, "cpu")
|
|
5562
5562
|
|
|
@@ -5596,7 +5596,7 @@ class GetAppTemplateContainerResult(dict):
|
|
|
5596
5596
|
@pulumi.getter
|
|
5597
5597
|
def memory(self) -> _builtins.str:
|
|
5598
5598
|
"""
|
|
5599
|
-
The amount of memory
|
|
5599
|
+
The amount of memory allocated to the container.
|
|
5600
5600
|
"""
|
|
5601
5601
|
return pulumi.get(self, "memory")
|
|
5602
5602
|
|
|
@@ -5687,16 +5687,16 @@ class GetAppTemplateContainerLivenessProbeResult(dict):
|
|
|
5687
5687
|
timeout: _builtins.int,
|
|
5688
5688
|
transport: _builtins.str):
|
|
5689
5689
|
"""
|
|
5690
|
-
:param _builtins.int failure_count_threshold: The number of consecutive failures required to consider this probe as failed.
|
|
5690
|
+
:param _builtins.int failure_count_threshold: The number of consecutive failures required to consider this probe as failed.
|
|
5691
5691
|
:param Sequence['GetAppTemplateContainerLivenessProbeHeaderArgs'] headers: A `header` block as detailed below.
|
|
5692
|
-
:param _builtins.str host: The value for the host header which should be sent with this probe.
|
|
5693
|
-
:param _builtins.int initial_delay: The number of seconds elapsed after the container has started before the probe is initiated.
|
|
5694
|
-
:param _builtins.int interval_seconds: How often, in seconds, the probe should run.
|
|
5692
|
+
:param _builtins.str host: The value for the host header which should be sent with this probe.
|
|
5693
|
+
:param _builtins.int initial_delay: The number of seconds elapsed after the container has started before the probe is initiated.
|
|
5694
|
+
:param _builtins.int interval_seconds: How often, in seconds, the probe should run.
|
|
5695
5695
|
:param _builtins.str path: The path in the container at which to mount this volume.
|
|
5696
|
-
:param _builtins.int port: The port number on which to connect.
|
|
5696
|
+
:param _builtins.int port: The port number on which to connect.
|
|
5697
5697
|
:param _builtins.int termination_grace_period_seconds: The time in seconds after the container is sent the termination signal before the process if forcibly killed.
|
|
5698
|
-
:param _builtins.int timeout: Time in seconds after which the probe times out.
|
|
5699
|
-
:param _builtins.str transport: The transport method for the Ingress.
|
|
5698
|
+
:param _builtins.int timeout: Time in seconds after which the probe times out.
|
|
5699
|
+
:param _builtins.str transport: The transport method for the Ingress.
|
|
5700
5700
|
"""
|
|
5701
5701
|
pulumi.set(__self__, "failure_count_threshold", failure_count_threshold)
|
|
5702
5702
|
pulumi.set(__self__, "headers", headers)
|
|
@@ -5713,7 +5713,7 @@ class GetAppTemplateContainerLivenessProbeResult(dict):
|
|
|
5713
5713
|
@pulumi.getter(name="failureCountThreshold")
|
|
5714
5714
|
def failure_count_threshold(self) -> _builtins.int:
|
|
5715
5715
|
"""
|
|
5716
|
-
The number of consecutive failures required to consider this probe as failed.
|
|
5716
|
+
The number of consecutive failures required to consider this probe as failed.
|
|
5717
5717
|
"""
|
|
5718
5718
|
return pulumi.get(self, "failure_count_threshold")
|
|
5719
5719
|
|
|
@@ -5729,7 +5729,7 @@ class GetAppTemplateContainerLivenessProbeResult(dict):
|
|
|
5729
5729
|
@pulumi.getter
|
|
5730
5730
|
def host(self) -> _builtins.str:
|
|
5731
5731
|
"""
|
|
5732
|
-
The value for the host header which should be sent with this probe.
|
|
5732
|
+
The value for the host header which should be sent with this probe.
|
|
5733
5733
|
"""
|
|
5734
5734
|
return pulumi.get(self, "host")
|
|
5735
5735
|
|
|
@@ -5737,7 +5737,7 @@ class GetAppTemplateContainerLivenessProbeResult(dict):
|
|
|
5737
5737
|
@pulumi.getter(name="initialDelay")
|
|
5738
5738
|
def initial_delay(self) -> _builtins.int:
|
|
5739
5739
|
"""
|
|
5740
|
-
The number of seconds elapsed after the container has started before the probe is initiated.
|
|
5740
|
+
The number of seconds elapsed after the container has started before the probe is initiated.
|
|
5741
5741
|
"""
|
|
5742
5742
|
return pulumi.get(self, "initial_delay")
|
|
5743
5743
|
|
|
@@ -5745,7 +5745,7 @@ class GetAppTemplateContainerLivenessProbeResult(dict):
|
|
|
5745
5745
|
@pulumi.getter(name="intervalSeconds")
|
|
5746
5746
|
def interval_seconds(self) -> _builtins.int:
|
|
5747
5747
|
"""
|
|
5748
|
-
How often, in seconds, the probe should run.
|
|
5748
|
+
How often, in seconds, the probe should run.
|
|
5749
5749
|
"""
|
|
5750
5750
|
return pulumi.get(self, "interval_seconds")
|
|
5751
5751
|
|
|
@@ -5761,7 +5761,7 @@ class GetAppTemplateContainerLivenessProbeResult(dict):
|
|
|
5761
5761
|
@pulumi.getter
|
|
5762
5762
|
def port(self) -> _builtins.int:
|
|
5763
5763
|
"""
|
|
5764
|
-
The port number on which to connect.
|
|
5764
|
+
The port number on which to connect.
|
|
5765
5765
|
"""
|
|
5766
5766
|
return pulumi.get(self, "port")
|
|
5767
5767
|
|
|
@@ -5777,7 +5777,7 @@ class GetAppTemplateContainerLivenessProbeResult(dict):
|
|
|
5777
5777
|
@pulumi.getter
|
|
5778
5778
|
def timeout(self) -> _builtins.int:
|
|
5779
5779
|
"""
|
|
5780
|
-
Time in seconds after which the probe times out.
|
|
5780
|
+
Time in seconds after which the probe times out.
|
|
5781
5781
|
"""
|
|
5782
5782
|
return pulumi.get(self, "timeout")
|
|
5783
5783
|
|
|
@@ -5785,7 +5785,7 @@ class GetAppTemplateContainerLivenessProbeResult(dict):
|
|
|
5785
5785
|
@pulumi.getter
|
|
5786
5786
|
def transport(self) -> _builtins.str:
|
|
5787
5787
|
"""
|
|
5788
|
-
The transport method for the Ingress.
|
|
5788
|
+
The transport method for the Ingress.
|
|
5789
5789
|
"""
|
|
5790
5790
|
return pulumi.get(self, "transport")
|
|
5791
5791
|
|
|
@@ -5833,16 +5833,16 @@ class GetAppTemplateContainerReadinessProbeResult(dict):
|
|
|
5833
5833
|
timeout: _builtins.int,
|
|
5834
5834
|
transport: _builtins.str):
|
|
5835
5835
|
"""
|
|
5836
|
-
:param _builtins.int failure_count_threshold: The number of consecutive failures required to consider this probe as failed.
|
|
5836
|
+
:param _builtins.int failure_count_threshold: The number of consecutive failures required to consider this probe as failed.
|
|
5837
5837
|
:param Sequence['GetAppTemplateContainerReadinessProbeHeaderArgs'] headers: A `header` block as detailed below.
|
|
5838
|
-
:param _builtins.str host: The value for the host header which should be sent with this probe.
|
|
5839
|
-
:param _builtins.int initial_delay: The number of seconds elapsed after the container has started before the probe is initiated.
|
|
5840
|
-
:param _builtins.int interval_seconds: How often, in seconds, the probe should run.
|
|
5838
|
+
:param _builtins.str host: The value for the host header which should be sent with this probe.
|
|
5839
|
+
:param _builtins.int initial_delay: The number of seconds elapsed after the container has started before the probe is initiated.
|
|
5840
|
+
:param _builtins.int interval_seconds: How often, in seconds, the probe should run.
|
|
5841
5841
|
:param _builtins.str path: The path in the container at which to mount this volume.
|
|
5842
|
-
:param _builtins.int port: The port number on which to connect.
|
|
5843
|
-
:param _builtins.int success_count_threshold: The number of consecutive successful responses required to consider this probe as successful.
|
|
5844
|
-
:param _builtins.int timeout: Time in seconds after which the probe times out.
|
|
5845
|
-
:param _builtins.str transport: The transport method for the Ingress.
|
|
5842
|
+
:param _builtins.int port: The port number on which to connect.
|
|
5843
|
+
:param _builtins.int success_count_threshold: The number of consecutive successful responses required to consider this probe as successful.
|
|
5844
|
+
:param _builtins.int timeout: Time in seconds after which the probe times out.
|
|
5845
|
+
:param _builtins.str transport: The transport method for the Ingress.
|
|
5846
5846
|
"""
|
|
5847
5847
|
pulumi.set(__self__, "failure_count_threshold", failure_count_threshold)
|
|
5848
5848
|
pulumi.set(__self__, "headers", headers)
|
|
@@ -5859,7 +5859,7 @@ class GetAppTemplateContainerReadinessProbeResult(dict):
|
|
|
5859
5859
|
@pulumi.getter(name="failureCountThreshold")
|
|
5860
5860
|
def failure_count_threshold(self) -> _builtins.int:
|
|
5861
5861
|
"""
|
|
5862
|
-
The number of consecutive failures required to consider this probe as failed.
|
|
5862
|
+
The number of consecutive failures required to consider this probe as failed.
|
|
5863
5863
|
"""
|
|
5864
5864
|
return pulumi.get(self, "failure_count_threshold")
|
|
5865
5865
|
|
|
@@ -5875,7 +5875,7 @@ class GetAppTemplateContainerReadinessProbeResult(dict):
|
|
|
5875
5875
|
@pulumi.getter
|
|
5876
5876
|
def host(self) -> _builtins.str:
|
|
5877
5877
|
"""
|
|
5878
|
-
The value for the host header which should be sent with this probe.
|
|
5878
|
+
The value for the host header which should be sent with this probe.
|
|
5879
5879
|
"""
|
|
5880
5880
|
return pulumi.get(self, "host")
|
|
5881
5881
|
|
|
@@ -5883,7 +5883,7 @@ class GetAppTemplateContainerReadinessProbeResult(dict):
|
|
|
5883
5883
|
@pulumi.getter(name="initialDelay")
|
|
5884
5884
|
def initial_delay(self) -> _builtins.int:
|
|
5885
5885
|
"""
|
|
5886
|
-
The number of seconds elapsed after the container has started before the probe is initiated.
|
|
5886
|
+
The number of seconds elapsed after the container has started before the probe is initiated.
|
|
5887
5887
|
"""
|
|
5888
5888
|
return pulumi.get(self, "initial_delay")
|
|
5889
5889
|
|
|
@@ -5891,7 +5891,7 @@ class GetAppTemplateContainerReadinessProbeResult(dict):
|
|
|
5891
5891
|
@pulumi.getter(name="intervalSeconds")
|
|
5892
5892
|
def interval_seconds(self) -> _builtins.int:
|
|
5893
5893
|
"""
|
|
5894
|
-
How often, in seconds, the probe should run.
|
|
5894
|
+
How often, in seconds, the probe should run.
|
|
5895
5895
|
"""
|
|
5896
5896
|
return pulumi.get(self, "interval_seconds")
|
|
5897
5897
|
|
|
@@ -5907,7 +5907,7 @@ class GetAppTemplateContainerReadinessProbeResult(dict):
|
|
|
5907
5907
|
@pulumi.getter
|
|
5908
5908
|
def port(self) -> _builtins.int:
|
|
5909
5909
|
"""
|
|
5910
|
-
The port number on which to connect.
|
|
5910
|
+
The port number on which to connect.
|
|
5911
5911
|
"""
|
|
5912
5912
|
return pulumi.get(self, "port")
|
|
5913
5913
|
|
|
@@ -5915,7 +5915,7 @@ class GetAppTemplateContainerReadinessProbeResult(dict):
|
|
|
5915
5915
|
@pulumi.getter(name="successCountThreshold")
|
|
5916
5916
|
def success_count_threshold(self) -> _builtins.int:
|
|
5917
5917
|
"""
|
|
5918
|
-
The number of consecutive successful responses required to consider this probe as successful.
|
|
5918
|
+
The number of consecutive successful responses required to consider this probe as successful.
|
|
5919
5919
|
"""
|
|
5920
5920
|
return pulumi.get(self, "success_count_threshold")
|
|
5921
5921
|
|
|
@@ -5923,7 +5923,7 @@ class GetAppTemplateContainerReadinessProbeResult(dict):
|
|
|
5923
5923
|
@pulumi.getter
|
|
5924
5924
|
def timeout(self) -> _builtins.int:
|
|
5925
5925
|
"""
|
|
5926
|
-
Time in seconds after which the probe times out.
|
|
5926
|
+
Time in seconds after which the probe times out.
|
|
5927
5927
|
"""
|
|
5928
5928
|
return pulumi.get(self, "timeout")
|
|
5929
5929
|
|
|
@@ -5931,7 +5931,7 @@ class GetAppTemplateContainerReadinessProbeResult(dict):
|
|
|
5931
5931
|
@pulumi.getter
|
|
5932
5932
|
def transport(self) -> _builtins.str:
|
|
5933
5933
|
"""
|
|
5934
|
-
The transport method for the Ingress.
|
|
5934
|
+
The transport method for the Ingress.
|
|
5935
5935
|
"""
|
|
5936
5936
|
return pulumi.get(self, "transport")
|
|
5937
5937
|
|
|
@@ -5979,16 +5979,16 @@ class GetAppTemplateContainerStartupProbeResult(dict):
|
|
|
5979
5979
|
timeout: _builtins.int,
|
|
5980
5980
|
transport: _builtins.str):
|
|
5981
5981
|
"""
|
|
5982
|
-
:param _builtins.int failure_count_threshold: The number of consecutive failures required to consider this probe as failed.
|
|
5982
|
+
:param _builtins.int failure_count_threshold: The number of consecutive failures required to consider this probe as failed.
|
|
5983
5983
|
:param Sequence['GetAppTemplateContainerStartupProbeHeaderArgs'] headers: A `header` block as detailed below.
|
|
5984
|
-
:param _builtins.str host: The value for the host header which should be sent with this probe.
|
|
5985
|
-
:param _builtins.int initial_delay: The number of seconds elapsed after the container has started before the probe is initiated.
|
|
5986
|
-
:param _builtins.int interval_seconds: How often, in seconds, the probe should run.
|
|
5984
|
+
:param _builtins.str host: The value for the host header which should be sent with this probe.
|
|
5985
|
+
:param _builtins.int initial_delay: The number of seconds elapsed after the container has started before the probe is initiated.
|
|
5986
|
+
:param _builtins.int interval_seconds: How often, in seconds, the probe should run.
|
|
5987
5987
|
:param _builtins.str path: The path in the container at which to mount this volume.
|
|
5988
|
-
:param _builtins.int port: The port number on which to connect.
|
|
5988
|
+
:param _builtins.int port: The port number on which to connect.
|
|
5989
5989
|
:param _builtins.int termination_grace_period_seconds: The time in seconds after the container is sent the termination signal before the process if forcibly killed.
|
|
5990
|
-
:param _builtins.int timeout: Time in seconds after which the probe times out.
|
|
5991
|
-
:param _builtins.str transport: The transport method for the Ingress.
|
|
5990
|
+
:param _builtins.int timeout: Time in seconds after which the probe times out.
|
|
5991
|
+
:param _builtins.str transport: The transport method for the Ingress.
|
|
5992
5992
|
"""
|
|
5993
5993
|
pulumi.set(__self__, "failure_count_threshold", failure_count_threshold)
|
|
5994
5994
|
pulumi.set(__self__, "headers", headers)
|
|
@@ -6005,7 +6005,7 @@ class GetAppTemplateContainerStartupProbeResult(dict):
|
|
|
6005
6005
|
@pulumi.getter(name="failureCountThreshold")
|
|
6006
6006
|
def failure_count_threshold(self) -> _builtins.int:
|
|
6007
6007
|
"""
|
|
6008
|
-
The number of consecutive failures required to consider this probe as failed.
|
|
6008
|
+
The number of consecutive failures required to consider this probe as failed.
|
|
6009
6009
|
"""
|
|
6010
6010
|
return pulumi.get(self, "failure_count_threshold")
|
|
6011
6011
|
|
|
@@ -6021,7 +6021,7 @@ class GetAppTemplateContainerStartupProbeResult(dict):
|
|
|
6021
6021
|
@pulumi.getter
|
|
6022
6022
|
def host(self) -> _builtins.str:
|
|
6023
6023
|
"""
|
|
6024
|
-
The value for the host header which should be sent with this probe.
|
|
6024
|
+
The value for the host header which should be sent with this probe.
|
|
6025
6025
|
"""
|
|
6026
6026
|
return pulumi.get(self, "host")
|
|
6027
6027
|
|
|
@@ -6029,7 +6029,7 @@ class GetAppTemplateContainerStartupProbeResult(dict):
|
|
|
6029
6029
|
@pulumi.getter(name="initialDelay")
|
|
6030
6030
|
def initial_delay(self) -> _builtins.int:
|
|
6031
6031
|
"""
|
|
6032
|
-
The number of seconds elapsed after the container has started before the probe is initiated.
|
|
6032
|
+
The number of seconds elapsed after the container has started before the probe is initiated.
|
|
6033
6033
|
"""
|
|
6034
6034
|
return pulumi.get(self, "initial_delay")
|
|
6035
6035
|
|
|
@@ -6037,7 +6037,7 @@ class GetAppTemplateContainerStartupProbeResult(dict):
|
|
|
6037
6037
|
@pulumi.getter(name="intervalSeconds")
|
|
6038
6038
|
def interval_seconds(self) -> _builtins.int:
|
|
6039
6039
|
"""
|
|
6040
|
-
How often, in seconds, the probe should run.
|
|
6040
|
+
How often, in seconds, the probe should run.
|
|
6041
6041
|
"""
|
|
6042
6042
|
return pulumi.get(self, "interval_seconds")
|
|
6043
6043
|
|
|
@@ -6053,7 +6053,7 @@ class GetAppTemplateContainerStartupProbeResult(dict):
|
|
|
6053
6053
|
@pulumi.getter
|
|
6054
6054
|
def port(self) -> _builtins.int:
|
|
6055
6055
|
"""
|
|
6056
|
-
The port number on which to connect.
|
|
6056
|
+
The port number on which to connect.
|
|
6057
6057
|
"""
|
|
6058
6058
|
return pulumi.get(self, "port")
|
|
6059
6059
|
|
|
@@ -6069,7 +6069,7 @@ class GetAppTemplateContainerStartupProbeResult(dict):
|
|
|
6069
6069
|
@pulumi.getter
|
|
6070
6070
|
def timeout(self) -> _builtins.int:
|
|
6071
6071
|
"""
|
|
6072
|
-
Time in seconds after which the probe times out.
|
|
6072
|
+
Time in seconds after which the probe times out.
|
|
6073
6073
|
"""
|
|
6074
6074
|
return pulumi.get(self, "timeout")
|
|
6075
6075
|
|
|
@@ -6077,7 +6077,7 @@ class GetAppTemplateContainerStartupProbeResult(dict):
|
|
|
6077
6077
|
@pulumi.getter
|
|
6078
6078
|
def transport(self) -> _builtins.str:
|
|
6079
6079
|
"""
|
|
6080
|
-
The transport method for the Ingress.
|
|
6080
|
+
The transport method for the Ingress.
|
|
6081
6081
|
"""
|
|
6082
6082
|
return pulumi.get(self, "transport")
|
|
6083
6083
|
|
|
@@ -6285,13 +6285,13 @@ class GetAppTemplateInitContainerResult(dict):
|
|
|
6285
6285
|
name: _builtins.str,
|
|
6286
6286
|
volume_mounts: Sequence['outputs.GetAppTemplateInitContainerVolumeMountResult']):
|
|
6287
6287
|
"""
|
|
6288
|
-
:param Sequence[_builtins.str] args: A list of extra arguments
|
|
6289
|
-
:param Sequence[_builtins.str] commands: A command
|
|
6290
|
-
:param _builtins.float cpu: The amount of vCPU
|
|
6288
|
+
:param Sequence[_builtins.str] args: A list of extra arguments passed to the container.
|
|
6289
|
+
:param Sequence[_builtins.str] commands: A command passed to the container to override the default. This is provided as a list of command line elements without spaces.
|
|
6290
|
+
:param _builtins.float cpu: The amount of vCPU allocated to the container.
|
|
6291
6291
|
:param Sequence['GetAppTemplateInitContainerEnvArgs'] envs: One or more `env` blocks as detailed below.
|
|
6292
6292
|
:param _builtins.str ephemeral_storage: The amount of ephemeral storage available to the Container App.
|
|
6293
6293
|
:param _builtins.str image: The image to use to create the container.
|
|
6294
|
-
:param _builtins.str memory: The amount of memory
|
|
6294
|
+
:param _builtins.str memory: The amount of memory allocated to the container.
|
|
6295
6295
|
:param _builtins.str name: The name of the Container App.
|
|
6296
6296
|
:param Sequence['GetAppTemplateInitContainerVolumeMountArgs'] volume_mounts: A `volume_mounts` block as detailed below.
|
|
6297
6297
|
"""
|
|
@@ -6309,7 +6309,7 @@ class GetAppTemplateInitContainerResult(dict):
|
|
|
6309
6309
|
@pulumi.getter
|
|
6310
6310
|
def args(self) -> Sequence[_builtins.str]:
|
|
6311
6311
|
"""
|
|
6312
|
-
A list of extra arguments
|
|
6312
|
+
A list of extra arguments passed to the container.
|
|
6313
6313
|
"""
|
|
6314
6314
|
return pulumi.get(self, "args")
|
|
6315
6315
|
|
|
@@ -6317,7 +6317,7 @@ class GetAppTemplateInitContainerResult(dict):
|
|
|
6317
6317
|
@pulumi.getter
|
|
6318
6318
|
def commands(self) -> Sequence[_builtins.str]:
|
|
6319
6319
|
"""
|
|
6320
|
-
A command
|
|
6320
|
+
A command passed to the container to override the default. This is provided as a list of command line elements without spaces.
|
|
6321
6321
|
"""
|
|
6322
6322
|
return pulumi.get(self, "commands")
|
|
6323
6323
|
|
|
@@ -6325,7 +6325,7 @@ class GetAppTemplateInitContainerResult(dict):
|
|
|
6325
6325
|
@pulumi.getter
|
|
6326
6326
|
def cpu(self) -> _builtins.float:
|
|
6327
6327
|
"""
|
|
6328
|
-
The amount of vCPU
|
|
6328
|
+
The amount of vCPU allocated to the container.
|
|
6329
6329
|
"""
|
|
6330
6330
|
return pulumi.get(self, "cpu")
|
|
6331
6331
|
|
|
@@ -6357,7 +6357,7 @@ class GetAppTemplateInitContainerResult(dict):
|
|
|
6357
6357
|
@pulumi.getter
|
|
6358
6358
|
def memory(self) -> _builtins.str:
|
|
6359
6359
|
"""
|
|
6360
|
-
The amount of memory
|
|
6360
|
+
The amount of memory allocated to the container.
|
|
6361
6361
|
"""
|
|
6362
6362
|
return pulumi.get(self, "memory")
|
|
6363
6363
|
|
|
@@ -6526,7 +6526,7 @@ class GetAppTemplateVolumeResult(dict):
|
|
|
6526
6526
|
:param _builtins.str mount_options: Mount options used while mounting the AzureFile.
|
|
6527
6527
|
:param _builtins.str name: The name of the Container App.
|
|
6528
6528
|
:param _builtins.str storage_name: The name of the `AzureFile` storage.
|
|
6529
|
-
:param _builtins.str storage_type: The type of storage volume.
|
|
6529
|
+
:param _builtins.str storage_type: The type of storage volume.
|
|
6530
6530
|
"""
|
|
6531
6531
|
pulumi.set(__self__, "mount_options", mount_options)
|
|
6532
6532
|
pulumi.set(__self__, "name", name)
|
|
@@ -6561,7 +6561,7 @@ class GetAppTemplateVolumeResult(dict):
|
|
|
6561
6561
|
@pulumi.getter(name="storageType")
|
|
6562
6562
|
def storage_type(self) -> _builtins.str:
|
|
6563
6563
|
"""
|
|
6564
|
-
The type of storage volume.
|
|
6564
|
+
The type of storage volume.
|
|
6565
6565
|
"""
|
|
6566
6566
|
return pulumi.get(self, "storage_type")
|
|
6567
6567
|
|