pulumi-gcp 7.28.0a1718863699__py3-none-any.whl → 7.28.0a1718995220__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 +59 -0
- pulumi_gcp/accesscontextmanager/_inputs.py +58 -74
- pulumi_gcp/accesscontextmanager/access_levels.py +0 -20
- pulumi_gcp/accesscontextmanager/outputs.py +58 -74
- pulumi_gcp/accesscontextmanager/service_perimeter.py +2 -0
- pulumi_gcp/bigtable/_inputs.py +40 -0
- pulumi_gcp/bigtable/outputs.py +49 -0
- pulumi_gcp/bigtable/table.py +54 -0
- pulumi_gcp/cloudbuildv2/_inputs.py +383 -0
- pulumi_gcp/cloudbuildv2/connection.py +110 -2
- pulumi_gcp/cloudbuildv2/outputs.py +421 -0
- pulumi_gcp/composer/__init__.py +3 -0
- pulumi_gcp/composer/get_user_workloads_config_map.py +190 -0
- pulumi_gcp/composer/get_user_workloads_secret.py +188 -0
- pulumi_gcp/composer/user_workloads_config_map.py +475 -0
- pulumi_gcp/compute/_inputs.py +4 -2
- pulumi_gcp/compute/backend_service.py +28 -48
- pulumi_gcp/compute/interconnect.py +4 -4
- pulumi_gcp/compute/outputs.py +10 -4
- pulumi_gcp/compute/region_backend_service.py +35 -48
- pulumi_gcp/compute/region_network_endpoint.py +187 -0
- pulumi_gcp/compute/region_network_endpoint_group.py +49 -9
- pulumi_gcp/compute/region_target_https_proxy.py +7 -14
- pulumi_gcp/compute/target_https_proxy.py +28 -14
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +2 -2
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/discoveryengine/_inputs.py +227 -0
- pulumi_gcp/discoveryengine/data_store.py +108 -0
- pulumi_gcp/discoveryengine/outputs.py +280 -0
- pulumi_gcp/edgecontainer/_inputs.py +107 -1
- pulumi_gcp/edgecontainer/outputs.py +123 -1
- pulumi_gcp/gkehub/_inputs.py +16 -0
- pulumi_gcp/gkehub/outputs.py +15 -1
- pulumi_gcp/logging/folder_sink.py +14 -14
- pulumi_gcp/logging/organization_sink.py +14 -14
- pulumi_gcp/managedkafka/__init__.py +11 -0
- pulumi_gcp/managedkafka/_inputs.py +169 -0
- pulumi_gcp/managedkafka/cluster.py +807 -0
- pulumi_gcp/managedkafka/outputs.py +197 -0
- pulumi_gcp/managedkafka/topic.py +599 -0
- pulumi_gcp/netapp/__init__.py +1 -0
- pulumi_gcp/netapp/active_directory.py +55 -0
- pulumi_gcp/netapp/backup.py +903 -0
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securitycenter/__init__.py +3 -0
- pulumi_gcp/securitycenter/_inputs.py +1105 -0
- pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py +725 -0
- pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py +713 -0
- pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py +706 -0
- pulumi_gcp/securitycenter/outputs.py +1048 -0
- pulumi_gcp/vertex/ai_feature_online_store.py +37 -8
- {pulumi_gcp-7.28.0a1718863699.dist-info → pulumi_gcp-7.28.0a1718995220.dist-info}/METADATA +1 -1
- {pulumi_gcp-7.28.0a1718863699.dist-info → pulumi_gcp-7.28.0a1718995220.dist-info}/RECORD +58 -46
- {pulumi_gcp-7.28.0a1718863699.dist-info → pulumi_gcp-7.28.0a1718995220.dist-info}/WHEEL +0 -0
- {pulumi_gcp-7.28.0a1718863699.dist-info → pulumi_gcp-7.28.0a1718995220.dist-info}/top_level.txt +0 -0
@@ -31,8 +31,10 @@ class AiFeatureOnlineStoreArgs:
|
|
31
31
|
Structure is documented below.
|
32
32
|
: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.
|
33
33
|
Structure is documented below.
|
34
|
-
:param pulumi.Input['AiFeatureOnlineStoreEmbeddingManagementArgs'] embedding_management: The settings for embedding management in FeatureOnlineStore. Embedding management can only be
|
34
|
+
: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.
|
35
35
|
Structure is documented below.
|
36
|
+
|
37
|
+
> **Warning:** `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type
|
36
38
|
:param pulumi.Input[bool] force_destroy: If set to true, any FeatureViews and Features for this FeatureOnlineStore will also be deleted.
|
37
39
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: The labels with user-defined metadata to organize your feature online stores.
|
38
40
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
@@ -50,6 +52,9 @@ class AiFeatureOnlineStoreArgs:
|
|
50
52
|
pulumi.set(__self__, "bigtable", bigtable)
|
51
53
|
if dedicated_serving_endpoint is not None:
|
52
54
|
pulumi.set(__self__, "dedicated_serving_endpoint", dedicated_serving_endpoint)
|
55
|
+
if embedding_management is not None:
|
56
|
+
warnings.warn("""`embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type""", DeprecationWarning)
|
57
|
+
pulumi.log.warn("""embedding_management is deprecated: `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type""")
|
53
58
|
if embedding_management is not None:
|
54
59
|
pulumi.set(__self__, "embedding_management", embedding_management)
|
55
60
|
if force_destroy is not None:
|
@@ -95,9 +100,14 @@ class AiFeatureOnlineStoreArgs:
|
|
95
100
|
@pulumi.getter(name="embeddingManagement")
|
96
101
|
def embedding_management(self) -> Optional[pulumi.Input['AiFeatureOnlineStoreEmbeddingManagementArgs']]:
|
97
102
|
"""
|
98
|
-
The settings for embedding management in FeatureOnlineStore. Embedding management can only be
|
103
|
+
The settings for embedding management in FeatureOnlineStore. Embedding management can only be set for BigTable. It is enabled by default for optimized storagetype.
|
99
104
|
Structure is documented below.
|
105
|
+
|
106
|
+
> **Warning:** `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type
|
100
107
|
"""
|
108
|
+
warnings.warn("""`embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type""", DeprecationWarning)
|
109
|
+
pulumi.log.warn("""embedding_management is deprecated: `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type""")
|
110
|
+
|
101
111
|
return pulumi.get(self, "embedding_management")
|
102
112
|
|
103
113
|
@embedding_management.setter
|
@@ -209,8 +219,10 @@ class _AiFeatureOnlineStoreState:
|
|
209
219
|
: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.
|
210
220
|
Structure is documented below.
|
211
221
|
: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.
|
212
|
-
:param pulumi.Input['AiFeatureOnlineStoreEmbeddingManagementArgs'] embedding_management: The settings for embedding management in FeatureOnlineStore. Embedding management can only be
|
222
|
+
: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.
|
213
223
|
Structure is documented below.
|
224
|
+
|
225
|
+
> **Warning:** `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type
|
214
226
|
:param pulumi.Input[str] etag: Used to perform consistent read-modify-write updates.
|
215
227
|
:param pulumi.Input[bool] force_destroy: If set to true, any FeatureViews and Features for this FeatureOnlineStore will also be deleted.
|
216
228
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: The labels with user-defined metadata to organize your feature online stores.
|
@@ -237,6 +249,9 @@ class _AiFeatureOnlineStoreState:
|
|
237
249
|
pulumi.set(__self__, "dedicated_serving_endpoint", dedicated_serving_endpoint)
|
238
250
|
if effective_labels is not None:
|
239
251
|
pulumi.set(__self__, "effective_labels", effective_labels)
|
252
|
+
if embedding_management is not None:
|
253
|
+
warnings.warn("""`embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type""", DeprecationWarning)
|
254
|
+
pulumi.log.warn("""embedding_management is deprecated: `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type""")
|
240
255
|
if embedding_management is not None:
|
241
256
|
pulumi.set(__self__, "embedding_management", embedding_management)
|
242
257
|
if etag is not None:
|
@@ -314,9 +329,14 @@ class _AiFeatureOnlineStoreState:
|
|
314
329
|
@pulumi.getter(name="embeddingManagement")
|
315
330
|
def embedding_management(self) -> Optional[pulumi.Input['AiFeatureOnlineStoreEmbeddingManagementArgs']]:
|
316
331
|
"""
|
317
|
-
The settings for embedding management in FeatureOnlineStore. Embedding management can only be
|
332
|
+
The settings for embedding management in FeatureOnlineStore. Embedding management can only be set for BigTable. It is enabled by default for optimized storagetype.
|
318
333
|
Structure is documented below.
|
334
|
+
|
335
|
+
> **Warning:** `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type
|
319
336
|
"""
|
337
|
+
warnings.warn("""`embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type""", DeprecationWarning)
|
338
|
+
pulumi.log.warn("""embedding_management is deprecated: `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type""")
|
339
|
+
|
320
340
|
return pulumi.get(self, "embedding_management")
|
321
341
|
|
322
342
|
@embedding_management.setter
|
@@ -580,8 +600,10 @@ class AiFeatureOnlineStore(pulumi.CustomResource):
|
|
580
600
|
Structure is documented below.
|
581
601
|
:param pulumi.Input[pulumi.InputType['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.
|
582
602
|
Structure is documented below.
|
583
|
-
:param pulumi.Input[pulumi.InputType['AiFeatureOnlineStoreEmbeddingManagementArgs']] embedding_management: The settings for embedding management in FeatureOnlineStore. Embedding management can only be
|
603
|
+
:param pulumi.Input[pulumi.InputType['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.
|
584
604
|
Structure is documented below.
|
605
|
+
|
606
|
+
> **Warning:** `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type
|
585
607
|
:param pulumi.Input[bool] force_destroy: If set to true, any FeatureViews and Features for this FeatureOnlineStore will also be deleted.
|
586
608
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: The labels with user-defined metadata to organize your feature online stores.
|
587
609
|
**Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
|
@@ -797,8 +819,10 @@ class AiFeatureOnlineStore(pulumi.CustomResource):
|
|
797
819
|
:param pulumi.Input[pulumi.InputType['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.
|
798
820
|
Structure is documented below.
|
799
821
|
: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.
|
800
|
-
:param pulumi.Input[pulumi.InputType['AiFeatureOnlineStoreEmbeddingManagementArgs']] embedding_management: The settings for embedding management in FeatureOnlineStore. Embedding management can only be
|
822
|
+
:param pulumi.Input[pulumi.InputType['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.
|
801
823
|
Structure is documented below.
|
824
|
+
|
825
|
+
> **Warning:** `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type
|
802
826
|
:param pulumi.Input[str] etag: Used to perform consistent read-modify-write updates.
|
803
827
|
:param pulumi.Input[bool] force_destroy: If set to true, any FeatureViews and Features for this FeatureOnlineStore will also be deleted.
|
804
828
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: The labels with user-defined metadata to organize your feature online stores.
|
@@ -874,11 +898,16 @@ class AiFeatureOnlineStore(pulumi.CustomResource):
|
|
874
898
|
|
875
899
|
@property
|
876
900
|
@pulumi.getter(name="embeddingManagement")
|
877
|
-
def embedding_management(self) -> pulumi.Output[
|
901
|
+
def embedding_management(self) -> pulumi.Output['outputs.AiFeatureOnlineStoreEmbeddingManagement']:
|
878
902
|
"""
|
879
|
-
The settings for embedding management in FeatureOnlineStore. Embedding management can only be
|
903
|
+
The settings for embedding management in FeatureOnlineStore. Embedding management can only be set for BigTable. It is enabled by default for optimized storagetype.
|
880
904
|
Structure is documented below.
|
905
|
+
|
906
|
+
> **Warning:** `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type
|
881
907
|
"""
|
908
|
+
warnings.warn("""`embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type""", DeprecationWarning)
|
909
|
+
pulumi.log.warn("""embedding_management is deprecated: `embedding_management` is deprecated. This field is no longer needed anymore and embedding management is automatically enabled when specifying Optimized storage type""")
|
910
|
+
|
882
911
|
return pulumi.get(self, "embedding_management")
|
883
912
|
|
884
913
|
@property
|
@@ -1,18 +1,18 @@
|
|
1
|
-
pulumi_gcp/__init__.py,sha256=
|
1
|
+
pulumi_gcp/__init__.py,sha256=5jsIe82BPjG3GHgPkXRD8H9BI-XY0FYBx9_D9sxUxFg,194568
|
2
2
|
pulumi_gcp/_inputs.py,sha256=RzPZvEhg_UTDKSms04fRHwrC6vIGFtFT7BXmdZIRsdE,1412
|
3
3
|
pulumi_gcp/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
4
|
-
pulumi_gcp/provider.py,sha256=
|
5
|
-
pulumi_gcp/pulumi-plugin.json,sha256=
|
4
|
+
pulumi_gcp/provider.py,sha256=ioUsUAukdNx2WkBtnBQfQP5KZcoIERXq1lzaQnUU84o,189322
|
5
|
+
pulumi_gcp/pulumi-plugin.json,sha256=wvz4hJGvC1fOEYB0V_IOytskRm2UQ7FUOpYhMMlb7gA,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=M0M-L5ZTvFu-1LuyZA3z1fqChglV_kowuPZmmRMt_6Q,5573
|
9
9
|
pulumi_gcp/accessapproval/get_organization_service_account.py,sha256=oQNO0pLAqpC4g3MGelOFxVsfEz2zodCFS1ayQxcQC34,5893
|
10
10
|
pulumi_gcp/accessapproval/get_project_service_account.py,sha256=Oxt2dUJqFUmgnu4PdrZ3GYBnLcVSlAvJvr2E6Grtt5U,5626
|
11
11
|
pulumi_gcp/accesscontextmanager/__init__.py,sha256=bqc5l7s2LcMSPzStTvFqIljhyHnaMrgI5sy9Z39q62A,991
|
12
|
-
pulumi_gcp/accesscontextmanager/_inputs.py,sha256=
|
12
|
+
pulumi_gcp/accesscontextmanager/_inputs.py,sha256=dm1lUYtl2w3pAuWtyXXeHBg8KV312fGOT60kkEviUa4,282019
|
13
13
|
pulumi_gcp/accesscontextmanager/access_level.py,sha256=ooPNbd9roirvxJZJ4np35GfyDmCG6p4G-gR-oEVjorc,24264
|
14
14
|
pulumi_gcp/accesscontextmanager/access_level_condition.py,sha256=Uo_-izy3cKTBeANK4R8JNVZoDiCV9ucXbljCTPNU9wo,43421
|
15
|
-
pulumi_gcp/accesscontextmanager/access_levels.py,sha256=
|
15
|
+
pulumi_gcp/accesscontextmanager/access_levels.py,sha256=D9zJGWRS6QqHzBp-8p2wwnJqLxayaEfCkLPtavWgH6s,16142
|
16
16
|
pulumi_gcp/accesscontextmanager/access_policy.py,sha256=_qbFIjNAapfRful8W7zwy7wagQckSpL-cq5K2EpDCD0,18148
|
17
17
|
pulumi_gcp/accesscontextmanager/access_policy_iam_binding.py,sha256=TPOM3aMQZmS9XCjnSHLpQHQC-mHxe8k_UdtsUed8Hw8,33508
|
18
18
|
pulumi_gcp/accesscontextmanager/access_policy_iam_member.py,sha256=YPMy68M3ParFalmVEEI74D1IezS0xLp6l8AQ2MhkzLg,33112
|
@@ -22,8 +22,8 @@ pulumi_gcp/accesscontextmanager/egress_policy.py,sha256=d0cbTH57lieZ8iTpvxs8RK2X
|
|
22
22
|
pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py,sha256=3JyhMVQXgAaRPUxby2Lsya8CrckER7Y0ClXtk6cg-Tc,21029
|
23
23
|
pulumi_gcp/accesscontextmanager/get_access_policy_iam_policy.py,sha256=iiIl8wbDza3yjvxlI3nkRXCpzCvbT7U8Bh_NkwkudyQ,4219
|
24
24
|
pulumi_gcp/accesscontextmanager/ingress_policy.py,sha256=0Je-86iB7BewTwz-KOBrNoar9blUk6fYoO_NnWpDkH4,9673
|
25
|
-
pulumi_gcp/accesscontextmanager/outputs.py,sha256=
|
26
|
-
pulumi_gcp/accesscontextmanager/service_perimeter.py,sha256=
|
25
|
+
pulumi_gcp/accesscontextmanager/outputs.py,sha256=x6kh2CZ3JvLc1pdrtAQmouaF3mgke2keYH5ZgfKR5-c,278709
|
26
|
+
pulumi_gcp/accesscontextmanager/service_perimeter.py,sha256=4pdVTSiVTFLRVbm1NqOgDSlFiv1W3QlsvJW3tk9wonc,62300
|
27
27
|
pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py,sha256=wuXOpxJFnT4x7heNO3Gbkw5LPxOylEKtcdCTSIUMpEY,15388
|
28
28
|
pulumi_gcp/accesscontextmanager/service_perimeter_egress_policy.py,sha256=yfe0rIJv4gEwUUp4kudf-CWqGBN6IkdhhYhYt3VoEUE,16014
|
29
29
|
pulumi_gcp/accesscontextmanager/service_perimeter_ingress_policy.py,sha256=2BB1CsGuipB51DDzd-UFt5PV0cWRUwM4E9OBTcl5DVo,16600
|
@@ -198,7 +198,7 @@ pulumi_gcp/bigquerydatapolicy/data_policy_iam_policy.py,sha256=zVe6PXKcOwTs6N9ql
|
|
198
198
|
pulumi_gcp/bigquerydatapolicy/get_iam_policy.py,sha256=bPX7oyvk0RNAzotbjXcuNfOUUw_i02fD8lrAULn_hNk,6574
|
199
199
|
pulumi_gcp/bigquerydatapolicy/outputs.py,sha256=AjglPxiEKWbKd85Y2F1xsxXXN3smthzT5LV4AzQRzDs,4358
|
200
200
|
pulumi_gcp/bigtable/__init__.py,sha256=kt14Qjgv4IFG3DZNFgX0vGMOAhjc65mvHWIGGOzWMqY,693
|
201
|
-
pulumi_gcp/bigtable/_inputs.py,sha256=
|
201
|
+
pulumi_gcp/bigtable/_inputs.py,sha256=9Zb0z4-lc7J8NkzyjpVuYI-8iAxYBSkjjVoShTWSNuE,26343
|
202
202
|
pulumi_gcp/bigtable/authorized_view.py,sha256=liKP8YIB6nmABY4t3msepIYK40UIiYwMmYEPFHqJLJ4,19349
|
203
203
|
pulumi_gcp/bigtable/gc_policy.py,sha256=D0HjmgI2a7Z7BaGg_kEh4_eOro0-4xaRZzSIpYhjtMg,32908
|
204
204
|
pulumi_gcp/bigtable/get_instance_iam_policy.py,sha256=D_fnKnUtBb2ndgOnSnUK_1nVzGc16NAQiLYLci2l8OU,4647
|
@@ -207,8 +207,8 @@ pulumi_gcp/bigtable/instance.py,sha256=rA44HqbthFt2HudCGc_y95Jtd0c1gBFSMevWVs4_Q
|
|
207
207
|
pulumi_gcp/bigtable/instance_iam_binding.py,sha256=jgcE5eUGRM-lQXcPXfMLKwWXwEi09Oz0ml6bzwqcyQA,32336
|
208
208
|
pulumi_gcp/bigtable/instance_iam_member.py,sha256=kVzbbPVllgWqyEX0mQ_Jtt5Q5HhyXDMA0XkMa3xy194,31948
|
209
209
|
pulumi_gcp/bigtable/instance_iam_policy.py,sha256=Ly2erKmAzXh4fUUuSJ0u43joSo1MMkQDCQ1GN8FTAmo,20347
|
210
|
-
pulumi_gcp/bigtable/outputs.py,sha256=
|
211
|
-
pulumi_gcp/bigtable/table.py,sha256=
|
210
|
+
pulumi_gcp/bigtable/outputs.py,sha256=30jcmmGWeG-ukEDkvc4ve4DgvfG3vjiMSBFfhgzi6yo,23930
|
211
|
+
pulumi_gcp/bigtable/table.py,sha256=lSnw7m2DL-oQoPaacaytGsW9LC4oG4hLvSIHcJcvQo8,31648
|
212
212
|
pulumi_gcp/bigtable/table_iam_binding.py,sha256=xNCgxWGZA15sy-llOR4UAG0pG_ob9mlabqmim1oMs2Q,34567
|
213
213
|
pulumi_gcp/bigtable/table_iam_member.py,sha256=LOgVXLJ619xQMKL46PIZK4023F_DH8phGUD9OKmZsek,34179
|
214
214
|
pulumi_gcp/bigtable/table_iam_policy.py,sha256=-hWlubf_5x56yNRV7P5XbPXDhgtZpDcWUECSDWXVTjw,22650
|
@@ -277,13 +277,13 @@ pulumi_gcp/cloudbuild/outputs.py,sha256=LN2WlBrKeVGbbYf-4zVKYY5djdJvqJqlGbR21mG4
|
|
277
277
|
pulumi_gcp/cloudbuild/trigger.py,sha256=8Wrd1zsPuropnKStBlAfQ84JMIuiagnJI7fyfgbDFXo,140644
|
278
278
|
pulumi_gcp/cloudbuild/worker_pool.py,sha256=IvfXrSH_KdhDJksXit4kJZoQWQ7w0doAuZzI8Rgbxjs,34309
|
279
279
|
pulumi_gcp/cloudbuildv2/__init__.py,sha256=VqV7SkJsyO8eufWpX0S5AX4NZlwknJccg05geEQlbgc,519
|
280
|
-
pulumi_gcp/cloudbuildv2/_inputs.py,sha256=
|
281
|
-
pulumi_gcp/cloudbuildv2/connection.py,sha256=
|
280
|
+
pulumi_gcp/cloudbuildv2/_inputs.py,sha256=2QevrUESb6iPgXtgbDrZcrKBIwW2rlQ830-EyDAMmmc,46606
|
281
|
+
pulumi_gcp/cloudbuildv2/connection.py,sha256=IclTkB9jDNyGLiQHe76Mi7tC1HEKZiUGJjFztYgHsJ8,52603
|
282
282
|
pulumi_gcp/cloudbuildv2/connection_iam_binding.py,sha256=Ts2ZrMjpF7Hxyc2sBffH_cBMJY5sLWuDjsWisrXc-io,41392
|
283
283
|
pulumi_gcp/cloudbuildv2/connection_iam_member.py,sha256=gNAArFg0L8E5iJa7-HqLkyZWTWixLsR_v_Fiwapva5k,40996
|
284
284
|
pulumi_gcp/cloudbuildv2/connection_iam_policy.py,sha256=OJ43e1gDvvWFHlk4XYb61P_1YlwrxGa7lmIXoutCY7k,27737
|
285
285
|
pulumi_gcp/cloudbuildv2/get_connection_iam_policy.py,sha256=sVU8BTAJoY2j5vAQnM1b9BbUYKaGD0_tdxCBph2vE5c,6728
|
286
|
-
pulumi_gcp/cloudbuildv2/outputs.py,sha256=
|
286
|
+
pulumi_gcp/cloudbuildv2/outputs.py,sha256=XWOO5t8IV5EPRVSwcD3OtRs7LSzUMFk5gGs_gVyivj4,46627
|
287
287
|
pulumi_gcp/cloudbuildv2/repository.py,sha256=mjkRg-950t619iY30z_h5ca3hwGsi67cHAzV7l3B2KY,34155
|
288
288
|
pulumi_gcp/clouddeploy/__init__.py,sha256=lk4ZmMl9QmtLHgsj9xZj5gp9wlFzRWY2Ud5xJKkHg9U,932
|
289
289
|
pulumi_gcp/clouddeploy/_inputs.py,sha256=pPJHKZqhZSFEUPE4ozXpbdeUyl0sXUlkMex6-tPIZKU,98809
|
@@ -380,15 +380,18 @@ pulumi_gcp/cloudtasks/queue.py,sha256=6PztZN6VnCEn96LlwJ8tYFgKi1m29uBK_6zsJJWayN
|
|
380
380
|
pulumi_gcp/cloudtasks/queue_iam_binding.py,sha256=NJak-b-ZkfQpe61iGwrVwm170KIhVsjyCPMsu_b8i5E,40103
|
381
381
|
pulumi_gcp/cloudtasks/queue_iam_member.py,sha256=uotROBV1ujnm07LZdtJSfwOXZrb3aCh5qbgR0DsAsqk,39707
|
382
382
|
pulumi_gcp/cloudtasks/queue_iam_policy.py,sha256=J1ZLOl_KDr_YW1eHar4GQaL4TYMSxMv6fww2twEqNuU,26547
|
383
|
-
pulumi_gcp/composer/__init__.py,sha256=
|
383
|
+
pulumi_gcp/composer/__init__.py,sha256=AGZ5VzhxgFfzbIT5yYNxjZihefyVxJIybMkUMH4_Tlg,570
|
384
384
|
pulumi_gcp/composer/_inputs.py,sha256=5FquPQrICb3DK7j-9XZ1EpUIhIpNHvpHOVRTJdB2Zdw,101233
|
385
385
|
pulumi_gcp/composer/environment.py,sha256=i3gLAi5APaKqR6T8Vr93B6luQHkDER2cH15acRYbxAc,25672
|
386
386
|
pulumi_gcp/composer/get_environment.py,sha256=DMprKvqP7XZtyOndJESAZ0WNRbMr_Z_5ID5_5S3WJJM,7208
|
387
387
|
pulumi_gcp/composer/get_image_versions.py,sha256=INMRwQiuCMb_B9CxdnvOCDz1Q47P2HW-6I5KRP6WDXk,5252
|
388
|
+
pulumi_gcp/composer/get_user_workloads_config_map.py,sha256=lKPp-4m-d-douBo-DvmwMjUqh0Kf4SjXLb5ThPjK-iY,7359
|
389
|
+
pulumi_gcp/composer/get_user_workloads_secret.py,sha256=6dN5rj3UCWmQVxDurhChn4KL_DCllYaERARuvL7xp8w,7200
|
388
390
|
pulumi_gcp/composer/outputs.py,sha256=IozJ_7QofQoogKX8NTktyLlfqppWqZ2aFmuodre1UAM,176480
|
391
|
+
pulumi_gcp/composer/user_workloads_config_map.py,sha256=PuUOEvQE3mK3xWWLLtyCmyK_dzAHAo--rlNzmhLS9gY,18804
|
389
392
|
pulumi_gcp/composer/user_workloads_secret.py,sha256=avqjtxiOeviag1Kb_hzlH5QidWrlBTSUrC_B-N0n4MI,17332
|
390
393
|
pulumi_gcp/compute/__init__.py,sha256=QHKaDtw6s7v1TSsq-prQuungpDhZpExNlW6RG4vUfYA,7404
|
391
|
-
pulumi_gcp/compute/_inputs.py,sha256=
|
394
|
+
pulumi_gcp/compute/_inputs.py,sha256=uRqN84TaQ7Jy0aMD5VrY43eukhBDGGkNxFCRXZqslw0,1910472
|
392
395
|
pulumi_gcp/compute/address.py,sha256=4Q5PUz8nqxdNGb1OB33droaQLvyROO2wkfCnRc-GgrA,69609
|
393
396
|
pulumi_gcp/compute/attached_disk.py,sha256=lwmvfIaNwCrdHeO6mlDOV10k7BwsFdAV-1nKGscMwy0,28091
|
394
397
|
pulumi_gcp/compute/autoscaler.py,sha256=aR3dVzwCvtrHmu2ZDuIdLt3C5Wud3DmY2DTknRPFHgM,33140
|
@@ -397,7 +400,7 @@ pulumi_gcp/compute/backend_bucket_iam_binding.py,sha256=4t3To7d06vEuo4FYj2w0_lyh
|
|
397
400
|
pulumi_gcp/compute/backend_bucket_iam_member.py,sha256=l_q5bnbJcNG3iAJr0JYQJykyRZSkfANxEafAayakdEo,28611
|
398
401
|
pulumi_gcp/compute/backend_bucket_iam_policy.py,sha256=AHJ58OhurTP8FJK4Txu0E054aracg3r8z2DEOzFXHns,15336
|
399
402
|
pulumi_gcp/compute/backend_bucket_signed_url_key.py,sha256=ra6p4UqjHioOMmPZJTwPoV8bOF44G-s_Hbw6eDbqzDI,15965
|
400
|
-
pulumi_gcp/compute/backend_service.py,sha256=
|
403
|
+
pulumi_gcp/compute/backend_service.py,sha256=TMFlIsnWzlZPkvZ35n9l9Sv6vT8RZnrZ9mfHUJMB8kU,150942
|
401
404
|
pulumi_gcp/compute/backend_service_iam_binding.py,sha256=jMQXb5PT25N33WIvYjzBhfTFZ3gKWsyu-iW5SGgAYnU,30518
|
402
405
|
pulumi_gcp/compute/backend_service_iam_member.py,sha256=Cl7jDiuROwcXUdkVF_iaKAaYJgpDVy-8VJs4NN3lG3w,30118
|
403
406
|
pulumi_gcp/compute/backend_service_iam_policy.py,sha256=cH59yQLzSjUOgoGyjt8HatS9G6tIiHpomrk1kcnEXl0,15412
|
@@ -494,7 +497,7 @@ pulumi_gcp/compute/instance_iam_member.py,sha256=X5STd6lGdZxl4rMG5LX_H3RItOLU8yQ
|
|
494
497
|
pulumi_gcp/compute/instance_iam_policy.py,sha256=-6CFdqFQTFMTAezDWEWMjNU7rJj2Fte0m9xTxQnnhp0,36282
|
495
498
|
pulumi_gcp/compute/instance_settings.py,sha256=n7ZmHb4hz6kdotiIpqetmdKECIBYoPKXYZqu8H4RReQ,15775
|
496
499
|
pulumi_gcp/compute/instance_template.py,sha256=ioNrOwUJnwz-fhJBt7UehVS1Q_BT6Wzt8BOavtz4Tx8,121898
|
497
|
-
pulumi_gcp/compute/interconnect.py,sha256=
|
500
|
+
pulumi_gcp/compute/interconnect.py,sha256=xI0Ke7CTINL1gGQg8Q1TKVrvWr0S6Aiq2hRkpY99VVI,90065
|
498
501
|
pulumi_gcp/compute/interconnect_attachment.py,sha256=mub4VDpWgMv0Pygig_U-kjfd_dHj1F1aAUAMeM__b5o,100714
|
499
502
|
pulumi_gcp/compute/machine_image.py,sha256=JWxojbQiLFv0CAdJGs-2imYOk9BgRlZ_OhJ783wFFTM,29204
|
500
503
|
pulumi_gcp/compute/machine_image_iam_binding.py,sha256=lb1tjfC8ufJhNS_c1p_axyosfzOtQcz_jydavyO4rNI,47039
|
@@ -518,7 +521,7 @@ pulumi_gcp/compute/node_template.py,sha256=VIZ_KQhSms9qfQbXptNyyO3aE5BkDFutEF2pS
|
|
518
521
|
pulumi_gcp/compute/organization_security_policy.py,sha256=WnK0cQq-YFe7S-QFwbyH9turB3SnFOjeVxpL2Cx7Hlw,19124
|
519
522
|
pulumi_gcp/compute/organization_security_policy_association.py,sha256=SDW0jUsqx77VAUmO36GMwtGVdVdGq3VB_Ea6UNdv-hY,16575
|
520
523
|
pulumi_gcp/compute/organization_security_policy_rule.py,sha256=T1jCY7e6zDtF0fOVdTIGUqA0UjXrXWP2xuqHC1PrT4A,35414
|
521
|
-
pulumi_gcp/compute/outputs.py,sha256=
|
524
|
+
pulumi_gcp/compute/outputs.py,sha256=NUEQ4Lu5qNhCtWCo4k38qhVtcOQlIDXLoit9xNlaVX0,2394126
|
522
525
|
pulumi_gcp/compute/packet_mirroring.py,sha256=fGANmLyfbP0qsMNMQU733HiTXaQkcUSka_5UGWm31tU,35045
|
523
526
|
pulumi_gcp/compute/per_instance_config.py,sha256=3047DIbni35ArkAXvim-HvjKJln_1mzyIAXOMyNjgnU,38507
|
524
527
|
pulumi_gcp/compute/project_cloud_armor_tier.py,sha256=EHueiiDIb_lnGqST6rHnXSIlYp-Gbe5jkUaGeySXQBY,12949
|
@@ -528,7 +531,7 @@ pulumi_gcp/compute/project_metadata_item.py,sha256=ysbi-bbTameBrWFK3A3qnI5ivyOoo
|
|
528
531
|
pulumi_gcp/compute/public_advertised_prefix.py,sha256=LnkUTiqChFRI4wRWYD1PkgnaylHeYcvl1hcJeM-96-8,21564
|
529
532
|
pulumi_gcp/compute/public_delegated_prefix.py,sha256=atJr5D-yS6VhPKBrE0ANy1I7lUPU8Ffla1azQPHC73o,26358
|
530
533
|
pulumi_gcp/compute/region_autoscaler.py,sha256=JDCfHhCXn4vUU6NYYOOMFDAIgajo0CcOnFB_tDQh_Ys,29827
|
531
|
-
pulumi_gcp/compute/region_backend_service.py,sha256=
|
534
|
+
pulumi_gcp/compute/region_backend_service.py,sha256=Dgtj0oxHLzZ7MlhAgJelgIt6fbNgVv85uMF2tuuGgsY,143065
|
532
535
|
pulumi_gcp/compute/region_backend_service_iam_binding.py,sha256=a0Mgm4ow6D7RT090EkX_BMQUJ2ss61tSRJfC63rM69E,35539
|
533
536
|
pulumi_gcp/compute/region_backend_service_iam_member.py,sha256=mSEcL49WiqYHVe9geoJmTBmvX_-VNwayVrvpvzI7kPk,35139
|
534
537
|
pulumi_gcp/compute/region_backend_service_iam_policy.py,sha256=OZFZiws9C9d1I5ednHsPsWzfusthbhk3UNSSqasQnps,20307
|
@@ -541,8 +544,8 @@ pulumi_gcp/compute/region_disk_resource_policy_attachment.py,sha256=Hk82XmFlfu-_
|
|
541
544
|
pulumi_gcp/compute/region_health_check.py,sha256=GsL0lTSMW7niwySaZXSN6eF6szh8gSsEFcKre6nwwl4,69772
|
542
545
|
pulumi_gcp/compute/region_instance_group_manager.py,sha256=11LRdjotF5Yu3-bO23pfZgK22OM9lNyRy4L5bRdLtek,115440
|
543
546
|
pulumi_gcp/compute/region_instance_template.py,sha256=1tGZyZ5tRtRRIs-yS_4mNxqyrUO6mG4WtRhTjT1n8qA,102283
|
544
|
-
pulumi_gcp/compute/region_network_endpoint.py,sha256=
|
545
|
-
pulumi_gcp/compute/region_network_endpoint_group.py,sha256=
|
547
|
+
pulumi_gcp/compute/region_network_endpoint.py,sha256=na69n-t0Vt4Kas2x2BET7BL46boqdeeoL9C16dC-hhA,33587
|
548
|
+
pulumi_gcp/compute/region_network_endpoint_group.py,sha256=oQiejjjWp4ZaReacT4o0QFvZcXdaouEYG8uqH8V4Dsk,67671
|
546
549
|
pulumi_gcp/compute/region_network_firewall_policy.py,sha256=KNKunkmOq7FJYrHtgiQIshL-YN_bv8-958iTVDWEkUU,25828
|
547
550
|
pulumi_gcp/compute/region_network_firewall_policy_association.py,sha256=N4mMYCMtgdOPfRc-KGfU3oz_krQDfQfTgyG55Y5fDSU,18433
|
548
551
|
pulumi_gcp/compute/region_network_firewall_policy_rule.py,sha256=r-YPEUXtpvB5z1Fqvud2A5k3Y1gerTqDqHkfQZZuLNA,60085
|
@@ -552,7 +555,7 @@ pulumi_gcp/compute/region_security_policy_rule.py,sha256=8pgNzz9m8cdZxVlKMQjosvX
|
|
552
555
|
pulumi_gcp/compute/region_ssl_certificate.py,sha256=6J8Hu67C1TMDzce_uflyncoN9J-4du7VwifbrwrB_cU,32294
|
553
556
|
pulumi_gcp/compute/region_ssl_policy.py,sha256=LGCGbKbS2Yg6X08GkL-LsQRXxvLdtHOVhL1IA7IIv9E,38236
|
554
557
|
pulumi_gcp/compute/region_target_http_proxy.py,sha256=bDpRvJ7WAWUwn4kPiJpYiquKWY-3SLtu6cOQo_Lvpak,28518
|
555
|
-
pulumi_gcp/compute/region_target_https_proxy.py,sha256=
|
558
|
+
pulumi_gcp/compute/region_target_https_proxy.py,sha256=mP2pQj3oIuzJ7-cGOJx9Vx8Ypxun7SzzmAydF85lyx8,57846
|
556
559
|
pulumi_gcp/compute/region_target_tcp_proxy.py,sha256=FHZS_fYMv01tP-u29RE0j3te6uLzGCVX99Bvaswz5sc,31406
|
557
560
|
pulumi_gcp/compute/region_url_map.py,sha256=WUsgVsxMiD9Bc1VkECKeZkJRkNblCqERIWOhT5s76HI,106021
|
558
561
|
pulumi_gcp/compute/reservation.py,sha256=bvh3EPWnGfyk_fmDu5TCM6otz-zMm-eaBnL99IdWC94,31739
|
@@ -581,7 +584,7 @@ pulumi_gcp/compute/subnetwork_iam_member.py,sha256=qRkZiWNrrai_Jl4Xi1Fqh-BdeU-c-
|
|
581
584
|
pulumi_gcp/compute/subnetwork_iam_policy.py,sha256=z3AR_7QxmtI3y8xqx2yAwqe9oW0pCVcVZdwW3K6Sesc,38984
|
582
585
|
pulumi_gcp/compute/target_grpc_proxy.py,sha256=F5JddkrRsS_k1774PVveqYGC9V-GjaDDnY6sOBFTV04,40064
|
583
586
|
pulumi_gcp/compute/target_http_proxy.py,sha256=3OJexrzot7hKnFR4VWs5GEJ6SGEgaBmQ_iTbsSCvYyE,35954
|
584
|
-
pulumi_gcp/compute/target_https_proxy.py,sha256=
|
587
|
+
pulumi_gcp/compute/target_https_proxy.py,sha256=HELYI8FUP2xDVY4FsFCOuYoREFMYIGYoGZSp323eJUY,77079
|
585
588
|
pulumi_gcp/compute/target_instance.py,sha256=4-nQ1FQ-u5TScxyN_8tYKulsqt7jiLAVinJEpQTB-_Y,41633
|
586
589
|
pulumi_gcp/compute/target_pool.py,sha256=pI6WKQ-8d1RyhAOB9GfxL9-Dj6Ww5_fH5MaC6j8RkL8,33547
|
587
590
|
pulumi_gcp/compute/target_ssl_proxy.py,sha256=t1SgQRNpSurl2wgjCh4O37tbwfD-Tx0_oYL_kCM7a2A,36504
|
@@ -590,11 +593,11 @@ pulumi_gcp/compute/url_map.py,sha256=Xz5FZP-m68bjUpmCxURWs3zl5yYp4PuFtdkeQkepBPY
|
|
590
593
|
pulumi_gcp/compute/vpn_gateway.py,sha256=y7CJesUlufImY5iM9wfVvfRaG45612mhVOU6HeQ-evw,26020
|
591
594
|
pulumi_gcp/compute/vpn_tunnel.py,sha256=nQBTMOAxX1NKDxBInhVlAsyofcxQp1Scr_KJqjsWaEY,70842
|
592
595
|
pulumi_gcp/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
593
|
-
pulumi_gcp/config/__init__.pyi,sha256=
|
596
|
+
pulumi_gcp/config/__init__.pyi,sha256=wS9Ui0zvnEOmjOwZvxzNqC3c5cBvan3J-u9Lovi4pzM,7547
|
594
597
|
pulumi_gcp/config/outputs.py,sha256=NX6HQIexmUVsFBMqvoZH1PzCrkfy582L5E5CHWVLmqs,1060
|
595
|
-
pulumi_gcp/config/vars.py,sha256=
|
598
|
+
pulumi_gcp/config/vars.py,sha256=B50enRgr9GWjZ48zdC8IwFjKgOc1lHLNaee3IkGD_i0,23886
|
596
599
|
pulumi_gcp/container/__init__.py,sha256=KbuEacj9tsLxH3rVHSnPd3VtGOOnpdgVgv-Fq0o_Ll4,845
|
597
|
-
pulumi_gcp/container/_inputs.py,sha256=
|
600
|
+
pulumi_gcp/container/_inputs.py,sha256=QBmu-7jrxT3XbY9ZUiaTGgjuyxqrzJ16ou0iNoP1uio,658235
|
598
601
|
pulumi_gcp/container/attached_cluster.py,sha256=e1fsTpAkFAo7gUZIrUb5qQSpYyLQocld1Ree5qxJBuk,70840
|
599
602
|
pulumi_gcp/container/aws_cluster.py,sha256=yWJcTBm6vEc0wAB8d1pbq_-jtYIlrF0_Jm89cxb7Np4,71042
|
600
603
|
pulumi_gcp/container/aws_node_pool.py,sha256=r9qLIusTAcjDrK4glafTTsCycwG0O2W-TG-uvMyoV4s,80849
|
@@ -611,7 +614,7 @@ pulumi_gcp/container/get_engine_versions.py,sha256=mTgdiSsdq7VpWmqwKBfTw0pd2GYVZ
|
|
611
614
|
pulumi_gcp/container/get_registry_image.py,sha256=BK2v8NjiPMfRdXiuhJauP4H0otPr9xYzZJmDJNyidtQ,6992
|
612
615
|
pulumi_gcp/container/get_registry_repository.py,sha256=8j5cl1J9lQtItliF6Cjayatzqclp7-9PDwEX1bo8-uM,5353
|
613
616
|
pulumi_gcp/container/node_pool.py,sha256=C_lZMLL1rRGIQO4tKamhh8pLq6ZR9ih-FvxkjG3mUig,73692
|
614
|
-
pulumi_gcp/container/outputs.py,sha256=
|
617
|
+
pulumi_gcp/container/outputs.py,sha256=rhCF8b-gKAea0rQC9cF5Az7oJfThSnS2PQi4nRqIa8U,906753
|
615
618
|
pulumi_gcp/container/registry.py,sha256=UoKQZ7gwQI6GyL9amL5yxt9g0PIep9qky5Kodd8Z8X0,13113
|
616
619
|
pulumi_gcp/containeranalysis/__init__.py,sha256=gENWQXPC0oV7t5uEv6IgscsCOVeXKa7AHewwOiVIgek,488
|
617
620
|
pulumi_gcp/containeranalysis/_inputs.py,sha256=1yTLGmL7agpwp0maJz0rEzueNmb9QOpSEcdah1zfBus,12213
|
@@ -787,10 +790,10 @@ pulumi_gcp/diagflow/fulfillment.py,sha256=n6JaQQCzukhkKmkWFFHkblIQKUrRn8d4s3CTiH
|
|
787
790
|
pulumi_gcp/diagflow/intent.py,sha256=hyShEoHGD1W6OxLfhULVTT9UgYIpMe2R-yxWAZGLAv0,53731
|
788
791
|
pulumi_gcp/diagflow/outputs.py,sha256=j8nQ7OQ1Z6cAtcnnK3BG0_rpvNNkotSDcjcsc0kdL_w,354624
|
789
792
|
pulumi_gcp/discoveryengine/__init__.py,sha256=EOYHhAhM2fS3CaDu50Xwxhjfg4CXOC2tySKC5ahEzq8,396
|
790
|
-
pulumi_gcp/discoveryengine/_inputs.py,sha256=
|
793
|
+
pulumi_gcp/discoveryengine/_inputs.py,sha256=11JpC0lxgwh8fv_SnQg1Ig_nr-48LKjeRw8mAm1H6Yc,21304
|
791
794
|
pulumi_gcp/discoveryengine/chat_engine.py,sha256=DaHsv87LADhSx7TonO31HVZ_OUCA7bcgW2BwSAn8ISw,37352
|
792
|
-
pulumi_gcp/discoveryengine/data_store.py,sha256=
|
793
|
-
pulumi_gcp/discoveryengine/outputs.py,sha256=
|
795
|
+
pulumi_gcp/discoveryengine/data_store.py,sha256=ruz2-Ud_GH9A3q0pGVk4qslPL1_S9T6fwrPXl39Bjjg,39889
|
796
|
+
pulumi_gcp/discoveryengine/outputs.py,sha256=HxCOWSxIvpZ2hpAHhIrDCTVF479aF_NKAFbLJXyfMFQ,24712
|
794
797
|
pulumi_gcp/discoveryengine/search_engine.py,sha256=MvjbidGHyw7_q-L_2sq-oIQNEOwAPmWlkWW-7wKVNEg,34691
|
795
798
|
pulumi_gcp/dns/__init__.py,sha256=ab8wmKnXkDvmMb7X3WwoVTvxilHhbzmO8IbqcXVdsjU,749
|
796
799
|
pulumi_gcp/dns/_inputs.py,sha256=9lsRdagdvcakBlptYnrq_5Yj-px3I2d5fbCIxeVCRw0,72682
|
@@ -809,10 +812,10 @@ pulumi_gcp/dns/record_set.py,sha256=g7q4Vprx2OjbK_W9O0r-O7nnT5dtUYcLSOWwI4-r0sg,
|
|
809
812
|
pulumi_gcp/dns/response_policy.py,sha256=w5zf1tlo36mD6ykJdgDH1DlVW2aHCI0eK3WVJZKJlwY,24821
|
810
813
|
pulumi_gcp/dns/response_policy_rule.py,sha256=ueFGbX_9IX2MKsrbWpFOJux2SrpNuoCrpufTf5RZdCs,24879
|
811
814
|
pulumi_gcp/edgecontainer/__init__.py,sha256=WygSCBP_5aoAv_vXB3yIyA9A_pzqfqBffG7TGZtZ0EU,392
|
812
|
-
pulumi_gcp/edgecontainer/_inputs.py,sha256=
|
815
|
+
pulumi_gcp/edgecontainer/_inputs.py,sha256=1W4Ee8U7eXICvsDDnhuAtygR5wLM490jM02dP9ic9OU,51374
|
813
816
|
pulumi_gcp/edgecontainer/cluster.py,sha256=XZmMrAw8AoS3Y0hP1OcCCbUegH9aJZ5_5ByOlPOZajY,71179
|
814
817
|
pulumi_gcp/edgecontainer/node_pool.py,sha256=E-OzekaMyEy_5SX3HjyF6v4o6FvhiXr1lECtkZazviA,47943
|
815
|
-
pulumi_gcp/edgecontainer/outputs.py,sha256=
|
818
|
+
pulumi_gcp/edgecontainer/outputs.py,sha256=LBHxtU56YrABDWOS8ldpE9-DDw8Ha3WqlhdFSjpF-Ws,50413
|
816
819
|
pulumi_gcp/edgecontainer/vpn_connection.py,sha256=AUqiZ_2Zky9g3cnSJ1ndwKh6mp0kajemvdWbWgrLnYA,41558
|
817
820
|
pulumi_gcp/edgenetwork/__init__.py,sha256=A1y7lKHEIeHBq3i6lQs8dnDeGtXPLl_WnKjsTTFXiJ8,314
|
818
821
|
pulumi_gcp/edgenetwork/network.py,sha256=nHMlO-09pqIOJljcIyq3Bk-snFBxR_U46T6d6ECj8Z4,27298
|
@@ -917,7 +920,7 @@ pulumi_gcp/gkebackup/restore_plan_iam_binding.py,sha256=XABGcO1FVk-tfVK_COVyPtaR
|
|
917
920
|
pulumi_gcp/gkebackup/restore_plan_iam_member.py,sha256=Q5VjC4j7KgZRlMeH6n8zlmZkCGg_VU9EHEIRRINXerY,60722
|
918
921
|
pulumi_gcp/gkebackup/restore_plan_iam_policy.py,sha256=VQvWLHbn9nsJ9rKuDiWmkcWqtlOHrBrFto4f6ZwBgag,58059
|
919
922
|
pulumi_gcp/gkehub/__init__.py,sha256=iLb4Z8dfMN3lOqheVhtE2RRRRbx_I32y5BCU_AqNwyI,1008
|
920
|
-
pulumi_gcp/gkehub/_inputs.py,sha256=
|
923
|
+
pulumi_gcp/gkehub/_inputs.py,sha256=hrTJumW0Sb1l5lwulJaf9SauMPW9KlSeTJEkiI_pwns,160157
|
921
924
|
pulumi_gcp/gkehub/feature.py,sha256=YDv5qbOXPI4G_3XUJ4JijgT2c0hm35R_m8W4HQgAc8E,59545
|
922
925
|
pulumi_gcp/gkehub/feature_iam_binding.py,sha256=bs7wHmb-GpFFZs_WbNsnlm4qPddxEELFiwBgYQA2w84,40121
|
923
926
|
pulumi_gcp/gkehub/feature_iam_member.py,sha256=zRlKuq2nj9gtjtbUaqCnhxFIj2GAYPKXbI76Hf5cI3Q,39725
|
@@ -934,7 +937,7 @@ pulumi_gcp/gkehub/membership_iam_member.py,sha256=qM5z9YbnuhD7bTJD1lL6SttSftbUhT
|
|
934
937
|
pulumi_gcp/gkehub/membership_iam_policy.py,sha256=iFCuiFaOPCbjkUBJoUDKzJ-MF7PSc1egTdnMZaNT5OU,27326
|
935
938
|
pulumi_gcp/gkehub/membership_rbac_role_binding.py,sha256=AQpg04FhPJn6hvA7CrvRsJbbgAZwLe-LFqdeOFDbt0M,29532
|
936
939
|
pulumi_gcp/gkehub/namespace.py,sha256=NE8vA2O1AqYBwF9LKm8VuJVRR7BB0IkYSYh6cF9MAQE,34437
|
937
|
-
pulumi_gcp/gkehub/outputs.py,sha256=
|
940
|
+
pulumi_gcp/gkehub/outputs.py,sha256=QKxkIVphWjq8M2eLWF_WgMwVhCiDKYVE3XqRJpsBQGs,150535
|
938
941
|
pulumi_gcp/gkehub/scope.py,sha256=4RVe6Dh3mDnVwhG9O-cVO8Ou4xFo62GhCVwhkLxY6jg,29574
|
939
942
|
pulumi_gcp/gkehub/scope_iam_binding.py,sha256=4eXzVl2114ausy2LIfgduVFXGAOsF473NUhwMSZ1UL8,35064
|
940
943
|
pulumi_gcp/gkehub/scope_iam_member.py,sha256=Q_EctT4Ryyr5oSY6ruHYx0CZ5QYOaBE-IEG0b72ZZ6A,34668
|
@@ -1087,7 +1090,7 @@ pulumi_gcp/logging/billing_account_sink.py,sha256=Ns9Jz-wEVA37gIiOQdL3U0oFn3g-nM
|
|
1087
1090
|
pulumi_gcp/logging/folder_bucket_config.py,sha256=L1QjA3ABPV18qnuN_fCFGAIRAqyA7sP7ZRikPhlONw0,29706
|
1088
1091
|
pulumi_gcp/logging/folder_exclusion.py,sha256=bPttKvM-nGbB4mXeuhd3PQYcdK4UzTSyJZqb0UOirZE,17578
|
1089
1092
|
pulumi_gcp/logging/folder_settings.py,sha256=4XFFt-TxfZAzqoqa51ce6SQNZQqEdnRRD3OSkAMMVpI,22590
|
1090
|
-
pulumi_gcp/logging/folder_sink.py,sha256=
|
1093
|
+
pulumi_gcp/logging/folder_sink.py,sha256=dY-jiHiUXwbQ7qOEDeYMzU7vhk8k7MbkcTSNOHpHOIA,39982
|
1091
1094
|
pulumi_gcp/logging/get_folder_settings.py,sha256=Vo9K-8GrEm9CfjFjlD8U5rOIlvBOmL0XBWBUxYx3ZYw,8805
|
1092
1095
|
pulumi_gcp/logging/get_log_view_iam_policy.py,sha256=vdfXFWd293GBP0w_jklheyBfsYKM9hAyHHBw3QcFTMI,6727
|
1093
1096
|
pulumi_gcp/logging/get_organization_settings.py,sha256=3YQgRk3BoQ2MNfYByivdGbdEZVa2i-mmP--znvWMg9Q,9129
|
@@ -1103,7 +1106,7 @@ pulumi_gcp/logging/metric.py,sha256=q9oQq0hzjH7pi4h4enbVtyTHCnRqrkPq9CcOtDWAETQ,
|
|
1103
1106
|
pulumi_gcp/logging/organization_bucket_config.py,sha256=Q02Q_3BjzcJ68yurmoLuhnH3rNB18LgpgrbZ9BgruyY,30590
|
1104
1107
|
pulumi_gcp/logging/organization_exclusion.py,sha256=jxM67PLu1RukbZS0tWEef4Cv7aKEvl1ndYS2FSAVtF0,17091
|
1105
1108
|
pulumi_gcp/logging/organization_settings.py,sha256=QJJWpJbj1mCcXJciqq3LHpK1LRlDJmshfrV-N5hY4U8,22851
|
1106
|
-
pulumi_gcp/logging/organization_sink.py,sha256=
|
1109
|
+
pulumi_gcp/logging/organization_sink.py,sha256=I5lbgjjXCM5wIlGW7eV39eNp8zQTvOgFVq8kVzDRWJc,39861
|
1107
1110
|
pulumi_gcp/logging/outputs.py,sha256=kXatcU5rsFpUfKI9BNE4ZTe53QuU1UWFwY3NaqSipC8,75882
|
1108
1111
|
pulumi_gcp/logging/project_bucket_config.py,sha256=Q21CW_Lwradns_fWuOPfGVPv9BTjBfk5HdGe2ma4sXo,39680
|
1109
1112
|
pulumi_gcp/logging/project_exclusion.py,sha256=EWK5Zfl_Q9rEJ_Yyq0gKR2U2MOM-aWzWOwPAxZSIa-A,17243
|
@@ -1112,6 +1115,11 @@ pulumi_gcp/looker/__init__.py,sha256=Hf0Cqao9B5Mu8z0GbtZ7yy_tu1-bviMkpbVFlk2_0sc
|
|
1112
1115
|
pulumi_gcp/looker/_inputs.py,sha256=z6TLEc2nf--awAYieCOx6LrkiBSjrkS9LlScDLAoGHY,22664
|
1113
1116
|
pulumi_gcp/looker/instance.py,sha256=c6wxoFSkNs4xt6Zu22GbphFvei4nSg0nEe9x8pc64F0,76370
|
1114
1117
|
pulumi_gcp/looker/outputs.py,sha256=W5qtyxXkZAOahmfdnIgogH1gTZE4eclHlghIin4fUMY,21515
|
1118
|
+
pulumi_gcp/managedkafka/__init__.py,sha256=HVkaU04tthITwRTEwn48yAlkpECU-Xxuj6i7cxEftto,358
|
1119
|
+
pulumi_gcp/managedkafka/_inputs.py,sha256=rsz6Nti_VEEPx8sL97HZIWO7ZNCNP5cs2uzN6WbEG-Y,7410
|
1120
|
+
pulumi_gcp/managedkafka/cluster.py,sha256=Fqdb4I1kIeA9bY5wME1l438Yi0zV6Z2kws2oKTSg9LE,39502
|
1121
|
+
pulumi_gcp/managedkafka/outputs.py,sha256=5XVqwCIA1AkhjSZKgpOsGieUoOwQ5KJipjXjBTPqMjU,8042
|
1122
|
+
pulumi_gcp/managedkafka/topic.py,sha256=_dnIgHuBqX2Chyj6GIPoBcF0_iHRNHPl_qxBsuku8tM,27659
|
1115
1123
|
pulumi_gcp/memcache/__init__.py,sha256=Hf0Cqao9B5Mu8z0GbtZ7yy_tu1-bviMkpbVFlk2_0sc,338
|
1116
1124
|
pulumi_gcp/memcache/_inputs.py,sha256=4v-7HNbeHauCyQZ0F38UtE6u26ptOL6CC7CrZ6-wwL8,20035
|
1117
1125
|
pulumi_gcp/memcache/instance.py,sha256=3A8V8J3mM0GF_Q11jERy4knZKxWvU0QAXJVvCasZwu4,54986
|
@@ -1145,9 +1153,10 @@ pulumi_gcp/monitoring/notification_channel.py,sha256=Fe50BH8ebHypaIVd8IrAKzmIblt
|
|
1145
1153
|
pulumi_gcp/monitoring/outputs.py,sha256=P6k4EO1gnEQdhr-HSzW3Q9JHPxyRiS9LJCJQjPqTCRo,205175
|
1146
1154
|
pulumi_gcp/monitoring/slo.py,sha256=fo-VgcYygyRlW7CFtvYQsnGKo0RDEHiku1hNWhqBLzU,59036
|
1147
1155
|
pulumi_gcp/monitoring/uptime_check_config.py,sha256=JScysPPASQjOHm-Y3SdlJrQsVxfpsR_nhy3CJTEv4ZA,66358
|
1148
|
-
pulumi_gcp/netapp/__init__.py,sha256=
|
1156
|
+
pulumi_gcp/netapp/__init__.py,sha256=a2WASorZqaGWZpZUn9UzQl7ZtDmRg7bBrzy8P1Si_38,565
|
1149
1157
|
pulumi_gcp/netapp/_inputs.py,sha256=wcgrzHAkOtQxq7zIiJWYEj0VHZ0aqKfFhWpFDEVtcg0,42955
|
1150
|
-
pulumi_gcp/netapp/active_directory.py,sha256=
|
1158
|
+
pulumi_gcp/netapp/active_directory.py,sha256=8Da8JLKtej5AIpC3wA2ACfl5ok_d7S8Dc7VwClLwsDU,72049
|
1159
|
+
pulumi_gcp/netapp/backup.py,sha256=tDA0yuxpoo-KX88RT8bq_Pbgzcoick8EXwah6My1Ih8,42200
|
1151
1160
|
pulumi_gcp/netapp/backup_policy.py,sha256=2pyuYfzb3R-Y63IHDIqI3iGpiZRqVepzjCCvGxrveuY,37960
|
1152
1161
|
pulumi_gcp/netapp/backup_vault.py,sha256=Sj-OnujsDzocdQrPHUuOHnkAimfvFCcalwuzGgy_Rl0,25217
|
1153
1162
|
pulumi_gcp/netapp/kmsconfig.py,sha256=am_jgkfUpN68gkcd7oUUXEinV476ZDQKgkSLRsB-xX8,29094
|
@@ -1347,19 +1356,22 @@ pulumi_gcp/securesourcemanager/instance_iam_binding.py,sha256=zhnzswO4Km79RNmz00
|
|
1347
1356
|
pulumi_gcp/securesourcemanager/instance_iam_member.py,sha256=X6nxcxesUUuaaIZ1FYSMPZrwyl4BzThNUGiCXe8CSR0,12453
|
1348
1357
|
pulumi_gcp/securesourcemanager/instance_iam_policy.py,sha256=1LYHMcENkugU2PqxOW6aLJc7reKlod__izRYL-L_aDc,9820
|
1349
1358
|
pulumi_gcp/securesourcemanager/outputs.py,sha256=rXZjVPfRB5YSBOqcAp2AcoPzZmQKnsHOXBtdTNVb6oo,7546
|
1350
|
-
pulumi_gcp/securitycenter/__init__.py,sha256=
|
1351
|
-
pulumi_gcp/securitycenter/_inputs.py,sha256=
|
1359
|
+
pulumi_gcp/securitycenter/__init__.py,sha256=CpPER7a2Rc9U4HBmNT3g5Ck-yk-fTGRjXA7IHewj7E0,1110
|
1360
|
+
pulumi_gcp/securitycenter/_inputs.py,sha256=_F-BTjqPIIUkVYbWSmvosIuiZk4bIhHvPqSwRA_J8o8,108405
|
1352
1361
|
pulumi_gcp/securitycenter/event_threat_detection_custom_module.py,sha256=Ihzztkxqg_3g6I-cHGoWljwQpu_NKc2ALBzmTRxtVjo,23196
|
1353
1362
|
pulumi_gcp/securitycenter/folder_custom_module.py,sha256=Gy9VtYowN2yHXPdKcWZMwkpKSC-_awKhWiwNNYC4ULQ,31659
|
1354
1363
|
pulumi_gcp/securitycenter/get_source_iam_policy.py,sha256=jbX-iD3SgzKNPZ9AsvMrwlnjtIJrckCABFoDys41cWQ,4701
|
1355
1364
|
pulumi_gcp/securitycenter/instance_iam_binding.py,sha256=f8gmYvOvb_f6KmJVySKta2v8wSyTRHRYRzA9JWyLl_8,25154
|
1356
1365
|
pulumi_gcp/securitycenter/instance_iam_member.py,sha256=A--c7CAHi8L9fznOFMHuZ5e84zE3hF_bn2hEoSS1rmY,24854
|
1357
1366
|
pulumi_gcp/securitycenter/instance_iam_policy.py,sha256=Yn_SktGo_gEQX6zEJEps6HH4ycdzgatZHf8iYm6-99k,22221
|
1367
|
+
pulumi_gcp/securitycenter/management_folder_security_health_analytics_custom_module.py,sha256=_bOCUbLsqkAwf-0j1nKsP5vVp0RFn0cYQG0kEcn5Nn0,36932
|
1358
1368
|
pulumi_gcp/securitycenter/management_organization_event_threat_detection_custom_module.py,sha256=5Lsnsl_QAS3H3OODT6EIW3CpnA3U3MLANXZf0t2hy2Q,26156
|
1369
|
+
pulumi_gcp/securitycenter/management_organization_security_health_analytics_custom_module.py,sha256=XYeD3X3W8M66Nz7xtWBmghHbFXdBkLY9qHasz8QkvKQ,37194
|
1370
|
+
pulumi_gcp/securitycenter/management_project_security_health_analytics_custom_module.py,sha256=euJ6HFJnlYL_OTn9lpsLvoMrgeBjOlREd9K-AW7uRWQ,37181
|
1359
1371
|
pulumi_gcp/securitycenter/mute_config.py,sha256=VVyJRH_HoTdrboOnBNDdoh8npbMQQ_CrkqY_BBw6T1w,23586
|
1360
1372
|
pulumi_gcp/securitycenter/notification_config.py,sha256=w7J-0SQt82oGhlKN01y3bBjhVYvEjMjfVT48_Itq6l8,23195
|
1361
1373
|
pulumi_gcp/securitycenter/organization_custom_module.py,sha256=WPNZV4QRDTU-xtrDH5cLbDEw98VWp1oWCPKqI-3cJzE,31885
|
1362
|
-
pulumi_gcp/securitycenter/outputs.py,sha256=
|
1374
|
+
pulumi_gcp/securitycenter/outputs.py,sha256=cIqVAimEPyOEErB_seLnrJxz1SKcuxJv2SFqZ90jF_Q,98500
|
1363
1375
|
pulumi_gcp/securitycenter/project_custom_module.py,sha256=eQ5zy04q1zXxV9wVpP7hnqzmWCSnNHXGXgPRln0_5NQ,30813
|
1364
1376
|
pulumi_gcp/securitycenter/source.py,sha256=vLIZlNOzf64e92eUARg72YYGPvhw8OHdvtfwt3GED70,16670
|
1365
1377
|
pulumi_gcp/securitycenter/source_iam_binding.py,sha256=yR0xFvrTXkuoY_7POrTOLeC76UxiYfwjGUx1v_0EhsQ,15454
|
@@ -1510,7 +1522,7 @@ pulumi_gcp/vertex/ai_endpoint_iam_member.py,sha256=HRFaDhejeaIM0TEadgAVj05fVK2x5
|
|
1510
1522
|
pulumi_gcp/vertex/ai_endpoint_iam_policy.py,sha256=pUvYy2M6r-0PQwg3bUjp0biAqnHbX9ckHAp5X3Ci7QM,9710
|
1511
1523
|
pulumi_gcp/vertex/ai_feature_group.py,sha256=K3ikaUNQUPtXeDZasM12Kwu7Lg_mrszscFpugwltEfk,32332
|
1512
1524
|
pulumi_gcp/vertex/ai_feature_group_feature.py,sha256=ydMhoNJ__Fk7oRcwi57vDow9t3M0sY5Y3Ohd3vqxi8Y,34496
|
1513
|
-
pulumi_gcp/vertex/ai_feature_online_store.py,sha256=
|
1525
|
+
pulumi_gcp/vertex/ai_feature_online_store.py,sha256=M9e4GTdERpPKUsJNpmbpz5CXfM9tLP92FV6jwtaT3m0,53198
|
1514
1526
|
pulumi_gcp/vertex/ai_feature_online_store_featureview.py,sha256=5n2SQRUHVcv1Le_Xx-DdMg6Xkk2ehWFGhdocmrEsfQE,63416
|
1515
1527
|
pulumi_gcp/vertex/ai_feature_store.py,sha256=_N2k8zVV-UwJ46dr9sgNQm8jz3Mlt3KTfr3XDlDHTWA,41728
|
1516
1528
|
pulumi_gcp/vertex/ai_feature_store_entity_type.py,sha256=exWXuoUeaMlMLE5685Jl_yO6Z8QNekH9M94TBnp6EEU,41113
|
@@ -1580,7 +1592,7 @@ pulumi_gcp/workstations/workstation_config_iam_policy.py,sha256=SbcUaogkBDhoq-zf
|
|
1580
1592
|
pulumi_gcp/workstations/workstation_iam_binding.py,sha256=osACVJUI426SnsvhOawTHn5UQ2Iay3QsSTUYcqCaV9U,37517
|
1581
1593
|
pulumi_gcp/workstations/workstation_iam_member.py,sha256=rvn00lBdDpLOWb66PmLpVn6LXgi7X0aMTXFCcJYqWH0,37121
|
1582
1594
|
pulumi_gcp/workstations/workstation_iam_policy.py,sha256=yiwa5y8UWpGXRltifAZVrqdZEF9PXFoT8MOO63tmO4s,23845
|
1583
|
-
pulumi_gcp-7.28.
|
1584
|
-
pulumi_gcp-7.28.
|
1585
|
-
pulumi_gcp-7.28.
|
1586
|
-
pulumi_gcp-7.28.
|
1595
|
+
pulumi_gcp-7.28.0a1718995220.dist-info/METADATA,sha256=WxKw_KzWAXJJBr_-HVJ6T0Np7aPNn8DFYRTa4DEWU6E,2662
|
1596
|
+
pulumi_gcp-7.28.0a1718995220.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
|
1597
|
+
pulumi_gcp-7.28.0a1718995220.dist-info/top_level.txt,sha256=acmDGVRVMJWpVhhj-l-aHbZ7mrvmzjmUeqRyCN8nnjM,11
|
1598
|
+
pulumi_gcp-7.28.0a1718995220.dist-info/RECORD,,
|
File without changes
|
{pulumi_gcp-7.28.0a1718863699.dist-info → pulumi_gcp-7.28.0a1718995220.dist-info}/top_level.txt
RENAMED
File without changes
|