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
|
@@ -1511,9 +1511,9 @@ if not MYPY:
|
|
|
1511
1511
|
class AppTemplateContainerArgsDict(TypedDict):
|
|
1512
1512
|
cpu: pulumi.Input[_builtins.float]
|
|
1513
1513
|
"""
|
|
1514
|
-
The amount of vCPU to allocate to the container.
|
|
1514
|
+
The amount of vCPU to allocate to the container.
|
|
1515
1515
|
|
|
1516
|
-
> **Note:** `cpu` and `memory` must
|
|
1516
|
+
> **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)
|
|
1517
1517
|
"""
|
|
1518
1518
|
image: pulumi.Input[_builtins.str]
|
|
1519
1519
|
"""
|
|
@@ -1521,9 +1521,9 @@ if not MYPY:
|
|
|
1521
1521
|
"""
|
|
1522
1522
|
memory: pulumi.Input[_builtins.str]
|
|
1523
1523
|
"""
|
|
1524
|
-
The amount of memory to allocate to the container.
|
|
1524
|
+
The amount of memory to allocate to the container.
|
|
1525
1525
|
|
|
1526
|
-
> **Note:** `cpu` and `memory` must
|
|
1526
|
+
> **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)
|
|
1527
1527
|
"""
|
|
1528
1528
|
name: pulumi.Input[_builtins.str]
|
|
1529
1529
|
"""
|
|
@@ -1582,13 +1582,13 @@ class AppTemplateContainerArgs:
|
|
|
1582
1582
|
startup_probes: Optional[pulumi.Input[Sequence[pulumi.Input['AppTemplateContainerStartupProbeArgs']]]] = None,
|
|
1583
1583
|
volume_mounts: Optional[pulumi.Input[Sequence[pulumi.Input['AppTemplateContainerVolumeMountArgs']]]] = None):
|
|
1584
1584
|
"""
|
|
1585
|
-
:param pulumi.Input[_builtins.float] cpu: The amount of vCPU to allocate to the container.
|
|
1585
|
+
:param pulumi.Input[_builtins.float] cpu: The amount of vCPU to allocate to the container.
|
|
1586
1586
|
|
|
1587
|
-
> **Note:** `cpu` and `memory` must
|
|
1587
|
+
> **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)
|
|
1588
1588
|
:param pulumi.Input[_builtins.str] image: The image to use to create the container.
|
|
1589
|
-
:param pulumi.Input[_builtins.str] memory: The amount of memory to allocate to the container.
|
|
1589
|
+
:param pulumi.Input[_builtins.str] memory: The amount of memory to allocate to the container.
|
|
1590
1590
|
|
|
1591
|
-
> **Note:** `cpu` and `memory` must
|
|
1591
|
+
> **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)
|
|
1592
1592
|
:param pulumi.Input[_builtins.str] name: The name of the container
|
|
1593
1593
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] args: A list of extra arguments to pass to the container.
|
|
1594
1594
|
:param pulumi.Input[Sequence[pulumi.Input[_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.
|
|
@@ -1626,9 +1626,9 @@ class AppTemplateContainerArgs:
|
|
|
1626
1626
|
@pulumi.getter
|
|
1627
1627
|
def cpu(self) -> pulumi.Input[_builtins.float]:
|
|
1628
1628
|
"""
|
|
1629
|
-
The amount of vCPU to allocate to the container.
|
|
1629
|
+
The amount of vCPU to allocate to the container.
|
|
1630
1630
|
|
|
1631
|
-
> **Note:** `cpu` and `memory` must
|
|
1631
|
+
> **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)
|
|
1632
1632
|
"""
|
|
1633
1633
|
return pulumi.get(self, "cpu")
|
|
1634
1634
|
|
|
@@ -1652,9 +1652,9 @@ class AppTemplateContainerArgs:
|
|
|
1652
1652
|
@pulumi.getter
|
|
1653
1653
|
def memory(self) -> pulumi.Input[_builtins.str]:
|
|
1654
1654
|
"""
|
|
1655
|
-
The amount of memory to allocate to the container.
|
|
1655
|
+
The amount of memory to allocate to the container.
|
|
1656
1656
|
|
|
1657
|
-
> **Note:** `cpu` and `memory` must
|
|
1657
|
+
> **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)
|
|
1658
1658
|
"""
|
|
1659
1659
|
return pulumi.get(self, "memory")
|
|
1660
1660
|
|
|
@@ -2980,9 +2980,9 @@ if not MYPY:
|
|
|
2980
2980
|
"""
|
|
2981
2981
|
cpu: NotRequired[pulumi.Input[_builtins.float]]
|
|
2982
2982
|
"""
|
|
2983
|
-
The amount of vCPU to allocate to the container.
|
|
2983
|
+
The amount of vCPU to allocate to the container.
|
|
2984
2984
|
|
|
2985
|
-
> **Note:** `cpu` and `memory` must
|
|
2985
|
+
> **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)
|
|
2986
2986
|
"""
|
|
2987
2987
|
envs: NotRequired[pulumi.Input[Sequence[pulumi.Input['AppTemplateInitContainerEnvArgsDict']]]]
|
|
2988
2988
|
"""
|
|
@@ -2996,9 +2996,9 @@ if not MYPY:
|
|
|
2996
2996
|
"""
|
|
2997
2997
|
memory: NotRequired[pulumi.Input[_builtins.str]]
|
|
2998
2998
|
"""
|
|
2999
|
-
The amount of memory to allocate to the container.
|
|
2999
|
+
The amount of memory to allocate to the container.
|
|
3000
3000
|
|
|
3001
|
-
> **Note:** `cpu` and `memory` must
|
|
3001
|
+
> **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)
|
|
3002
3002
|
"""
|
|
3003
3003
|
volume_mounts: NotRequired[pulumi.Input[Sequence[pulumi.Input['AppTemplateInitContainerVolumeMountArgsDict']]]]
|
|
3004
3004
|
"""
|
|
@@ -3024,16 +3024,16 @@ class AppTemplateInitContainerArgs:
|
|
|
3024
3024
|
:param pulumi.Input[_builtins.str] name: The name of the container
|
|
3025
3025
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] args: A list of extra arguments to pass to the container.
|
|
3026
3026
|
:param pulumi.Input[Sequence[pulumi.Input[_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.
|
|
3027
|
-
:param pulumi.Input[_builtins.float] cpu: The amount of vCPU to allocate to the container.
|
|
3027
|
+
:param pulumi.Input[_builtins.float] cpu: The amount of vCPU to allocate to the container.
|
|
3028
3028
|
|
|
3029
|
-
> **Note:** `cpu` and `memory` must
|
|
3029
|
+
> **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)
|
|
3030
3030
|
:param pulumi.Input[Sequence[pulumi.Input['AppTemplateInitContainerEnvArgs']]] envs: One or more `env` blocks as detailed below.
|
|
3031
3031
|
:param pulumi.Input[_builtins.str] ephemeral_storage: The amount of ephemeral storage available to the Container App.
|
|
3032
3032
|
|
|
3033
3033
|
> **Note:** `ephemeral_storage` is currently in preview and not configurable at this time.
|
|
3034
|
-
:param pulumi.Input[_builtins.str] memory: The amount of memory to allocate to the container.
|
|
3034
|
+
:param pulumi.Input[_builtins.str] memory: The amount of memory to allocate to the container.
|
|
3035
3035
|
|
|
3036
|
-
> **Note:** `cpu` and `memory` must
|
|
3036
|
+
> **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)
|
|
3037
3037
|
:param pulumi.Input[Sequence[pulumi.Input['AppTemplateInitContainerVolumeMountArgs']]] volume_mounts: A `volume_mounts` block as detailed below.
|
|
3038
3038
|
"""
|
|
3039
3039
|
pulumi.set(__self__, "image", image)
|
|
@@ -3105,9 +3105,9 @@ class AppTemplateInitContainerArgs:
|
|
|
3105
3105
|
@pulumi.getter
|
|
3106
3106
|
def cpu(self) -> Optional[pulumi.Input[_builtins.float]]:
|
|
3107
3107
|
"""
|
|
3108
|
-
The amount of vCPU to allocate to the container.
|
|
3108
|
+
The amount of vCPU to allocate to the container.
|
|
3109
3109
|
|
|
3110
|
-
> **Note:** `cpu` and `memory` must
|
|
3110
|
+
> **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)
|
|
3111
3111
|
"""
|
|
3112
3112
|
return pulumi.get(self, "cpu")
|
|
3113
3113
|
|
|
@@ -3145,9 +3145,9 @@ class AppTemplateInitContainerArgs:
|
|
|
3145
3145
|
@pulumi.getter
|
|
3146
3146
|
def memory(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
3147
3147
|
"""
|
|
3148
|
-
The amount of memory to allocate to the container.
|
|
3148
|
+
The amount of memory to allocate to the container.
|
|
3149
3149
|
|
|
3150
|
-
> **Note:** `cpu` and `memory` must
|
|
3150
|
+
> **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)
|
|
3151
3151
|
"""
|
|
3152
3152
|
return pulumi.get(self, "memory")
|
|
3153
3153
|
|
|
@@ -4660,9 +4660,9 @@ if not MYPY:
|
|
|
4660
4660
|
class JobTemplateContainerArgsDict(TypedDict):
|
|
4661
4661
|
cpu: pulumi.Input[_builtins.float]
|
|
4662
4662
|
"""
|
|
4663
|
-
The amount of vCPU to allocate to the container.
|
|
4663
|
+
The amount of vCPU to allocate to the container.
|
|
4664
4664
|
|
|
4665
|
-
> **Note:** `cpu` and `memory` must
|
|
4665
|
+
> **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)
|
|
4666
4666
|
"""
|
|
4667
4667
|
image: pulumi.Input[_builtins.str]
|
|
4668
4668
|
"""
|
|
@@ -4670,9 +4670,9 @@ if not MYPY:
|
|
|
4670
4670
|
"""
|
|
4671
4671
|
memory: pulumi.Input[_builtins.str]
|
|
4672
4672
|
"""
|
|
4673
|
-
The amount of memory to allocate to the container.
|
|
4673
|
+
The amount of memory to allocate to the container.
|
|
4674
4674
|
|
|
4675
|
-
> **Note:** `cpu` and `memory` must
|
|
4675
|
+
> **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)
|
|
4676
4676
|
"""
|
|
4677
4677
|
name: pulumi.Input[_builtins.str]
|
|
4678
4678
|
"""
|
|
@@ -4731,13 +4731,13 @@ class JobTemplateContainerArgs:
|
|
|
4731
4731
|
startup_probes: Optional[pulumi.Input[Sequence[pulumi.Input['JobTemplateContainerStartupProbeArgs']]]] = None,
|
|
4732
4732
|
volume_mounts: Optional[pulumi.Input[Sequence[pulumi.Input['JobTemplateContainerVolumeMountArgs']]]] = None):
|
|
4733
4733
|
"""
|
|
4734
|
-
:param pulumi.Input[_builtins.float] cpu: The amount of vCPU to allocate to the container.
|
|
4734
|
+
:param pulumi.Input[_builtins.float] cpu: The amount of vCPU to allocate to the container.
|
|
4735
4735
|
|
|
4736
|
-
> **Note:** `cpu` and `memory` must
|
|
4736
|
+
> **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)
|
|
4737
4737
|
:param pulumi.Input[_builtins.str] image: The image to use to create the container.
|
|
4738
|
-
:param pulumi.Input[_builtins.str] memory: The amount of memory to allocate to the container.
|
|
4738
|
+
:param pulumi.Input[_builtins.str] memory: The amount of memory to allocate to the container.
|
|
4739
4739
|
|
|
4740
|
-
> **Note:** `cpu` and `memory` must
|
|
4740
|
+
> **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)
|
|
4741
4741
|
:param pulumi.Input[_builtins.str] name: The name of the container.
|
|
4742
4742
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] args: A list of extra arguments to pass to the container.
|
|
4743
4743
|
:param pulumi.Input[Sequence[pulumi.Input[_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.
|
|
@@ -4775,9 +4775,9 @@ class JobTemplateContainerArgs:
|
|
|
4775
4775
|
@pulumi.getter
|
|
4776
4776
|
def cpu(self) -> pulumi.Input[_builtins.float]:
|
|
4777
4777
|
"""
|
|
4778
|
-
The amount of vCPU to allocate to the container.
|
|
4778
|
+
The amount of vCPU to allocate to the container.
|
|
4779
4779
|
|
|
4780
|
-
> **Note:** `cpu` and `memory` must
|
|
4780
|
+
> **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)
|
|
4781
4781
|
"""
|
|
4782
4782
|
return pulumi.get(self, "cpu")
|
|
4783
4783
|
|
|
@@ -4801,9 +4801,9 @@ class JobTemplateContainerArgs:
|
|
|
4801
4801
|
@pulumi.getter
|
|
4802
4802
|
def memory(self) -> pulumi.Input[_builtins.str]:
|
|
4803
4803
|
"""
|
|
4804
|
-
The amount of memory to allocate to the container.
|
|
4804
|
+
The amount of memory to allocate to the container.
|
|
4805
4805
|
|
|
4806
|
-
> **Note:** `cpu` and `memory` must
|
|
4806
|
+
> **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)
|
|
4807
4807
|
"""
|
|
4808
4808
|
return pulumi.get(self, "memory")
|
|
4809
4809
|
|
|
@@ -5863,9 +5863,9 @@ if not MYPY:
|
|
|
5863
5863
|
"""
|
|
5864
5864
|
cpu: NotRequired[pulumi.Input[_builtins.float]]
|
|
5865
5865
|
"""
|
|
5866
|
-
The amount of vCPU to allocate to the container.
|
|
5866
|
+
The amount of vCPU to allocate to the container.
|
|
5867
5867
|
|
|
5868
|
-
> **Note:** `cpu` and `memory` must
|
|
5868
|
+
> **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)
|
|
5869
5869
|
"""
|
|
5870
5870
|
envs: NotRequired[pulumi.Input[Sequence[pulumi.Input['JobTemplateInitContainerEnvArgsDict']]]]
|
|
5871
5871
|
"""
|
|
@@ -5879,9 +5879,9 @@ if not MYPY:
|
|
|
5879
5879
|
"""
|
|
5880
5880
|
memory: NotRequired[pulumi.Input[_builtins.str]]
|
|
5881
5881
|
"""
|
|
5882
|
-
The amount of memory to allocate to the container.
|
|
5882
|
+
The amount of memory to allocate to the container.
|
|
5883
5883
|
|
|
5884
|
-
> **Note:** `cpu` and `memory` must
|
|
5884
|
+
> **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)
|
|
5885
5885
|
"""
|
|
5886
5886
|
volume_mounts: NotRequired[pulumi.Input[Sequence[pulumi.Input['JobTemplateInitContainerVolumeMountArgsDict']]]]
|
|
5887
5887
|
"""
|
|
@@ -5907,16 +5907,16 @@ class JobTemplateInitContainerArgs:
|
|
|
5907
5907
|
:param pulumi.Input[_builtins.str] name: The name of the container.
|
|
5908
5908
|
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] args: A list of extra arguments to pass to the container.
|
|
5909
5909
|
:param pulumi.Input[Sequence[pulumi.Input[_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.
|
|
5910
|
-
:param pulumi.Input[_builtins.float] cpu: The amount of vCPU to allocate to the container.
|
|
5910
|
+
:param pulumi.Input[_builtins.float] cpu: The amount of vCPU to allocate to the container.
|
|
5911
5911
|
|
|
5912
|
-
> **Note:** `cpu` and `memory` must
|
|
5912
|
+
> **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)
|
|
5913
5913
|
:param pulumi.Input[Sequence[pulumi.Input['JobTemplateInitContainerEnvArgs']]] envs: One or more `env` blocks as detailed below.
|
|
5914
5914
|
:param pulumi.Input[_builtins.str] ephemeral_storage: The amount of ephemeral storage available to the Container App.
|
|
5915
5915
|
|
|
5916
5916
|
> **Note:** `ephemeral_storage` is currently in preview and not configurable at this time.
|
|
5917
|
-
:param pulumi.Input[_builtins.str] memory: The amount of memory to allocate to the container.
|
|
5917
|
+
:param pulumi.Input[_builtins.str] memory: The amount of memory to allocate to the container.
|
|
5918
5918
|
|
|
5919
|
-
> **Note:** `cpu` and `memory` must
|
|
5919
|
+
> **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)
|
|
5920
5920
|
:param pulumi.Input[Sequence[pulumi.Input['JobTemplateInitContainerVolumeMountArgs']]] volume_mounts: A `volume_mounts` block as detailed below.
|
|
5921
5921
|
"""
|
|
5922
5922
|
pulumi.set(__self__, "image", image)
|
|
@@ -5988,9 +5988,9 @@ class JobTemplateInitContainerArgs:
|
|
|
5988
5988
|
@pulumi.getter
|
|
5989
5989
|
def cpu(self) -> Optional[pulumi.Input[_builtins.float]]:
|
|
5990
5990
|
"""
|
|
5991
|
-
The amount of vCPU to allocate to the container.
|
|
5991
|
+
The amount of vCPU to allocate to the container.
|
|
5992
5992
|
|
|
5993
|
-
> **Note:** `cpu` and `memory` must
|
|
5993
|
+
> **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)
|
|
5994
5994
|
"""
|
|
5995
5995
|
return pulumi.get(self, "cpu")
|
|
5996
5996
|
|
|
@@ -6028,9 +6028,9 @@ class JobTemplateInitContainerArgs:
|
|
|
6028
6028
|
@pulumi.getter
|
|
6029
6029
|
def memory(self) -> Optional[pulumi.Input[_builtins.str]]:
|
|
6030
6030
|
"""
|
|
6031
|
-
The amount of memory to allocate to the container.
|
|
6031
|
+
The amount of memory to allocate to the container.
|
|
6032
6032
|
|
|
6033
|
-
> **Note:** `cpu` and `memory` must
|
|
6033
|
+
> **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)
|
|
6034
6034
|
"""
|
|
6035
6035
|
return pulumi.get(self, "memory")
|
|
6036
6036
|
|