pulumi-azure-native 2.50.0a1720499481__py3-none-any.whl → 2.50.0a1720550655__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-native might be problematic. Click here for more details.

@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "azure-native",
4
- "version": "2.50.0-alpha.1720499481"
4
+ "version": "2.50.0-alpha.1720550655"
5
5
  }
@@ -35,7 +35,7 @@ class BlobArgs:
35
35
  :param pulumi.Input[str] account_name: Specifies the storage account in which to create the storage container.
36
36
  :param pulumi.Input[str] container_name: The name of the storage container in which this blob should be created.
37
37
  :param pulumi.Input[str] resource_group_name: The name of the resource group within the user's subscription.
38
- :param pulumi.Input['BlobAccessTier'] access_tier: The access tier of the storage blob.
38
+ :param pulumi.Input['BlobAccessTier'] access_tier: The access tier of the storage blob. Only supported for standard storage accounts, not premium.
39
39
  :param pulumi.Input[str] blob_name: The name of the storage blob. Must be unique within the storage container the blob is located.
40
40
  :param pulumi.Input[str] content_md5: The MD5 sum of the blob contents. Cannot be defined if blob type is Append.
41
41
  :param pulumi.Input[str] content_type: The content type of the storage blob. Defaults to `application/octet-stream`.
@@ -103,7 +103,7 @@ class BlobArgs:
103
103
  @pulumi.getter(name="accessTier")
104
104
  def access_tier(self) -> Optional[pulumi.Input['BlobAccessTier']]:
105
105
  """
106
- The access tier of the storage blob.
106
+ The access tier of the storage blob. Only supported for standard storage accounts, not premium.
107
107
  """
108
108
  return pulumi.get(self, "access_tier")
109
109
 
@@ -201,11 +201,11 @@ class Blob(pulumi.CustomResource):
201
201
  type: Optional[pulumi.Input['BlobType']] = None,
202
202
  __props__=None):
203
203
  """
204
- Manages a Blob within a Storage Container.
204
+ Manages a Blob within a Storage Container. For the supported combinations of properties and features please see [here](https://learn.microsoft.com/en-us/azure/storage/blobs/storage-feature-support-in-storage-accounts).
205
205
 
206
206
  :param str resource_name: The name of the resource.
207
207
  :param pulumi.ResourceOptions opts: Options for the resource.
208
- :param pulumi.Input['BlobAccessTier'] access_tier: The access tier of the storage blob.
208
+ :param pulumi.Input['BlobAccessTier'] access_tier: The access tier of the storage blob. Only supported for standard storage accounts, not premium.
209
209
  :param pulumi.Input[str] account_name: Specifies the storage account in which to create the storage container.
210
210
  :param pulumi.Input[str] blob_name: The name of the storage blob. Must be unique within the storage container the blob is located.
211
211
  :param pulumi.Input[str] container_name: The name of the storage container in which this blob should be created.
@@ -223,7 +223,7 @@ class Blob(pulumi.CustomResource):
223
223
  args: BlobArgs,
224
224
  opts: Optional[pulumi.ResourceOptions] = None):
225
225
  """
