pulumi-gcp 7.30.0a1720039709__py3-none-any.whl → 7.30.0a1720437548__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.
- pulumi_gcp/__init__.py +32 -0
- pulumi_gcp/artifactregistry/get_docker_image.py +2 -2
- pulumi_gcp/bigtable/gc_policy.py +68 -14
- pulumi_gcp/cloudfunctionsv2/_inputs.py +97 -0
- pulumi_gcp/cloudfunctionsv2/function.py +232 -0
- pulumi_gcp/cloudfunctionsv2/outputs.py +129 -1
- pulumi_gcp/compute/_inputs.py +622 -0
- pulumi_gcp/compute/address.py +0 -7
- pulumi_gcp/compute/backend_service.py +0 -14
- pulumi_gcp/compute/forwarding_rule.py +0 -21
- pulumi_gcp/compute/global_forwarding_rule.py +0 -21
- pulumi_gcp/compute/managed_ssl_certificate.py +0 -7
- pulumi_gcp/compute/manged_ssl_certificate.py +0 -7
- pulumi_gcp/compute/network_attachment.py +16 -0
- pulumi_gcp/compute/outputs.py +504 -8
- pulumi_gcp/compute/region_backend_service.py +0 -14
- pulumi_gcp/compute/region_ssl_certificate.py +0 -7
- pulumi_gcp/compute/ssl_certificate.py +0 -7
- pulumi_gcp/compute/target_https_proxy.py +76 -1
- pulumi_gcp/compute/url_map.py +255 -0
- pulumi_gcp/container/aws_cluster.py +2 -2
- pulumi_gcp/container/aws_node_pool.py +2 -2
- pulumi_gcp/container/azure_client.py +2 -2
- pulumi_gcp/container/azure_cluster.py +2 -2
- pulumi_gcp/container/azure_node_pool.py +2 -2
- pulumi_gcp/datafusion/_inputs.py +163 -11
- pulumi_gcp/datafusion/instance.py +64 -0
- pulumi_gcp/datafusion/outputs.py +127 -7
- pulumi_gcp/healthcare/_inputs.py +43 -0
- pulumi_gcp/healthcare/dataset.py +110 -0
- pulumi_gcp/healthcare/outputs.py +43 -0
- pulumi_gcp/identityplatform/config.py +1 -1
- pulumi_gcp/logging/billing_account_bucket_config.py +1 -1
- pulumi_gcp/logging/folder_bucket_config.py +1 -1
- pulumi_gcp/logging/organization_bucket_config.py +1 -1
- pulumi_gcp/monitoring/_inputs.py +77 -0
- pulumi_gcp/monitoring/outputs.py +63 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/instance_iam_binding.py +64 -0
- pulumi_gcp/securitycenter/instance_iam_member.py +64 -0
- pulumi_gcp/securitycenter/instance_iam_policy.py +64 -0
- pulumi_gcp/storage/__init__.py +5 -0
- pulumi_gcp/storage/_inputs.py +130 -0
- pulumi_gcp/storage/get_managed_folder_iam_policy.py +115 -0
- pulumi_gcp/storage/managed_folder.py +440 -0
- pulumi_gcp/storage/managed_folder_iam_binding.py +947 -0
- pulumi_gcp/storage/managed_folder_iam_member.py +947 -0
- pulumi_gcp/storage/managed_folder_iam_policy.py +766 -0
- pulumi_gcp/storage/outputs.py +76 -0
- pulumi_gcp/vertex/_inputs.py +3 -3
- pulumi_gcp/vertex/ai_feature_online_store.py +9 -9
- pulumi_gcp/vertex/outputs.py +2 -2
- {pulumi_gcp-7.30.0a1720039709.dist-info → pulumi_gcp-7.30.0a1720437548.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.30.0a1720039709.dist-info → pulumi_gcp-7.30.0a1720437548.dist-info}/RECORD +56 -51
- {pulumi_gcp-7.30.0a1720039709.dist-info → pulumi_gcp-7.30.0a1720437548.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.30.0a1720039709.dist-info → pulumi_gcp-7.30.0a1720437548.dist-info}/top_level.txt +0 -0
pulumi_gcp/storage/outputs.py
CHANGED
@@ -40,6 +40,8 @@ __all__ = [
|
|
40
40
|
'InsightsReportConfigObjectMetadataReportOptions',
|
41
41
|
'InsightsReportConfigObjectMetadataReportOptionsStorageDestinationOptions',
|
42
42
|
'InsightsReportConfigObjectMetadataReportOptionsStorageFilters',
|
43
|
+
'ManagedFolderIamBindingCondition',
|
44
|
+
'ManagedFolderIamMemberCondition',
|
43
45
|
'ObjectAccessControlProjectTeam',
|
44
46
|
'TransferAgentPoolBandwidthLimit',
|
45
47
|
'TransferJobEventStream',
|
@@ -1417,6 +1419,80 @@ class InsightsReportConfigObjectMetadataReportOptionsStorageFilters(dict):
|
|
1417
1419
|
return pulumi.get(self, "bucket")
|
1418
1420
|
|
1419
1421
|
|
1422
|
+
@pulumi.output_type
|
1423
|
+
class ManagedFolderIamBindingCondition(dict):
|
1424
|
+
def __init__(__self__, *,
|
1425
|
+
expression: str,
|
1426
|
+
title: str,
|
1427
|
+
description: Optional[str] = None):
|
1428
|
+
"""
|
1429
|
+
:param str expression: Textual representation of an expression in Common Expression Language syntax.
|
1430
|
+
:param str title: A title for the expression, i.e. a short string describing its purpose.
|
1431
|
+
"""
|
1432
|
+
pulumi.set(__self__, "expression", expression)
|
1433
|
+
pulumi.set(__self__, "title", title)
|
1434
|
+
if description is not None:
|
1435
|
+
pulumi.set(__self__, "description", description)
|
1436
|
+
|
1437
|
+
@property
|
1438
|
+
@pulumi.getter
|
1439
|
+
def expression(self) -> str:
|
1440
|
+
"""
|
1441
|
+
Textual representation of an expression in Common Expression Language syntax.
|
1442
|
+
"""
|
1443
|
+
return pulumi.get(self, "expression")
|
1444
|
+
|
1445
|
+
@property
|
1446
|
+
@pulumi.getter
|
1447
|
+
def title(self) -> str:
|
1448
|
+
"""
|
1449
|
+
A title for the expression, i.e. a short string describing its purpose.
|
1450
|
+
"""
|
1451
|
+
return pulumi.get(self, "title")
|
1452
|
+
|
1453
|
+
@property
|
1454
|
+
@pulumi.getter
|
1455
|
+
def description(self) -> Optional[str]:
|
1456
|
+
return pulumi.get(self, "description")
|
1457
|
+
|
1458
|
+
|
1459
|
+
@pulumi.output_type
|
1460
|
+
class ManagedFolderIamMemberCondition(dict):
|
1461
|
+
def __init__(__self__, *,
|
1462
|
+
expression: str,
|
1463
|
+
title: str,
|
1464
|
+
description: Optional[str] = None):
|
1465
|
+
"""
|
1466
|
+
:param str expression: Textual representation of an expression in Common Expression Language syntax.
|
1467
|
+
:param str title: A title for the expression, i.e. a short string describing its purpose.
|
1468
|
+
"""
|
1469
|
+
pulumi.set(__self__, "expression", expression)
|
1470
|
+
pulumi.set(__self__, "title", title)
|
1471
|
+
if description is not None:
|
1472
|
+
pulumi.set(__self__, "description", description)
|
1473
|
+
|
1474
|
+
@property
|
1475
|
+
@pulumi.getter
|
1476
|
+
def expression(self) -> str:
|
1477
|
+
"""
|
1478
|
+
Textual representation of an expression in Common Expression Language syntax.
|
1479
|
+
"""
|
1480
|
+
return pulumi.get(self, "expression")
|
1481
|
+
|
1482
|
+
@property
|
1483
|
+
@pulumi.getter
|
1484
|
+
def title(self) -> str:
|
1485
|
+
"""
|
1486
|
+
A title for the expression, i.e. a short string describing its purpose.
|
1487
|
+
"""
|
1488
|
+
return pulumi.get(self, "title")
|
1489
|
+
|
1490
|
+
@property
|
1491
|
+
@pulumi.getter
|
1492
|
+
def description(self) -> Optional[str]:
|
1493
|
+
return pulumi.get(self, "description")
|
1494
|
+
|
1495
|
+
|
1420
1496
|
@pulumi.output_type
|
1421
1497
|
class ObjectAccessControlProjectTeam(dict):
|
1422
1498
|
@staticmethod
|
pulumi_gcp/vertex/_inputs.py
CHANGED
@@ -1214,7 +1214,7 @@ if not MYPY:
|
|
1214
1214
|
"""
|
1215
1215
|
entity_id_columns: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
1216
1216
|
"""
|
1217
|
-
Columns to construct entityId / row keys.
|
1217
|
+
Columns to construct entityId / row keys. If not provided defaults to entityId.
|
1218
1218
|
"""
|
1219
1219
|
elif False:
|
1220
1220
|
AiFeatureGroupBigQueryArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -1227,7 +1227,7 @@ class AiFeatureGroupBigQueryArgs:
|
|
1227
1227
|
"""
|
1228
1228
|
:param pulumi.Input['AiFeatureGroupBigQueryBigQuerySourceArgs'] big_query_source: The BigQuery source URI that points to either a BigQuery Table or View.
|
1229
1229
|
Structure is documented below.
|
1230
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] entity_id_columns: Columns to construct entityId / row keys.
|
1230
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] entity_id_columns: Columns to construct entityId / row keys. If not provided defaults to entityId.
|
1231
1231
|
"""
|
1232
1232
|
pulumi.set(__self__, "big_query_source", big_query_source)
|
1233
1233
|
if entity_id_columns is not None:
|
@@ -1250,7 +1250,7 @@ class AiFeatureGroupBigQueryArgs:
|
|
1250
1250
|
@pulumi.getter(name="entityIdColumns")
|
1251
1251
|
def entity_id_columns(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
1252
1252
|
"""
|
1253
|
-
Columns to construct entityId / row keys.
|
1253
|
+
Columns to construct entityId / row keys. If not provided defaults to entityId.
|
1254
1254
|
"""
|
1255
1255
|
return pulumi.get(self, "entity_id_columns")
|
1256
1256
|
|
@@ -34,7 +34,7 @@ class AiFeatureOnlineStoreArgs:
|
|
34
34
|
The set of arguments for constructing a AiFeatureOnlineStore resource.
|
35
35
|
:param pulumi.Input['AiFeatureOnlineStoreBigtableArgs'] bigtable: Settings for Cloud Bigtable instance that will be created to serve featureValues for all FeatureViews under this FeatureOnlineStore.
|
36
36
|
Structure is documented below.
|
37
|
-
:param pulumi.Input['AiFeatureOnlineStoreDedicatedServingEndpointArgs'] dedicated_serving_endpoint: The dedicated serving endpoint for this FeatureOnlineStore, which is different from common vertex service endpoint. Only need to set when you choose Optimized storage type or enable EmbeddingManagement. Will use public endpoint by default.
|
37
|
+
:param pulumi.Input['AiFeatureOnlineStoreDedicatedServingEndpointArgs'] dedicated_serving_endpoint: The dedicated serving endpoint for this FeatureOnlineStore, which is different from common vertex service endpoint. Only need to be set when you choose Optimized storage type or enable EmbeddingManagement. Will use public endpoint by default.
|
38
38
|
Structure is documented below.
|
39
39
|
:param pulumi.Input['AiFeatureOnlineStoreEmbeddingManagementArgs'] embedding_management: The settings for embedding management in FeatureOnlineStore. Embedding management can only be set for BigTable. It is enabled by default for optimized storagetype.
|
40
40
|
Structure is documented below.
|
@@ -92,7 +92,7 @@ class AiFeatureOnlineStoreArgs:
|
|
92
92
|
@pulumi.getter(name="dedicatedServingEndpoint")
|
93
93
|
def dedicated_serving_endpoint(self) -> Optional[pulumi.Input['AiFeatureOnlineStoreDedicatedServingEndpointArgs']]:
|
94
94
|
"""
|
95
|
-
The dedicated serving endpoint for this FeatureOnlineStore, which is different from common vertex service endpoint. Only need to set when you choose Optimized storage type or enable EmbeddingManagement. Will use public endpoint by default.
|
95
|
+
The dedicated serving endpoint for this FeatureOnlineStore, which is different from common vertex service endpoint. Only need to be set when you choose Optimized storage type or enable EmbeddingManagement. Will use public endpoint by default.
|
96
96
|
Structure is documented below.
|
97
97
|
"""
|
98
98
|
return pulumi.get(self, "dedicated_serving_endpoint")
|
@@ -219,7 +219,7 @@ class _AiFeatureOnlineStoreState:
|
|
219
219
|
:param pulumi.Input['AiFeatureOnlineStoreBigtableArgs'] bigtable: Settings for Cloud Bigtable instance that will be created to serve featureValues for all FeatureViews under this FeatureOnlineStore.
|
220
220
|
Structure is documented below.
|
221
221
|
:param pulumi.Input[str] create_time: The timestamp of when the feature online store was created in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
|
222
|
-
:param pulumi.Input['AiFeatureOnlineStoreDedicatedServingEndpointArgs'] dedicated_serving_endpoint: The dedicated serving endpoint for this FeatureOnlineStore, which is different from common vertex service endpoint. Only need to set when you choose Optimized storage type or enable EmbeddingManagement. Will use public endpoint by default.
|
222
|
+
:param pulumi.Input['AiFeatureOnlineStoreDedicatedServingEndpointArgs'] dedicated_serving_endpoint: The dedicated serving endpoint for this FeatureOnlineStore, which is different from common vertex service endpoint. Only need to be set when you choose Optimized storage type or enable EmbeddingManagement. Will use public endpoint by default.
|
223
223
|
Structure is documented below.
|
224
224
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
225
225
|
:param pulumi.Input['AiFeatureOnlineStoreEmbeddingManagementArgs'] embedding_management: The settings for embedding management in FeatureOnlineStore. Embedding management can only be set for BigTable. It is enabled by default for optimized storagetype.
|
@@ -307,7 +307,7 @@ class _AiFeatureOnlineStoreState:
|
|
307
307
|
@pulumi.getter(name="dedicatedServingEndpoint")
|
308
308
|
def dedicated_serving_endpoint(self) -> Optional[pulumi.Input['AiFeatureOnlineStoreDedicatedServingEndpointArgs']]:
|
309
309
|
"""
|
310
|
-
The dedicated serving endpoint for this FeatureOnlineStore, which is different from common vertex service endpoint. Only need to set when you choose Optimized storage type or enable EmbeddingManagement. Will use public endpoint by default.
|
310
|
+
The dedicated serving endpoint for this FeatureOnlineStore, which is different from common vertex service endpoint. Only need to be set when you choose Optimized storage type or enable EmbeddingManagement. Will use public endpoint by default.
|
311
311
|
Structure is documented below.
|
312
312
|
"""
|
313
313
|
return pulumi.get(self, "dedicated_serving_endpoint")
|
@@ -518,7 +518,7 @@ class AiFeatureOnlineStore(pulumi.CustomResource):
|
|
518
518
|
},
|
519
519
|
})
|
520
520
|
```
|
521
|
-
### Vertex Ai Featureonlinestore With
|
521
|
+
### Vertex Ai Featureonlinestore With Optimized
|
522
522
|
|
523
523
|
```python
|
524
524
|
import pulumi
|
@@ -599,7 +599,7 @@ class AiFeatureOnlineStore(pulumi.CustomResource):
|
|
599
599
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
600
600
|
:param pulumi.Input[Union['AiFeatureOnlineStoreBigtableArgs', 'AiFeatureOnlineStoreBigtableArgsDict']] bigtable: Settings for Cloud Bigtable instance that will be created to serve featureValues for all FeatureViews under this FeatureOnlineStore.
|
601
601
|
Structure is documented below.
|
602
|
-
:param pulumi.Input[Union['AiFeatureOnlineStoreDedicatedServingEndpointArgs', 'AiFeatureOnlineStoreDedicatedServingEndpointArgsDict']] dedicated_serving_endpoint: The dedicated serving endpoint for this FeatureOnlineStore, which is different from common vertex service endpoint. Only need to set when you choose Optimized storage type or enable EmbeddingManagement. Will use public endpoint by default.
|
602
|
+
:param pulumi.Input[Union['AiFeatureOnlineStoreDedicatedServingEndpointArgs', 'AiFeatureOnlineStoreDedicatedServingEndpointArgsDict']] dedicated_serving_endpoint: The dedicated serving endpoint for this FeatureOnlineStore, which is different from common vertex service endpoint. Only need to be set when you choose Optimized storage type or enable EmbeddingManagement. Will use public endpoint by default.
|
603
603
|
Structure is documented below.
|
604
604
|
:param pulumi.Input[Union['AiFeatureOnlineStoreEmbeddingManagementArgs', 'AiFeatureOnlineStoreEmbeddingManagementArgsDict']] embedding_management: The settings for embedding management in FeatureOnlineStore. Embedding management can only be set for BigTable. It is enabled by default for optimized storagetype.
|
605
605
|
Structure is documented below.
|
@@ -655,7 +655,7 @@ class AiFeatureOnlineStore(pulumi.CustomResource):
|
|
655
655
|
},
|
656
656
|
})
|
657
657
|
```
|
658
|
-
### Vertex Ai Featureonlinestore With
|
658
|
+
### Vertex Ai Featureonlinestore With Optimized
|
659
659
|
|
660
660
|
```python
|
661
661
|
import pulumi
|
@@ -817,7 +817,7 @@ class AiFeatureOnlineStore(pulumi.CustomResource):
|
|
817
817
|
:param pulumi.Input[Union['AiFeatureOnlineStoreBigtableArgs', 'AiFeatureOnlineStoreBigtableArgsDict']] bigtable: Settings for Cloud Bigtable instance that will be created to serve featureValues for all FeatureViews under this FeatureOnlineStore.
|
818
818
|
Structure is documented below.
|
819
819
|
:param pulumi.Input[str] create_time: The timestamp of when the feature online store was created in RFC3339 UTC "Zulu" format, with nanosecond resolution and up to nine fractional digits.
|
820
|
-
:param pulumi.Input[Union['AiFeatureOnlineStoreDedicatedServingEndpointArgs', 'AiFeatureOnlineStoreDedicatedServingEndpointArgsDict']] dedicated_serving_endpoint: The dedicated serving endpoint for this FeatureOnlineStore, which is different from common vertex service endpoint. Only need to set when you choose Optimized storage type or enable EmbeddingManagement. Will use public endpoint by default.
|
820
|
+
:param pulumi.Input[Union['AiFeatureOnlineStoreDedicatedServingEndpointArgs', 'AiFeatureOnlineStoreDedicatedServingEndpointArgsDict']] dedicated_serving_endpoint: The dedicated serving endpoint for this FeatureOnlineStore, which is different from common vertex service endpoint. Only need to be set when you choose Optimized storage type or enable EmbeddingManagement. Will use public endpoint by default.
|
821
821
|
Structure is documented below.
|
822
822
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
|
823
823
|
:param pulumi.Input[Union['AiFeatureOnlineStoreEmbeddingManagementArgs', 'AiFeatureOnlineStoreEmbeddingManagementArgsDict']] embedding_management: The settings for embedding management in FeatureOnlineStore. Embedding management can only be set for BigTable. It is enabled by default for optimized storagetype.
|
@@ -884,7 +884,7 @@ class AiFeatureOnlineStore(pulumi.CustomResource):
|
|
884
884
|
@pulumi.getter(name="dedicatedServingEndpoint")
|
885
885
|
def dedicated_serving_endpoint(self) -> pulumi.Output['outputs.AiFeatureOnlineStoreDedicatedServingEndpoint']:
|
886
886
|
"""
|
887
|
-
The dedicated serving endpoint for this FeatureOnlineStore, which is different from common vertex service endpoint. Only need to set when you choose Optimized storage type or enable EmbeddingManagement. Will use public endpoint by default.
|
887
|
+
The dedicated serving endpoint for this FeatureOnlineStore, which is different from common vertex service endpoint. Only need to be set when you choose Optimized storage type or enable EmbeddingManagement. Will use public endpoint by default.
|
888
888
|
Structure is documented below.
|
889
889
|
"""
|
890
890
|
return pulumi.get(self, "dedicated_serving_endpoint")
|
pulumi_gcp/vertex/outputs.py
CHANGED
@@ -987,7 +987,7 @@ class AiFeatureGroupBigQuery(dict):
|
|
987
987
|
"""
|
988
988
|
:param 'AiFeatureGroupBigQueryBigQuerySourceArgs' big_query_source: The BigQuery source URI that points to either a BigQuery Table or View.
|
989
989
|
Structure is documented below.
|
990
|
-
:param Sequence[str] entity_id_columns: Columns to construct entityId / row keys.
|
990
|
+
:param Sequence[str] entity_id_columns: Columns to construct entityId / row keys. If not provided defaults to entityId.
|
991
991
|
"""
|
992
992
|
pulumi.set(__self__, "big_query_source", big_query_source)
|
993
993
|
if entity_id_columns is not None:
|
@@ -1006,7 +1006,7 @@ class AiFeatureGroupBigQuery(dict):
|
|
1006
1006
|
@pulumi.getter(name="entityIdColumns")
|
1007
1007
|
def entity_id_columns(self) -> Optional[Sequence[str]]:
|
1008
1008
|
"""
|
1009
|
-
Columns to construct entityId / row keys.
|
1009
|
+
Columns to construct entityId / row keys. If not provided defaults to entityId.
|
1010
1010
|
"""
|
1011
1011
|
return pulumi.get(self, "entity_id_columns")
|
1012
1012
|
|
@@ -1,8 +1,8 @@
|
|
1
|
-
pulumi_gcp/__init__.py,sha256=
|
1
|
+
pulumi_gcp/__init__.py,sha256=oPBHGqOlGn3ZbsbgIc-CpNmhWzR0aDQvzAj-uEBmWlM,195575
|
2
2
|
pulumi_gcp/_inputs.py,sha256=Od7fuuGzQlwMR_yFc1c5R1CuvtPhgRpe262W7i6UPKc,1873
|
3
3
|
pulumi_gcp/_utilities.py,sha256=zozFZPZGnJJ7MjOYHQPdH-l-EHcRcX5lh5TVi22oTCw,10446
|
4
4
|
pulumi_gcp/provider.py,sha256=4DKjx_BTgdiSgaj7a7a5RI2on-hIuClkcxnRrYUSaRI,189530
|
5
|
-
pulumi_gcp/pulumi-plugin.json,sha256=
|
5
|
+
pulumi_gcp/pulumi-plugin.json,sha256=X3a-o_5ydG1BSgb3ljUfwvfNgiJOXpf_xX2e3jU9Ins,80
|
6
6
|
pulumi_gcp/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
7
7
|
pulumi_gcp/accessapproval/__init__.py,sha256=VpbPp-2Rb1295tFUB_3aO6TvbS1UhYt3ycgAzrNVqOU,402
|
8
8
|
pulumi_gcp/accessapproval/get_folder_service_account.py,sha256=a7n0fXqd0P2VIQDnH9jJDauHGPeE4ngHbPGGAi725iQ,5747
|
@@ -115,7 +115,7 @@ pulumi_gcp/applicationintegration/client.py,sha256=rDe1oo8Cded-lpaZMcKq8ue_ikDFj
|
|
115
115
|
pulumi_gcp/applicationintegration/outputs.py,sha256=fLptEULochZpyJa80HM9mbXZMwCanc719OLsinNoJYE,41080
|
116
116
|
pulumi_gcp/artifactregistry/__init__.py,sha256=bzEcRR-7U_DaS_tZVr2MZHRlFR2NIovkKlIGsbn0DC0,583
|
117
117
|
pulumi_gcp/artifactregistry/_inputs.py,sha256=g5UoklcBz6_-IBFPC5ZFlJ2epe8y4r_xpdY52bk-5Pg,64264
|
118
|
-
pulumi_gcp/artifactregistry/get_docker_image.py,sha256=
|
118
|
+
pulumi_gcp/artifactregistry/get_docker_image.py,sha256=io4a2yFDRQ8xJ-uFb4NE-95zTI5jeT7BhZOJj_6U6zQ,10535
|
119
119
|
pulumi_gcp/artifactregistry/get_repository.py,sha256=f0Y03D04e24tMJKuE-hRY6omO2FR9qaM09XHhpF0lHM,13065
|
120
120
|
pulumi_gcp/artifactregistry/get_repository_iam_policy.py,sha256=ZjE8teMgY_2evWzLDr43fMhzN1PwEur_hFLINNBVcQc,7076
|
121
121
|
pulumi_gcp/artifactregistry/outputs.py,sha256=lJO95gn2W8N5KgB7kF54cs8ny0mAmr5kbHzUeAbw9-8,80880
|
@@ -201,7 +201,7 @@ pulumi_gcp/bigquerydatapolicy/outputs.py,sha256=Oy2A1y3OErHE3V8Ymdy25Hnkwx9tii57
|
|
201
201
|
pulumi_gcp/bigtable/__init__.py,sha256=kt14Qjgv4IFG3DZNFgX0vGMOAhjc65mvHWIGGOzWMqY,693
|
202
202
|
pulumi_gcp/bigtable/_inputs.py,sha256=9IPWCb-iQZr9Bvvlxgdyi-VsLKnyKPldJvzsB2fpjMk,34951
|
203
203
|
pulumi_gcp/bigtable/authorized_view.py,sha256=LiIPEMSG25tQZbAsYy5nTie4gAx8W3VNjqmSk5nH1cg,19648
|
204
|
-
pulumi_gcp/bigtable/gc_policy.py,sha256=
|
204
|
+
pulumi_gcp/bigtable/gc_policy.py,sha256=XN3MGBfVukUSBgZxh_ilCuwfAboRsZvh-ZI4jUvrouM,37621
|
205
205
|
pulumi_gcp/bigtable/get_instance_iam_policy.py,sha256=3sYTk4apGLXENF-hPDbuxgXN0m2FAqjbzdx0mnLBzh0,4821
|
206
206
|
pulumi_gcp/bigtable/get_table_iam_policy.py,sha256=OkdEkLyjNd2LT3FaxgHDgkIU2Pvr9QhqmohwTHjtB7M,5490
|
207
207
|
pulumi_gcp/bigtable/instance.py,sha256=65AyZ-ziVGZqpzW6edNKE0TgTFqhRoeP0fYbBsj5tIM,46178
|
@@ -319,14 +319,14 @@ pulumi_gcp/cloudfunctions/get_function.py,sha256=eOAdgeMbixma4YLhZ1dx34eQhnOBooe
|
|
319
319
|
pulumi_gcp/cloudfunctions/get_function_iam_policy.py,sha256=YdS4okuU6NvW_5raJCh0Q8WVXWzdcJufEjxafW8Ugqc,7015
|
320
320
|
pulumi_gcp/cloudfunctions/outputs.py,sha256=xstVKrqRlP6KQ7Uh5cvXl7YM_k_t81U0v8FrvE5hJmU,27246
|
321
321
|
pulumi_gcp/cloudfunctionsv2/__init__.py,sha256=symIZkgoDsvQOPeyY4xgpHzvWjnNx_0j3IJtsMmWPSU,511
|
322
|
-
pulumi_gcp/cloudfunctionsv2/_inputs.py,sha256
|
323
|
-
pulumi_gcp/cloudfunctionsv2/function.py,sha256=
|
322
|
+
pulumi_gcp/cloudfunctionsv2/_inputs.py,sha256=xWAZiCdlImTvkScJ_ptkM895TpE6sScAb2zYPoFenMQ,71031
|
323
|
+
pulumi_gcp/cloudfunctionsv2/function.py,sha256=1wXL1URHHts5mud4ktgHcGeDIr71AH8liLLqvQ8evqs,99011
|
324
324
|
pulumi_gcp/cloudfunctionsv2/function_iam_binding.py,sha256=9SGwSSm1Kufya7ogC7RFAQX0piw9Qp1_jeW9G4Bb9wg,41743
|
325
325
|
pulumi_gcp/cloudfunctionsv2/function_iam_member.py,sha256=ZTwtscGFpr-N5PQpRxmSUa-ktV0gTqPBvn2A1iC64XY,41344
|
326
326
|
pulumi_gcp/cloudfunctionsv2/function_iam_policy.py,sha256=h0HZ2APDGVdiTPYmG4c22_8HK0fFE53s75Z81bAx3CI,28010
|
327
327
|
pulumi_gcp/cloudfunctionsv2/get_function.py,sha256=wj2EyWvEJXrwD_fKC52Np_BsvEk96HSWzBjQXbQYr2A,10332
|
328
328
|
pulumi_gcp/cloudfunctionsv2/get_function_iam_policy.py,sha256=OhlTZDcuL9Hbg3R2Ja4HwK8hvNkE6wxHh0UEfxy9KUg,7065
|
329
|
-
pulumi_gcp/cloudfunctionsv2/outputs.py,sha256=
|
329
|
+
pulumi_gcp/cloudfunctionsv2/outputs.py,sha256=yOoD0DbOxkHIuJlw1mz2Xku-27p0iY3dhSTKF8Dh1Sw,86013
|
330
330
|
pulumi_gcp/cloudidentity/__init__.py,sha256=qtt6_5IseJoJ7N9OkPVyXzoO_gxXb0yQt_VtX96ssNY,462
|
331
331
|
pulumi_gcp/cloudidentity/_inputs.py,sha256=PexG2hDqOdf0E_Avl8GOdcuE8yv0bF7TJ4bnQxwSnkw,22431
|
332
332
|
pulumi_gcp/cloudidentity/get_group_lookup.py,sha256=8wVacKv9Z4GpsNgUg0oxIBfi0VkGv0JvL5A8Ki758NA,4783
|
@@ -392,8 +392,8 @@ pulumi_gcp/composer/outputs.py,sha256=KUUtqQwHoNY_2WXjvLF43HNJ0l1p8-YyqIjBi7-g6A
|
|
392
392
|
pulumi_gcp/composer/user_workloads_config_map.py,sha256=M6NSkyoynso3eds8tV7q46mzdctIFGf-enzVXoH4WMs,18822
|
393
393
|
pulumi_gcp/composer/user_workloads_secret.py,sha256=mp6saCNm2C2_jFuT-ozhHDaoZ60ewWRRYjWZ2m4ZKD4,17350
|
394
394
|
pulumi_gcp/compute/__init__.py,sha256=QHKaDtw6s7v1TSsq-prQuungpDhZpExNlW6RG4vUfYA,7404
|
395
|
-
pulumi_gcp/compute/_inputs.py,sha256=
|
396
|
-
pulumi_gcp/compute/address.py,sha256=
|
395
|
+
pulumi_gcp/compute/_inputs.py,sha256=aR6q8FloyhgkL2_MxFsB-_6OECneSRtR6TjdR1zVXsM,2637353
|
396
|
+
pulumi_gcp/compute/address.py,sha256=jPeXP2Ny6sdoGN9KHRGni51r1PzpLZ009k1YQJ-kx3E,69396
|
397
397
|
pulumi_gcp/compute/attached_disk.py,sha256=tV-BKNGcU_iRloyaEHLSGJ0FvJhyDzQkzvIOAMVMhHo,28041
|
398
398
|
pulumi_gcp/compute/autoscaler.py,sha256=JgG-yufJAxVNzNODIXjP5tvqeCVv679XHS9DB63OXhk,32484
|
399
399
|
pulumi_gcp/compute/backend_bucket.py,sha256=d-McntcZH6iqjKdSHV3EgYj5fQEsmAXZbXK5HFzWeNQ,38710
|
@@ -401,7 +401,7 @@ pulumi_gcp/compute/backend_bucket_iam_binding.py,sha256=hdd7Xw76-EIYcBl3Nft6tbRQ
|
|
401
401
|
pulumi_gcp/compute/backend_bucket_iam_member.py,sha256=X7bFuO_eB5eKXpKTSJvHbwfiv6rzvADFHFZWYKsS38o,28881
|
402
402
|
pulumi_gcp/compute/backend_bucket_iam_policy.py,sha256=CUWg1-bspuZ8TUt6N-YPFlpeE2iABxLyUS4HDdtT3lI,15510
|
403
403
|
pulumi_gcp/compute/backend_bucket_signed_url_key.py,sha256=E6X5J9_KxjMvWyoJi-NvRuH496sFO7WrBzFWUI90t9I,16139
|
404
|
-
pulumi_gcp/compute/backend_service.py,sha256=
|
404
|
+
pulumi_gcp/compute/backend_service.py,sha256=7egWL5vC-JO8i1pefr7g4y-D_jqjkfGaQ67MMLg93_Q,150520
|
405
405
|
pulumi_gcp/compute/backend_service_iam_binding.py,sha256=Nf-1KCoCHlvqlemzK-0OCXwzEj7MmOQS4lxwDAQKBVs,30862
|
406
406
|
pulumi_gcp/compute/backend_service_iam_member.py,sha256=uV7oiXSKouYdVfH2Id5O3Rb9n1DTC1-8Pxqw23LetW4,30457
|
407
407
|
pulumi_gcp/compute/backend_service_iam_policy.py,sha256=cFjuCmzfbxk3-Pkq71mJQMtNf70r6y8LR7xxtrOJUfw,15586
|
@@ -418,7 +418,7 @@ pulumi_gcp/compute/firewall.py,sha256=F0QrgA8BoJZFbkG3h6SY82Ir6-i8CXw1HX-85QphR2
|
|
418
418
|
pulumi_gcp/compute/firewall_policy.py,sha256=ABk5tSvBUkmQzyU43ALKcVlDyjaC1ej48i1FItlsZtM,24340
|
419
419
|
pulumi_gcp/compute/firewall_policy_association.py,sha256=B3FfQYSY-iepJki5zwUfPTJ3O3fGKpdjuVUBKfaJuSU,14764
|
420
420
|
pulumi_gcp/compute/firewall_policy_rule.py,sha256=6L3aJtztJs72DCELrG18qX5uORgkp1hHI8TpJ85BDtQ,47461
|
421
|
-
pulumi_gcp/compute/forwarding_rule.py,sha256=
|
421
|
+
pulumi_gcp/compute/forwarding_rule.py,sha256=ojRYX8JCYbwkho6QaZJbLTPvlR-D3PgTJiNMygqNuq0,209032
|
422
422
|
pulumi_gcp/compute/get_address.py,sha256=kmkZdKox9-GLjOi_RvNGuTJlJQrj_28WGL5hBGtc-T0,9790
|
423
423
|
pulumi_gcp/compute/get_addresses.py,sha256=6tbNsV6F_YYrczF3IIXMa-yOOZNlrE2HnWO2tiBv6uw,9654
|
424
424
|
pulumi_gcp/compute/get_backend_bucket.py,sha256=dJaMfU6R6ShFhNJqAKeSzkwmtVsfhjFTqZX990QCqoQ,8102
|
@@ -475,7 +475,7 @@ pulumi_gcp/compute/get_subnetworks.py,sha256=TX7pQxDLXuGCv3EcuW8AlQEkKAdokkK2PG6
|
|
475
475
|
pulumi_gcp/compute/get_vpn_gateway.py,sha256=8PlkA5itgAN5MYvVxFlrTm1OWOt8CmLGQH6PKBX8l-Q,5843
|
476
476
|
pulumi_gcp/compute/get_zones.py,sha256=jDFaJGu17VwpNEEh73X4ar4hZpVpPbHeaQe2hHrR6Qw,5202
|
477
477
|
pulumi_gcp/compute/global_address.py,sha256=dhFgSAJgOBqHHT5ElBuiKvyBP9FOL2xMuM45qK6Jo5c,45872
|
478
|
-
pulumi_gcp/compute/global_forwarding_rule.py,sha256=
|
478
|
+
pulumi_gcp/compute/global_forwarding_rule.py,sha256=yQc1-WJxAyljyz-by6LUkV_P1mw43_KMdTjhbSxJwHU,140475
|
479
479
|
pulumi_gcp/compute/global_network_endpoint.py,sha256=-iE8-9ovkolvkNe6HTg3PlxuV1uhDRgZrw0BmXii8Qo,19582
|
480
480
|
pulumi_gcp/compute/global_network_endpoint_group.py,sha256=fSZaC0XA0havktgNYyDZ4i2jd-6S4z9SLStYQGtyvWU,24525
|
481
481
|
pulumi_gcp/compute/ha_vpn_gateway.py,sha256=ob-lglCrti_HWYXZ9D3p76ovv6PSop_gQwB6bNOvQPk,33301
|
@@ -504,10 +504,10 @@ pulumi_gcp/compute/machine_image.py,sha256=nDD-CrJQRjEOt4Y_guIaBVsPjTJ_yurMA3Gjg
|
|
504
504
|
pulumi_gcp/compute/machine_image_iam_binding.py,sha256=3VLVR6JIrXIbEcdiQ72Jugj4dDfqRGG0J0Fi15b3DtA,46641
|
505
505
|
pulumi_gcp/compute/machine_image_iam_member.py,sha256=N13kLj8ALjjv4V8BAOpePHfNd-0CMlT6BsTOaI33uG0,46236
|
506
506
|
pulumi_gcp/compute/machine_image_iam_policy.py,sha256=5YJJWpSwNmt1ss98iXS3WfvDR25BwT0GR8oqOBcylAs,31417
|
507
|
-
pulumi_gcp/compute/managed_ssl_certificate.py,sha256=
|
508
|
-
pulumi_gcp/compute/manged_ssl_certificate.py,sha256=
|
507
|
+
pulumi_gcp/compute/managed_ssl_certificate.py,sha256=64no5OILVTHSvIcZIL60V54aTIuwWN918Rs3IgEuAfs,35153
|
508
|
+
pulumi_gcp/compute/manged_ssl_certificate.py,sha256=p1Evwu2I0TwN8jV1Llyy0gvCfsF2OZo1Nr9X0cUZXDI,35362
|
509
509
|
pulumi_gcp/compute/network.py,sha256=l49MijF8C84SVK88PabDSTBfzNmOQrlDfU0c0Gduu5Y,49848
|
510
|
-
pulumi_gcp/compute/network_attachment.py,sha256=
|
510
|
+
pulumi_gcp/compute/network_attachment.py,sha256=tLVm2C4gnhq8Rlh6eRf9ythC7Woku7kz7LSbi6aQnyM,48354
|
511
511
|
pulumi_gcp/compute/network_edge_security_service.py,sha256=0VoHSb7b30YdmIh9ktnGqk2q2xcVHtLJha2KRNVEEkk,24849
|
512
512
|
pulumi_gcp/compute/network_endpoint.py,sha256=boNs3lPfK3DQ4XUNSu4DvNvbQSr3-NC-z8CRJv7V90Q,26515
|
513
513
|
pulumi_gcp/compute/network_endpoint_group.py,sha256=Ysz2MqB4iYva9UwroXx_XCSWkxQzKpm7QkrzjlB7Ez8,39505
|
@@ -522,7 +522,7 @@ pulumi_gcp/compute/node_template.py,sha256=L7jb3K0ot6Pt8F3FBlOwPuDPXiF9q8G4nQ1p2
|
|
522
522
|
pulumi_gcp/compute/organization_security_policy.py,sha256=mJ7JCQ3VCKkHj6BXb4K7rDcL7tSD2cSSV58K5p1Bmpk,19298
|
523
523
|
pulumi_gcp/compute/organization_security_policy_association.py,sha256=6raYSoIrThdV0TVIR43cDOzMJ9ewD3STgcjy63mav-8,16283
|
524
524
|
pulumi_gcp/compute/organization_security_policy_rule.py,sha256=_8aMOkHzR0H7dd6KE_-eS0g8fHn438n4HCz8sEKnDL8,35302
|
525
|
-
pulumi_gcp/compute/outputs.py,sha256=
|
525
|
+
pulumi_gcp/compute/outputs.py,sha256=XBWS5rNZWqRMYPwnxOQvI34YkR3EG9M1a1Y4lJaf-zI,2439403
|
526
526
|
pulumi_gcp/compute/packet_mirroring.py,sha256=UjYvQrY-DB140XNPougNFIGGUxic9y4TZs9kCxVIUD4,34953
|
527
527
|
pulumi_gcp/compute/per_instance_config.py,sha256=Mm9mcwW8UYikOQ_4aEpZTn9MeYhgBSmvpPXAQ2-KEtQ,38363
|
528
528
|
pulumi_gcp/compute/project_cloud_armor_tier.py,sha256=Oy_B24uxg0sATxqHAY7S4ZrFwXU-wNjNGlhHgKRFVyE,13127
|
@@ -532,7 +532,7 @@ pulumi_gcp/compute/project_metadata_item.py,sha256=eT1St_bXay_4W6EVxq_WiAW0cvyJW
|
|
532
532
|
pulumi_gcp/compute/public_advertised_prefix.py,sha256=dRedpRyCozumeQcabM7AlNu9POscfvF6SjFtk0dpy-g,21738
|
533
533
|
pulumi_gcp/compute/public_delegated_prefix.py,sha256=Ka8zA9wZRNexfVJd-wIOR-19bD2_mlQu70AJTTtkEwk,26532
|
534
534
|
pulumi_gcp/compute/region_autoscaler.py,sha256=YlQtrK6aRRlqJ3l4JoaJ26sGyOiHe1C21L6cNSoUVqc,29527
|
535
|
-
pulumi_gcp/compute/region_backend_service.py,sha256=
|
535
|
+
pulumi_gcp/compute/region_backend_service.py,sha256=D7iB1OLF_alY-22sihKBnASXATK-KkAuw6N50qqZvBc,142926
|
536
536
|
pulumi_gcp/compute/region_backend_service_iam_binding.py,sha256=cx2j4cRqRISX2nwFuggkit5Kq0jBqRYBSJZNuxdeSuY,35913
|
537
537
|
pulumi_gcp/compute/region_backend_service_iam_member.py,sha256=CwuurtGpEqdVyE8LWSpRLr2ORKSBXGEVpjXe0dfiwcc,35508
|
538
538
|
pulumi_gcp/compute/region_backend_service_iam_policy.py,sha256=gjg5HOOcLBNWHU9QxXPd528ef8x22eDchZk7Jp9MSHw,20481
|
@@ -553,7 +553,7 @@ pulumi_gcp/compute/region_network_firewall_policy_rule.py,sha256=0zQBqZiKI5q0JqU
|
|
553
553
|
pulumi_gcp/compute/region_per_instance_config.py,sha256=wh7EfcWv_I2_8uLowVWrFXXCCz__DgQnnoYISHjUsec,39772
|
554
554
|
pulumi_gcp/compute/region_security_policy.py,sha256=2ZuNoJcT3o0-5r31xn9L57UYvOrMTviAUVKt3fFpmm0,43977
|
555
555
|
pulumi_gcp/compute/region_security_policy_rule.py,sha256=9FNnT4rG8aiPJ66T2c02S-W4uBP2xdj_tRXWUNBBu5M,67899
|
556
|
-
pulumi_gcp/compute/region_ssl_certificate.py,sha256=
|
556
|
+
pulumi_gcp/compute/region_ssl_certificate.py,sha256=qCnoCegdoYIw_XH36Vw9tC8SdM5nf3sc74GmfZ7jbZo,32401
|
557
557
|
pulumi_gcp/compute/region_ssl_policy.py,sha256=U5HN89-oHnOs3XI2S5NBo-paZ6vUCQOKuNRvFxU_o3w,38410
|
558
558
|
pulumi_gcp/compute/region_target_http_proxy.py,sha256=jmR2A__UMysld8HSYIItFmhEjnf9zl2zhHSdoE4ePsg,28310
|
559
559
|
pulumi_gcp/compute/region_target_https_proxy.py,sha256=_e2o7N4T3TVQVPCQkywyI0lmIS-qEzrIM557KhNRK3U,56914
|
@@ -577,7 +577,7 @@ pulumi_gcp/compute/snapshot.py,sha256=Iz4CoHDAzGWVD7rsJa1nN6TMJ52lyOgWca4_CzjprI
|
|
577
577
|
pulumi_gcp/compute/snapshot_iam_binding.py,sha256=UHdm5yxj29TKnUfS8BsJzeFEICtJR3Mw-9028UjrzM8,35948
|
578
578
|
pulumi_gcp/compute/snapshot_iam_member.py,sha256=S2_217Bi-Ztn-WMGVvquRDRHh8EcmvwHMNG9RVdmEe4,35549
|
579
579
|
pulumi_gcp/compute/snapshot_iam_policy.py,sha256=i3gAeJMxFsTd1-uqUi1Q28PHbCbLJCyBsKc9DKogMR4,22278
|
580
|
-
pulumi_gcp/compute/ssl_certificate.py,sha256=
|
580
|
+
pulumi_gcp/compute/ssl_certificate.py,sha256=yjdukhAJubwigT3k0tZnT6CRRgG2Yt64575d9KPiHvY,29337
|
581
581
|
pulumi_gcp/compute/ssl_policy.py,sha256=Dij4lvB16hPe9yC-DpldUrAakKnjit4mY8ybxCWsXdw,38383
|
582
582
|
pulumi_gcp/compute/subnetwork.py,sha256=U4QJXH9FvxOlWPeQAfldZLNpTd2_AEZFf8LFZoJwJoU,86028
|
583
583
|
pulumi_gcp/compute/subnetwork_iam_binding.py,sha256=4RrwekXhAaOF4u69mGW016dS8z7-nwjUxfL6KM24GzA,53614
|
@@ -585,12 +585,12 @@ pulumi_gcp/compute/subnetwork_iam_member.py,sha256=nOgmlqP8GBuf43L5on6JSvnmasFrd
|
|
585
585
|
pulumi_gcp/compute/subnetwork_iam_policy.py,sha256=HzY2WAKkgu_Ituw9PDFJtxBdPIaqrYtee3ZnvhEjDH0,38442
|
586
586
|
pulumi_gcp/compute/target_grpc_proxy.py,sha256=Td69s0fnSdFc2umoL8ecnBLGHx3Ue_4WFB_dFgFxgo4,38908
|
587
587
|
pulumi_gcp/compute/target_http_proxy.py,sha256=MEtrETnrqlAoAx1wlm1DOj4XAQDZ_ug6X0zZYUI5yIE,35712
|
588
|
-
pulumi_gcp/compute/target_https_proxy.py,sha256=
|
588
|
+
pulumi_gcp/compute/target_https_proxy.py,sha256=hGALz1jDO0K6u4671EoVUekbUnpLVdA4Kl-i21wrluE,81045
|
589
589
|
pulumi_gcp/compute/target_instance.py,sha256=VO0HnNr4qt6dGTpgZHS-IAf_w78iTR8e0m4flZrBGsk,40937
|
590
590
|
pulumi_gcp/compute/target_pool.py,sha256=XmIPzU08LnsPWnOGQTW2KB4yWoXbEd18Z1y86ByaRt4,33721
|
591
591
|
pulumi_gcp/compute/target_ssl_proxy.py,sha256=fh1-dkUwxcmhzFjjh5FRZAiA3MJIphuYOrja-6CVTfc,36602
|
592
592
|
pulumi_gcp/compute/target_tcp_proxy.py,sha256=pvoL9889G37JJo2DYhA9IzVcpLH9R_tH54tQxiKaTz4,28102
|
593
|
-
pulumi_gcp/compute/url_map.py,sha256=
|
593
|
+
pulumi_gcp/compute/url_map.py,sha256=ecl9U3-FuYsYbONAKZ2toDxN7OS4G2GxDHZE6VRzNkw,111907
|
594
594
|
pulumi_gcp/compute/vpn_gateway.py,sha256=b2wYaaS9upuWhm1wmk4WWwdWoHSHlIvaiOiRfqoXKf4,26198
|
595
595
|
pulumi_gcp/compute/vpn_tunnel.py,sha256=-GIGPHcB2bTFNgJhV_kaJEzoJOcs5oiAw6zaRES7UdY,71020
|
596
596
|
pulumi_gcp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
@@ -600,11 +600,11 @@ pulumi_gcp/config/vars.py,sha256=sQ4XTZK0wPYmdCKrosTG24gqEcKeeoei_QQwHeVFjb4,240
|
|
600
600
|
pulumi_gcp/container/__init__.py,sha256=KbuEacj9tsLxH3rVHSnPd3VtGOOnpdgVgv-Fq0o_Ll4,845
|
601
601
|
pulumi_gcp/container/_inputs.py,sha256=jlgphia_cfkWRttYCtNGZF-78hm2mspHoA4SFEsX4SE,885312
|
602
602
|
pulumi_gcp/container/attached_cluster.py,sha256=eW1dhZevG_w-EV4dHJejfBS58Uoh2LBDnHYVyOkN_vk,70861
|
603
|
-
pulumi_gcp/container/aws_cluster.py,sha256=
|
604
|
-
pulumi_gcp/container/aws_node_pool.py,sha256=
|
605
|
-
pulumi_gcp/container/azure_client.py,sha256=
|
606
|
-
pulumi_gcp/container/azure_cluster.py,sha256=
|
607
|
-
pulumi_gcp/container/azure_node_pool.py,sha256=
|
603
|
+
pulumi_gcp/container/aws_cluster.py,sha256=N8ZRdDv6CkrVaGbcWlAH-Lma6ja3TG8lEqaCoOblUu4,68474
|
604
|
+
pulumi_gcp/container/aws_node_pool.py,sha256=VJCL9S_oxRsG8GeCgsZOuBzJmdeD4dbdI4Bxj8SBhTo,76527
|
605
|
+
pulumi_gcp/container/azure_client.py,sha256=ja1BM7oekdhXD9hOFh4X2LauSGFyI-eaKEUfOEO1W-0,20178
|
606
|
+
pulumi_gcp/container/azure_cluster.py,sha256=TttYV2arWiwnkVK-t1TgtmDSaEwMxA2O0jNwE7zLsfI,69089
|
607
|
+
pulumi_gcp/container/azure_node_pool.py,sha256=KNyMmaLfRMdukJRMGtK9F0K2V6iTpSEDmDVBfaGRu0I,56341
|
608
608
|
pulumi_gcp/container/cluster.py,sha256=vvUe-B85Xvx6-XKHzePfU-4HMDivZu4Mk0Y4OBnEmBM,291917
|
609
609
|
pulumi_gcp/container/get_attached_install_manifest.py,sha256=Knzch2p6acAM6HM61HfH7ms2UkZeYhYJ2lQMkOKanm0,7128
|
610
610
|
pulumi_gcp/container/get_attached_versions.py,sha256=WA1WJ4W-hmonpazM1Wd5iFtyQyAkjpxUP7E1kO87WbY,5049
|
@@ -673,10 +673,10 @@ pulumi_gcp/dataform/repository_iam_policy.py,sha256=HdhNzSUtasMR3rECpQ1Hat3adU81
|
|
673
673
|
pulumi_gcp/dataform/repository_release_config.py,sha256=d5W0mjfJFzIUbLhf0KfmDrdY74LXWX1xm-6OMWEr9vE,33035
|
674
674
|
pulumi_gcp/dataform/repository_workflow_config.py,sha256=ZKgEJA2RjvMoprkisblWze9qhUvUMZHheOasiQ051bY,35432
|
675
675
|
pulumi_gcp/datafusion/__init__.py,sha256=Ai56VHujIogrsXwXCE2f8so6I78uHxQKWXJqCe_LIQc,377
|
676
|
-
pulumi_gcp/datafusion/_inputs.py,sha256=
|
676
|
+
pulumi_gcp/datafusion/_inputs.py,sha256=OdELcgb3h6WgjJystFr42f7KawOgirfzc4lo2jrr6SA,18099
|
677
677
|
pulumi_gcp/datafusion/get_instance_iam_policy.py,sha256=RGHyZQZQOYa5vgZhGfHuFrJB_j5fQQnbirRcUlfNGuQ,6836
|
678
|
-
pulumi_gcp/datafusion/instance.py,sha256=
|
679
|
-
pulumi_gcp/datafusion/outputs.py,sha256=
|
678
|
+
pulumi_gcp/datafusion/instance.py,sha256=J3q9CkdlEyvSZTW0gSp5JSK5Kh9vlIWz1WP313mET0A,91549
|
679
|
+
pulumi_gcp/datafusion/outputs.py,sha256=miCVht375YNvdwIMWD2h1-lMPnIPKiwociHHSoFTGbk,13991
|
680
680
|
pulumi_gcp/dataloss/__init__.py,sha256=Wo-OVOfvJPKnJF9WXCiV2UvosEqkrKuq2xg0MSV-6rk,527
|
681
681
|
pulumi_gcp/dataloss/_inputs.py,sha256=i89PE-FGK9zhsswQxIFymy_w68Z5yiiVfFV9D2NsYKo,1428759
|
682
682
|
pulumi_gcp/dataloss/outputs.py,sha256=hjEnIYp59F4yAeGa4hv7o1IzLDFU62wf6x1Uc9pbB_k,1007073
|
@@ -953,12 +953,12 @@ pulumi_gcp/gkeonprem/outputs.py,sha256=__rzqA6CUWnNzatbU5qPx0kTOw0KDWfjgJPKO36e4
|
|
953
953
|
pulumi_gcp/gkeonprem/v_mware_cluster.py,sha256=ywkzSThJPgJPDlThk1zD208W_6CZDdE3CBotrBLQOMA,96095
|
954
954
|
pulumi_gcp/gkeonprem/v_mware_node_pool.py,sha256=YIuNQz2I4tcv4h0EKpwQgFtfG-uWN7qS9Rc-CAhEBTQ,43595
|
955
955
|
pulumi_gcp/healthcare/__init__.py,sha256=va96glIWoYUrqVJFXE5I-k0g4vXw3qTjwMD7qWY0J9E,1212
|
956
|
-
pulumi_gcp/healthcare/_inputs.py,sha256=
|
956
|
+
pulumi_gcp/healthcare/_inputs.py,sha256=Z3-Nj26G1j16ADU_I_48secVBNneLS918JPcxPzt9_g,63227
|
957
957
|
pulumi_gcp/healthcare/consent_store.py,sha256=qdJBG9CUl82mt-MyW0pxsoHiTLBs_DBys4EHG6jQ2xI,32722
|
958
958
|
pulumi_gcp/healthcare/consent_store_iam_binding.py,sha256=Mtk5dk4KjUy2yXbLpGFoUmKOuQJCU1Tq0MdW-D9aAqs,36783
|
959
959
|
pulumi_gcp/healthcare/consent_store_iam_member.py,sha256=LZun5ZVcWSoyXR-ZQbOFAiV4U_fTVVhSa-Ca9lRpLtI,36384
|
960
960
|
pulumi_gcp/healthcare/consent_store_iam_policy.py,sha256=2G8MZJrYmO_nqxPJrS1t9-6hbi4KqkJoLpIJuFq2yxs,23012
|
961
|
-
pulumi_gcp/healthcare/dataset.py,sha256=
|
961
|
+
pulumi_gcp/healthcare/dataset.py,sha256=nmbmmx832iZ1hJYgCQkCw6dHcaOg0PlMO3CALxfTvr8,22124
|
962
962
|
pulumi_gcp/healthcare/dataset_iam_binding.py,sha256=wXRNDwFI8mk6_zHlaYsUGCWqaWD56cGCIVcb75fLRFg,29197
|
963
963
|
pulumi_gcp/healthcare/dataset_iam_member.py,sha256=cVL5kAKFH9AW-ZyNaG0iie87MSOokNCadZ14bpxEAbY,28806
|
964
964
|
pulumi_gcp/healthcare/dataset_iam_policy.py,sha256=NVg9iOUCJN9wWRkAKAJVf_P7Sm7tcbtdkM8DnOuUT04,18054
|
@@ -979,7 +979,7 @@ pulumi_gcp/healthcare/hl7_store.py,sha256=dZr-mZ9DR-LkSUB94ulkejj0biagcR6c64ThhJ
|
|
979
979
|
pulumi_gcp/healthcare/hl7_store_iam_binding.py,sha256=rl5I5C-AeSms5vYasd95KmtbSb0UDLA7EuWbVhXLKJo,30192
|
980
980
|
pulumi_gcp/healthcare/hl7_store_iam_member.py,sha256=RL6DFJQ9L7MSU9hPL9ROttMY8D4U_h-CN70aUrj_TLA,29801
|
981
981
|
pulumi_gcp/healthcare/hl7_store_iam_policy.py,sha256=xICIAj8XsyisSs69lyGaA4yNob5C5yZfHaJbfoDCi_8,19029
|
982
|
-
pulumi_gcp/healthcare/outputs.py,sha256=
|
982
|
+
pulumi_gcp/healthcare/outputs.py,sha256=YWjmuZcrcQmuOKpZ48f4l2PWZbkq37xVK0q64FZB8XI,45555
|
983
983
|
pulumi_gcp/iam/__init__.py,sha256=DTMTmz46DH_NNBCZcIJA7shNoyIowB4nkQP2D0d7JY8,690
|
984
984
|
pulumi_gcp/iam/_inputs.py,sha256=_YY5wRSVU5fOwa_lVULyIgnqrSx27eUQxwEUTnl8OEY,72833
|
985
985
|
pulumi_gcp/iam/access_boundary_policy.py,sha256=Ih5OIcKv-9So0VF11txViacGlq98X2cBSgMyzG-DfaY,18953
|
@@ -1042,7 +1042,7 @@ pulumi_gcp/iap/web_type_compute_iam_member.py,sha256=U-BYbtCsiqeqU3u1q6y_otLnNXv
|
|
1042
1042
|
pulumi_gcp/iap/web_type_compute_iam_policy.py,sha256=V8DyxDvD5dHdoS0wXk5Ebl0oxb7lBwI_t1r7C0lGI5A,28499
|
1043
1043
|
pulumi_gcp/identityplatform/__init__.py,sha256=8r0bx-utrXyKc6FKZOrptK3jcY4agCIzA185iAzmnWY,639
|
1044
1044
|
pulumi_gcp/identityplatform/_inputs.py,sha256=55uv_27M8mGGR64ht1O57-U2J3aYq1sPazviArv0Ggw,90608
|
1045
|
-
pulumi_gcp/identityplatform/config.py,sha256=
|
1045
|
+
pulumi_gcp/identityplatform/config.py,sha256=9mR5Wd47iner2O6bXsZiYyZBtkMWtEB-kdPgXhcFfvQ,42024
|
1046
1046
|
pulumi_gcp/identityplatform/default_supported_idp_config.py,sha256=JkzKQGRL85mhJGENWm0oPz2R3Fe-Zttx5k1TNUMpmn0,20009
|
1047
1047
|
pulumi_gcp/identityplatform/inbound_saml_config.py,sha256=t_iptBUVL_7T15ImK2MV5H-syOT0-C4lN79cK_iNOxI,23064
|
1048
1048
|
pulumi_gcp/identityplatform/oauth_idp_config.py,sha256=WVnU9I74MfLZj8Kui8vzYkYwB5yFHYKtgkRcnb_vscI,20724
|
@@ -1085,10 +1085,10 @@ pulumi_gcp/kms/outputs.py,sha256=aiW9UnbSDe4bAbBwKyUdmWUUd3nzPQn_jt467tfH9tA,407
|
|
1085
1085
|
pulumi_gcp/kms/secret_ciphertext.py,sha256=hqJ8mxaNgvUjK-22kC7wMgaJ0_db7Q1ZA2trTkppB8E,18437
|
1086
1086
|
pulumi_gcp/logging/__init__.py,sha256=geeUtRUgWxqy9-jxzVl03xDU0aFBKjz3WvFArJ8RE4E,1208
|
1087
1087
|
pulumi_gcp/logging/_inputs.py,sha256=S7yZLLsSkJQB7H4t_liptp8bEKdBL8a-a_nPi9TV-Gk,101360
|
1088
|
-
pulumi_gcp/logging/billing_account_bucket_config.py,sha256=
|
1088
|
+
pulumi_gcp/logging/billing_account_bucket_config.py,sha256=Xod-BUWg3nrTgqnlEH916PqgsBM1FyHaTzMZS4fV2Rc,30884
|
1089
1089
|
pulumi_gcp/logging/billing_account_exclusion.py,sha256=3KCCsIjhoM5ImsATVRMJ0vxBJGTfou4r851P_zfrbwk,16826
|
1090
1090
|
pulumi_gcp/logging/billing_account_sink.py,sha256=DRL4VyyAYAAbsSeoi2C6W54RnfEyN4-0YctndVFmvUk,33917
|
1091
|
-
pulumi_gcp/logging/folder_bucket_config.py,sha256=
|
1091
|
+
pulumi_gcp/logging/folder_bucket_config.py,sha256=zCTsSqFKe24Eifx7-Embow_sSJPIaRKPSsj5215w-jQ,30175
|
1092
1092
|
pulumi_gcp/logging/folder_exclusion.py,sha256=Cd7mSDgBmVgvM2jhkSYVl2tT278BPr9NEeO_r8hxbNI,17752
|
1093
1093
|
pulumi_gcp/logging/folder_settings.py,sha256=i_9xRHmC9Cat4rjaW_jgjxAG8mkW2q4ciVc4X76g8tY,22768
|
1094
1094
|
pulumi_gcp/logging/folder_sink.py,sha256=9bs4PTgSzahT9KFEo5jrdTTmFbRWASRLBgkJ7DL1I_8,40386
|
@@ -1104,7 +1104,7 @@ pulumi_gcp/logging/log_view_iam_binding.py,sha256=qT_x3fRmoTaq4OPAQIByUuS2VCaWmy
|
|
1104
1104
|
pulumi_gcp/logging/log_view_iam_member.py,sha256=Lps_jfVo7buxYK5UpnTvab9OrUKhbuguFBROcFQtDB0,35372
|
1105
1105
|
pulumi_gcp/logging/log_view_iam_policy.py,sha256=S5Q8jODWkT0-ox_-_e8LNIimJRJzglLXqVjdxQMphHM,20683
|
1106
1106
|
pulumi_gcp/logging/metric.py,sha256=7guIP6SzhJyedai7RonMjOImDQPT-Z3wMRPP6PrFVio,49891
|
1107
|
-
pulumi_gcp/logging/organization_bucket_config.py,sha256=
|
1107
|
+
pulumi_gcp/logging/organization_bucket_config.py,sha256=r8CRYqzkDtQc6-fD3ypAafimRbDj4_ZA_I7koZ9WIaA,31119
|
1108
1108
|
pulumi_gcp/logging/organization_exclusion.py,sha256=Ci7ZcC-mkH57-BlR0F-MYNcWULyVeFNtwG2nO3tTCWw,17265
|
1109
1109
|
pulumi_gcp/logging/organization_settings.py,sha256=c-sSxT3lRMpus2TuN2KL29ySenCxMQfvtRFVoiat5H0,23029
|
1110
1110
|
pulumi_gcp/logging/organization_sink.py,sha256=grj7zkx0_Q_Uz_s-r3mZ0BrgZ8bes4Prqga0qkbJNWo,40325
|
@@ -1135,7 +1135,7 @@ pulumi_gcp/ml/_inputs.py,sha256=LtFMoYwKzLFDoqy2mClKAcJFg8KMZsp5v03Hi3zAU1k,1497
|
|
1135
1135
|
pulumi_gcp/ml/engine_model.py,sha256=igaNfQ0qkyEy1lDtRBL0BMztXBANRUbyOvp8pfovhtY,32834
|
1136
1136
|
pulumi_gcp/ml/outputs.py,sha256=Q8xDYQnGbsW-YK4BRIY0Dw8W1OrRDggq5JJWudVnsCc,1024
|
1137
1137
|
pulumi_gcp/monitoring/__init__.py,sha256=1cI0rZIKXXI9cskEGKyeR7oSm1Kwkaafyp0RIXnXyZA,876
|
1138
|
-
pulumi_gcp/monitoring/_inputs.py,sha256=
|
1138
|
+
pulumi_gcp/monitoring/_inputs.py,sha256=Grn0r79Gyq8IHsIO8jqqvLYxHBWxCCvGyeEdU0U37ZU,280673
|
1139
1139
|
pulumi_gcp/monitoring/alert_policy.py,sha256=vvfXWb7tcV2dRU0kyCY-KzojkaML9DPyHhmZn-6a6ao,51863
|
1140
1140
|
pulumi_gcp/monitoring/custom_service.py,sha256=5WulJ9sRofDvsvVa8PoOHnKnnWMPj2bwwbtWNy-YilU,23096
|
1141
1141
|
pulumi_gcp/monitoring/dashboard.py,sha256=MZjJlaYRkriv8eqwvSbfT_WBMA7BCctkvoVgBu0PQL8,15973
|
@@ -1151,7 +1151,7 @@ pulumi_gcp/monitoring/group.py,sha256=1gdUvGT5cnTCdeZnIKXOE9Mj-4UWBgjaFC4bqLxBq8
|
|
1151
1151
|
pulumi_gcp/monitoring/metric_descriptor.py,sha256=iXHSDIHT8njaIhH0rvlz5daiDb2VpNE-F0Hdy6sz_W0,53588
|
1152
1152
|
pulumi_gcp/monitoring/monitored_project.py,sha256=S0ioT9VqO840O-KUUbY0km3Bfq4EJ8URliXusi-tx-4,14701
|
1153
1153
|
pulumi_gcp/monitoring/notification_channel.py,sha256=hn2_YN8js_pxIpJ4Wa4ObaTBDNtJ4Nr6wghBJYo8MBA,54382
|
1154
|
-
pulumi_gcp/monitoring/outputs.py,sha256=
|
1154
|
+
pulumi_gcp/monitoring/outputs.py,sha256=ZyNGRZiih6AHot-0MRUZohgge3b5qY_de8JKC2K7fdM,208253
|
1155
1155
|
pulumi_gcp/monitoring/slo.py,sha256=NVRp-LzIFgqfxfcXy5PkBxMfRvg4SQBG8QhyNw5A-1I,57792
|
1156
1156
|
pulumi_gcp/monitoring/uptime_check_config.py,sha256=tC9fcy58zGTvyBdNh2ghqVh2ez2tbVW20FRo7eDOjDg,64839
|
1157
1157
|
pulumi_gcp/netapp/__init__.py,sha256=a2WASorZqaGWZpZUn9UzQl7ZtDmRg7bBrzy8P1Si_38,565
|
@@ -1362,9 +1362,9 @@ pulumi_gcp/securitycenter/_inputs.py,sha256=FRgRyjIUPHlUDuo94SV1P-D6KSHRDIbOR1Ck
|
|
1362
1362
|
pulumi_gcp/securitycenter/event_threat_detection_custom_module.py,sha256=DH-KVk5g4wRQKL57tx5CUiIeRyduvi810lUvKm3JDVE,23370
|
1363
1363
|
pulumi_gcp/securitycenter/folder_custom_module.py,sha256=qxUHmUxQiGgz4naWnF2wOAAQEXFFuEJJR64TeqO7boI,30938
|
1364
1364
|
pulumi_gcp/securitycenter/get_source_iam_policy.py,sha256=hBWEv_U56nqihk6EaInRoy8WveRNTd6mFMQJqmjtlAg,4875
|
1365
|
-
pulumi_gcp/securitycenter/instance_iam_binding.py,sha256=
|
1366
|
-
pulumi_gcp/securitycenter/instance_iam_member.py,sha256=
|
1367
|
-
pulumi_gcp/securitycenter/instance_iam_policy.py,sha256=
|
1365
|
+
pulumi_gcp/securitycenter/instance_iam_binding.py,sha256=VJLjxVUOOGpJTWCkiTCka3V5ARbmCWr6RkvPaAvNNd0,27546
|
1366
|
+
pulumi_gcp/securitycenter/instance_iam_member.py,sha256=VapjrRgUIYJmy_3r3sFmIO6Be-MDllQnWGLmNcWrIwE,27243
|
1367
|
+
pulumi_gcp/securitycenter/instance_iam_policy.py,sha256=otKmQs7jffsG3RUCu7fvsuLP0AWiSN_Tmi6TAUsXwyw,24529
|
1368
1368
|
pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py,sha256=9mgop7HmT3nKo-sMMNcDRf_EcAfaUjHIxcfc9gis8nI,35782
|
1369
1369
|
pulumi_gcp/securitycenter/management_organization_event_threat_detection_custom_module.py,sha256=msYCUSvEEom_6kzOTrXevxDbk21r1EhIpoo1vP1Va6w,26330
|
1370
1370
|
pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py,sha256=8ISNDiQCi-CbuWmq7x6rs_Vnj705ZurQEFkX4Ktyzm4,35966
|
@@ -1458,8 +1458,8 @@ pulumi_gcp/sql/outputs.py,sha256=s8HJOjHgWs7RGEKhKN10KEVug6Dpg-TwD9EWcSzZQ8A,224
|
|
1458
1458
|
pulumi_gcp/sql/source_representation_instance.py,sha256=DPiM7r4DyffRwMBz-GAMprqHCUeFT6Q35OCQYTWr0qU,38582
|
1459
1459
|
pulumi_gcp/sql/ssl_cert.py,sha256=CkH8XDVoKyiutBTNkQof8fe_-yvrwESCM81qApEZ7mc,21976
|
1460
1460
|
pulumi_gcp/sql/user.py,sha256=qDHCFqZzR3Kbbpn-SURYx4CGxV2zrBd3eEtZ9vMFePI,37091
|
1461
|
-
pulumi_gcp/storage/__init__.py,sha256=
|
1462
|
-
pulumi_gcp/storage/_inputs.py,sha256=
|
1461
|
+
pulumi_gcp/storage/__init__.py,sha256=XuJM5AhQgyTQ2BgJPB6jxpwqp9wTXFhk9tf7yuhwsjY,1403
|
1462
|
+
pulumi_gcp/storage/_inputs.py,sha256=yrcwBHS21B5sXCsZU-8TIQWr5xIXuIDg8l2GlbNQ0PY,164922
|
1463
1463
|
pulumi_gcp/storage/bucket.py,sha256=GWeoTl8Ke7D_cQIywwuJwXzMNxtJOjvlPDfRmb5pq9E,86082
|
1464
1464
|
pulumi_gcp/storage/bucket_access_control.py,sha256=wQJ2LWiv2KzECXws1vLKL50CMy29PjJJkXJKk1HUYu8,19873
|
1465
1465
|
pulumi_gcp/storage/bucket_acl.py,sha256=X364is_MLJQKOsQMj5YQUneDXVHEvE5VDtzfUlyihZA,17262
|
@@ -1475,16 +1475,21 @@ pulumi_gcp/storage/get_bucket_object.py,sha256=jof7PZyQZyR7Fjizfb3GsO7Sm5p9KRVLq
|
|
1475
1475
|
pulumi_gcp/storage/get_bucket_object_content.py,sha256=nc1JemYcYuAQMPXYPCxlSinuRUMF_fFglHPl0rED0A0,14538
|
1476
1476
|
pulumi_gcp/storage/get_bucket_objects.py,sha256=qMaWeWd8LtkKJfEN3k8TcAIFMTZbMX0iXb0HGrawIM0,5835
|
1477
1477
|
pulumi_gcp/storage/get_buckets.py,sha256=kpbTXjhvJXantojn49bvXcDkqdb_BHHgSFdIvrc1rmw,4693
|
1478
|
+
pulumi_gcp/storage/get_managed_folder_iam_policy.py,sha256=sSXS0IV6zrUhC5DBogtBA8vQQn0RogNlTZH9kyxwoYc,4380
|
1478
1479
|
pulumi_gcp/storage/get_object_signed_url.py,sha256=060sR3jnoV07Xl64XTitmie65GjEs6cWZZ7W5QWpqiM,13893
|
1479
1480
|
pulumi_gcp/storage/get_project_service_account.py,sha256=A1k7ZTFgYiyOTvAK1ziSyu1c-ODPU180pY9YDF2BXHA,12987
|
1480
1481
|
pulumi_gcp/storage/get_transfer_project_service_account.py,sha256=Vi3nrQxtW-74RQS4AFKAWuDkXNq0_yOgZKJpH7wHq3U,5252
|
1481
1482
|
pulumi_gcp/storage/get_transfer_project_servie_account.py,sha256=C5bul7Fe1czaIk80JrLTTlPEToF5-F5PsLtc6aHMyPQ,5793
|
1482
1483
|
pulumi_gcp/storage/hmac_key.py,sha256=hdz0rX3IwIzOIkRIv2Kt_chewCn6Ipf9hsrHoBxrm3k,19129
|
1483
1484
|
pulumi_gcp/storage/insights_report_config.py,sha256=c4G8aeBRoNWf56yU7eZ55bt9tUQKGDiWvRiTx6l9oSE,27327
|
1485
|
+
pulumi_gcp/storage/managed_folder.py,sha256=4Kf5zgiovcD4Kkz9LJAPEXmtVP4k0IjTPPNPbRD9C88,16376
|
1486
|
+
pulumi_gcp/storage/managed_folder_iam_binding.py,sha256=eV3auWfvVDXpuNOzk5x4OYjvCbRL6P7O-Jci-4shmQc,45606
|
1487
|
+
pulumi_gcp/storage/managed_folder_iam_member.py,sha256=QvnF88HxZrgn8sK5-w50YMuL1kOoJjHVCcus-SzBgZE,45201
|
1488
|
+
pulumi_gcp/storage/managed_folder_iam_policy.py,sha256=xUfNq7T9RXqZP7NMxb1FQQMVCXM8KRIYUbKN-F9nQjU,30356
|
1484
1489
|
pulumi_gcp/storage/notification.py,sha256=48DXbEQrIKzvmReH7fQETcenEWM3Goikc4nQNMzDsz0,30144
|
1485
1490
|
pulumi_gcp/storage/object_access_control.py,sha256=wgllzt65_7nm-90gL0r_3OC6QCn9I8MLZVSokg5ygpg,24311
|
1486
1491
|
pulumi_gcp/storage/object_acl.py,sha256=bFcg8_R_tvv6q35xJ7SIsl4z419FHpZk2gXXjxEA2Sc,16868
|
1487
|
-
pulumi_gcp/storage/outputs.py,sha256=
|
1492
|
+
pulumi_gcp/storage/outputs.py,sha256=v2PkptoXrC7mAGjwg9idNF8WOzS3tGR39mNeS-LcJPg,154512
|
1488
1493
|
pulumi_gcp/storage/transfer_agent_pool.py,sha256=mt3ZapC2wqvcUHDzytjSWCNPENgrrX56V9GRbGRe_A8,21827
|
1489
1494
|
pulumi_gcp/storage/transfer_job.py,sha256=_cFr3k3LwoGKoCs66mWjI_VtcwQe0IeFYgzaLqWbAZQ,41733
|
1490
1495
|
pulumi_gcp/tags/__init__.py,sha256=73ySnVD68pkwP5R7Mt1eWSGxBu_HYv7XHBbqLaGG3yU,829
|
@@ -1515,7 +1520,7 @@ pulumi_gcp/tpu/node.py,sha256=jpi_ZgXejjnCFZU9Sw3pnxeqf59-3PYj3bQFz5mVog0,50173
|
|
1515
1520
|
pulumi_gcp/tpu/outputs.py,sha256=n9pnO5ye1NaB-A0JP3o0I52-z0NWxR4iJN0FynxoNaQ,19556
|
1516
1521
|
pulumi_gcp/tpu/v2_vm.py,sha256=qdDZH13sp0r7E2UinzTz6ZNUJEZ9cK0BZc2oPkNiiXs,71896
|
1517
1522
|
pulumi_gcp/vertex/__init__.py,sha256=Jd1TvW8y8vguTNphnbv4pWVVZNFrlP5WL_3aRgP7Tmc,1404
|
1518
|
-
pulumi_gcp/vertex/_inputs.py,sha256=
|
1523
|
+
pulumi_gcp/vertex/_inputs.py,sha256=6jTz4fcEtow-iIizYaam4_fvfUiMEFLE3wgGhiMB-DA,169546
|
1519
1524
|
pulumi_gcp/vertex/ai_dataset.py,sha256=B-9whdEknbVFJMrk19Ds2CSa00GD3UfsG1kdN1GwFmQ,31301
|
1520
1525
|
pulumi_gcp/vertex/ai_deployment_resource_pool.py,sha256=tnjiMGuKwMfHF3Ve_oth2FheB847KdL4WllRlBmpobg,20283
|
1521
1526
|
pulumi_gcp/vertex/ai_endpoint.py,sha256=PNYxAalV9r0DAxvLMPFbeWiKcMU9irWm5eulglFzZVA,49295
|
@@ -1524,7 +1529,7 @@ pulumi_gcp/vertex/ai_endpoint_iam_member.py,sha256=iWFlLeCAyvJKE9aPA-YaGGdJ3aoIe
|
|
1524
1529
|
pulumi_gcp/vertex/ai_endpoint_iam_policy.py,sha256=dDEucjvM1rlbD6qWpFEjS8FgT1lPiiy0eHAjMkOE7Ks,9884
|
1525
1530
|
pulumi_gcp/vertex/ai_feature_group.py,sha256=CAR7BJzyPyA8czDb1LcZFAVTRYH8JOiFnFI9mctolfM,32453
|
1526
1531
|
pulumi_gcp/vertex/ai_feature_group_feature.py,sha256=_LscUvmQTYQ4LLt94zhdBk8XDdLkPm9nba0yBztERgw,34502
|
1527
|
-
pulumi_gcp/vertex/ai_feature_online_store.py,sha256=
|
1532
|
+
pulumi_gcp/vertex/ai_feature_online_store.py,sha256=LfyzcDfBAxdM8Q6147ym8AiE_FCh_cglY7QsKejnu2k,52498
|
1528
1533
|
pulumi_gcp/vertex/ai_feature_online_store_featureview.py,sha256=l9Xz1D0vn-5--9QS1RxtnW0pd_xygc30pLxaNW-IRDE,62639
|
1529
1534
|
pulumi_gcp/vertex/ai_feature_store.py,sha256=PSDm9sh3M5Cg6rmsQPw4tbwIFwM7bSNsJrG2Fqxdey8,41581
|
1530
1535
|
pulumi_gcp/vertex/ai_feature_store_entity_type.py,sha256=ErzOsg8z2dslzU2wmvUNTrGsAioBS9GdcKbErCMyxq8,39910
|
@@ -1543,7 +1548,7 @@ pulumi_gcp/vertex/get_ai_endpoint_iam_policy.py,sha256=eH3V_95OiZKlTcCu4oEiuvqor
|
|
1543
1548
|
pulumi_gcp/vertex/get_ai_featurestore_entitytype_iam_policy.py,sha256=Z-FBTGaarWVZAkOlJMXIO1uPXyuRQVNnmxcDDVztMpY,5481
|
1544
1549
|
pulumi_gcp/vertex/get_ai_featurestore_iam_policy.py,sha256=1aJmIOQmjZoxRbATRUxkr6GGoR2bSCeArS6N94onXJc,6645
|
1545
1550
|
pulumi_gcp/vertex/get_ai_index.py,sha256=oUqZ0WEzYgbWHIotiuDxh-Q50bs7f4QmIlAzjKXuUdI,10259
|
1546
|
-
pulumi_gcp/vertex/outputs.py,sha256=
|
1551
|
+
pulumi_gcp/vertex/outputs.py,sha256=x2C7Y1W6uH3GLyUCU-LnLiT21R-6tmuDZWCqmkii7A8,142451
|
1547
1552
|
pulumi_gcp/vmwareengine/__init__.py,sha256=5opTrk1vrtEmzz_tp4Dn8bOdnok6H9_mZwp6BmR1ftU,872
|
1548
1553
|
pulumi_gcp/vmwareengine/_inputs.py,sha256=l7ATvN1NcK-_4OmfjD5l3hKoBBpbh-Fmy_ar2NO1re8,43137
|
1549
1554
|
pulumi_gcp/vmwareengine/cluster.py,sha256=AB0L7WQYKWzN5qykd5EbFiOtL2-7y_BecwCq2vVT7VM,22511
|
@@ -1594,7 +1599,7 @@ pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=lyD1PT_XiLqOCTMa
|
|
1594
1599
|
pulumi_gcp/workstations/workstation_iam_binding.py,sha256=v1_3Z7qkX8soy9cEXEQBmDB_eBjFu0_7kXU8MDrWvDQ,37784
|
1595
1600
|
pulumi_gcp/workstations/workstation_iam_member.py,sha256=Pa7-SRLzY5Hwcs3bky3UNMLldVUhaQl75RXMXWCXMuk,37385
|
1596
1601
|
pulumi_gcp/workstations/workstation_iam_policy.py,sha256=xglGMHFGQY-gU2mogi8-yrBUSPW0hpBV25DNHSI2J90,24019
|
1597
|
-
pulumi_gcp-7.30.
|
1598
|
-
pulumi_gcp-7.30.
|
1599
|
-
pulumi_gcp-7.30.
|
1600
|
-
pulumi_gcp-7.30.
|
1602
|
+
pulumi_gcp-7.30.0a1720437548.dist-info/METADATA,sha256=KYPxmUpkb4ey-K5YFHom9aP-G6ZDSgokSpXe59y6veY,2728
|
1603
|
+
pulumi_gcp-7.30.0a1720437548.dist-info/WHEEL,sha256=y4mX-SOX4fYIkonsAGA5N0Oy-8_gI4FXw5HNI1xqvWg,91
|
1604
|
+
pulumi_gcp-7.30.0a1720437548.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
|
1605
|
+
pulumi_gcp-7.30.0a1720437548.dist-info/RECORD,,
|
File without changes
|
{pulumi_gcp-7.30.0a1720039709.dist-info → pulumi_gcp-7.30.0a1720437548.dist-info}/top_level.txt
RENAMED
File without changes
|