226
- Manages a Blob within a Storage Container.
226
+ Manages a Blob within a Storage Container. For the supported combinations of properties and features please see [here](https://learn.microsoft.com/en-us/azure/storage/blobs/storage-feature-support-in-storage-accounts).
227
227
 
228
228
  :param str resource_name: The name of the resource.
229
229
  :param BlobArgs args: The arguments to use to populate this resource's properties.
@@ -312,9 +312,9 @@ class Blob(pulumi.CustomResource):
312
312
 
313
313
  @property
314
314
  @pulumi.getter(name="accessTier")
315
- def access_tier(self) -> pulumi.Output['BlobAccessTier']:
315
+ def access_tier(self) -> pulumi.Output[Optional['BlobAccessTier']]:
316
316
  """
317
- The access tier of the storage blob.
317
+ The access tier of the storage blob. Only supported for standard storage accounts, not premium.
318
318
  """
319
319
  return pulumi.get(self, "access_tier")
320
320
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_azure_native
3
- Version: 2.50.0a1720499481
3
+ Version: 2.50.0a1720550655
4
4
  Summary: A native Pulumi package for creating and managing Azure resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.com
@@ -1,7 +1,7 @@
1
1
  pulumi_azure_native/__init__.py,sha256=94LxgAgrKkChd782fha7n1Vpj4GGfY-75xwiBUtZ0rg,936804
2
2
  pulumi_azure_native/_utilities.py,sha256=7Zo4BHvs3g266AWXI6QT2MP4R2GjNy9InaK5RIBsZkY,10428
3
3
  pulumi_azure_native/provider.py,sha256=mOnH2uCwSyegLsgr4VPTAlbmq8zsPCQi9l4J6rtLEVI,23296
4
- pulumi_azure_native/pulumi-plugin.json,sha256=g0LcMeudYvJF89mv6EuygEEBGrtrCuVq9WpxbvknN3Y,89
4
+ pulumi_azure_native/pulumi-plugin.json,sha256=7BmjYA3BYGobE3u26zam_IzcT72cmoBkU9YA5YZmdrc,89
5
5
  pulumi_azure_native/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
6
6
  pulumi_azure_native/aad/__init__.py,sha256=O2XPJyft-EiRyZdbKAbADw_hWhoH_Yn8KOwWpJprjs0,669
7
7
  pulumi_azure_native/aad/_enums.py,sha256=nEE4b-gxeGR_DXhJA6WTIznl4AA5UmVTKpvu2PV66RE,3419
@@ -22629,7 +22629,7 @@ pulumi_azure_native/standbypool/v20231201preview/standby_virtual_machine_pool.py
22629
22629
  pulumi_azure_native/storage/__init__.py,sha256=6lt4dlhehnjsEeVUbfVouMVmGbA-Ps_fVs5AhECTmk8,2585
22630
22630
  pulumi_azure_native/storage/_enums.py,sha256=nR_Wzy94qXHh9lTLKBd3RWDdZnwa_843gDJlvXgWVj8,12506
22631
22631
  pulumi_azure_native/storage/_inputs.py,sha256=zu8RKH07wFDLdJmk2h8Sd9_xvrm2mLMnRuRpTBUkkZ8,205237
22632
- pulumi_azure_native/storage/blob.py,sha256=aiuoQ7Ge-BUq3FLKK9YtwOOxjhvOv3-1L3hPx5o5rP8,15890
22632
+ pulumi_azure_native/storage/blob.py,sha256=SD_tn7xSaP987YgL3Lnq0u0fxLDMEY_E8BtVszsCZ78,16488
22633
22633
  pulumi_azure_native/storage/blob_container.py,sha256=8dk5pQ0cTEQ5HW_XXc-d4vLG9ajwuesiOIl2tlx8J64,27019
22634
22634
  pulumi_azure_native/storage/blob_container_immutability_policy.py,sha256=k2msz1NeD5NpQy7Edy2ooJfTYRvxHmS_KYWIjfnne_Y,21114
22635
22635
  pulumi_azure_native/storage/blob_container_legal_hold.py,sha256=RJiU_CFKhuN6PllTjVISpKjhXEk2k5ZfyO-oGa1ynRw,11519
@@ -24958,7 +24958,7 @@ pulumi_azure_native/workloads/v20231201preview/monitor.py,sha256=ODgV5UnOHNyFAuP
24958
24958
  pulumi_azure_native/workloads/v20231201preview/outputs.py,sha256=74y9HFP32EotrukKPZhHiO4nKMgYhfacFP2_d4eNjt4,57838
24959
24959
  pulumi_azure_native/workloads/v20231201preview/provider_instance.py,sha256=ORO7_6iKHAA6y-zKEP8PwSEEUV236dG5UbfGTvFMGdM,13601
24960
24960
  pulumi_azure_native/workloads/v20231201preview/sap_landscape_monitor.py,sha256=l4rMkIJwC_curtGNqO3X7XjEreuGNlhY7_JlIYOQgH0,11636
24961
- pulumi_azure_native-2.50.0a1720499481.dist-info/METADATA,sha256=-6C2WvCmGRjHSB6oQzbPuW4wvRsMynqWT-f9TWdOzo8,4204
24962
- pulumi_azure_native-2.50.0a1720499481.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
24963
- pulumi_azure_native-2.50.0a1720499481.dist-info/top_level.txt,sha256=8Vl7910-df5jOZ9lvILrFhlMOEUrsaaX2dkztIt4Pkw,20
24964
- pulumi_azure_native-2.50.0a1720499481.dist-info/RECORD,,
24961
+ pulumi_azure_native-2.50.0a1720550655.dist-info/METADATA,sha256=eKEP7eUaDupnJRo1_j3YZTVC-m3bOfBKUQnu4r8C7oE,4204
24962
+ pulumi_azure_native-2.50.0a1720550655.dist-info/WHEEL,sha256=Z4pYXqR_rTB7OWNDYFOm1qRk0RX6GFP2o8LgvP453Hk,91
24963
+ pulumi_azure_native-2.50.0a1720550655.dist-info/top_level.txt,sha256=8Vl7910-df5jOZ9lvILrFhlMOEUrsaaX2dkztIt4Pkw,20
24964
+ pulumi_azure_native-2.50.0a1720550655.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (70.2.0)
2
+ Generator: setuptools (70.3.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5