pulumi-gcp 8.21.0a1741103856__py3-none-any.whl → 8.21.0a1741183435__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 +64 -0
- pulumi_gcp/alloydb/cluster.py +148 -0
- pulumi_gcp/alloydb/instance.py +28 -28
- pulumi_gcp/apihub/__init__.py +1 -0
- pulumi_gcp/apihub/host_project_registration.py +535 -0
- pulumi_gcp/bigquery/table.py +1 -1
- pulumi_gcp/compute/__init__.py +5 -0
- pulumi_gcp/compute/_inputs.py +770 -0
- pulumi_gcp/compute/backend_service.py +14 -7
- pulumi_gcp/compute/ca_external_account_key.py +48 -3
- pulumi_gcp/compute/disk.py +295 -0
- pulumi_gcp/compute/get_disk.py +56 -1
- pulumi_gcp/compute/get_instant_snapshot_iam_policy.py +182 -0
- pulumi_gcp/compute/instant_snapshot.py +796 -0
- pulumi_gcp/compute/instant_snapshot_iam_binding.py +1087 -0
- pulumi_gcp/compute/instant_snapshot_iam_member.py +1087 -0
- pulumi_gcp/compute/instant_snapshot_iam_policy.py +906 -0
- pulumi_gcp/compute/outputs.py +1329 -6
- pulumi_gcp/compute/region_backend_service.py +14 -7
- pulumi_gcp/compute/route.py +228 -2
- pulumi_gcp/compute/url_map.py +8 -0
- pulumi_gcp/container/_inputs.py +3 -3
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/datacatalog/entry.py +4 -0
- pulumi_gcp/datacatalog/tag.py +4 -0
- pulumi_gcp/dataproc/_inputs.py +12 -15
- pulumi_gcp/dataproc/outputs.py +8 -10
- pulumi_gcp/discoveryengine/target_site.py +4 -4
- pulumi_gcp/eventarc/__init__.py +1 -0
- pulumi_gcp/eventarc/_inputs.py +40 -0
- pulumi_gcp/eventarc/message_bus.py +927 -0
- pulumi_gcp/eventarc/outputs.py +41 -0
- pulumi_gcp/gemini/__init__.py +1 -0
- pulumi_gcp/gemini/data_sharing_with_google_setting_binding.py +20 -8
- pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +6 -0
- pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +734 -0
- pulumi_gcp/gemini/logging_setting_binding.py +7 -7
- pulumi_gcp/iam/_inputs.py +33 -9
- pulumi_gcp/iam/outputs.py +22 -6
- pulumi_gcp/iam/workforce_pool_provider.py +2 -2
- pulumi_gcp/memorystore/__init__.py +1 -0
- pulumi_gcp/memorystore/get_instance.py +425 -0
- pulumi_gcp/memorystore/outputs.py +582 -0
- pulumi_gcp/networkconnectivity/hub.py +84 -0
- pulumi_gcp/networkservices/grpc_route.py +116 -12
- pulumi_gcp/notebooks/location.py +4 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/storage/__init__.py +1 -0
- pulumi_gcp/storage/_inputs.py +74 -0
- pulumi_gcp/storage/anywhere_cache.py +552 -0
- pulumi_gcp/storage/outputs.py +65 -0
- pulumi_gcp/storage/transfer_job.py +67 -0
- {pulumi_gcp-8.21.0a1741103856.dist-info → pulumi_gcp-8.21.0a1741183435.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.21.0a1741103856.dist-info → pulumi_gcp-8.21.0a1741183435.dist-info}/RECORD +56 -46
- {pulumi_gcp-8.21.0a1741103856.dist-info → pulumi_gcp-8.21.0a1741183435.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.21.0a1741103856.dist-info → pulumi_gcp-8.21.0a1741183435.dist-info}/top_level.txt +0 -0
@@ -91,7 +91,8 @@ class BackendServiceArgs:
|
|
91
91
|
A health check must be specified unless the backend service uses an internet
|
92
92
|
or serverless NEG as a backend.
|
93
93
|
For internal load balancing, a URL to a HealthCheck resource must be specified instead.
|
94
|
-
:param pulumi.Input['BackendServiceIapArgs'] iap: Settings for enabling Cloud Identity Aware Proxy
|
94
|
+
:param pulumi.Input['BackendServiceIapArgs'] iap: Settings for enabling Cloud Identity Aware Proxy.
|
95
|
+
If OAuth client is not set, the Google-managed OAuth client is used.
|
95
96
|
Structure is documented below.
|
96
97
|
:param pulumi.Input[str] ip_address_selection_policy: Specifies preference of traffic to the backend (from the proxy and from the client for proxyless gRPC).
|
97
98
|
Possible values are: `IPV4_ONLY`, `PREFER_IPV6`, `IPV6_ONLY`.
|
@@ -446,7 +447,8 @@ class BackendServiceArgs:
|
|
446
447
|
@pulumi.getter
|
447
448
|
def iap(self) -> Optional[pulumi.Input['BackendServiceIapArgs']]:
|
448
449
|
"""
|
449
|
-
Settings for enabling Cloud Identity Aware Proxy
|
450
|
+
Settings for enabling Cloud Identity Aware Proxy.
|
451
|
+
If OAuth client is not set, the Google-managed OAuth client is used.
|
450
452
|
Structure is documented below.
|
451
453
|
"""
|
452
454
|
return pulumi.get(self, "iap")
|
@@ -819,7 +821,8 @@ class _BackendServiceState:
|
|
819
821
|
A health check must be specified unless the backend service uses an internet
|
820
822
|
or serverless NEG as a backend.
|
821
823
|
For internal load balancing, a URL to a HealthCheck resource must be specified instead.
|
822
|
-
:param pulumi.Input['BackendServiceIapArgs'] iap: Settings for enabling Cloud Identity Aware Proxy
|
824
|
+
:param pulumi.Input['BackendServiceIapArgs'] iap: Settings for enabling Cloud Identity Aware Proxy.
|
825
|
+
If OAuth client is not set, the Google-managed OAuth client is used.
|
823
826
|
Structure is documented below.
|
824
827
|
:param pulumi.Input[str] ip_address_selection_policy: Specifies preference of traffic to the backend (from the proxy and from the client for proxyless gRPC).
|
825
828
|
Possible values are: `IPV4_ONLY`, `PREFER_IPV6`, `IPV6_ONLY`.
|
@@ -1220,7 +1223,8 @@ class _BackendServiceState:
|
|
1220
1223
|
@pulumi.getter
|
1221
1224
|
def iap(self) -> Optional[pulumi.Input['BackendServiceIapArgs']]:
|
1222
1225
|
"""
|
1223
|
-
Settings for enabling Cloud Identity Aware Proxy
|
1226
|
+
Settings for enabling Cloud Identity Aware Proxy.
|
1227
|
+
If OAuth client is not set, the Google-managed OAuth client is used.
|
1224
1228
|
Structure is documented below.
|
1225
1229
|
"""
|
1226
1230
|
return pulumi.get(self, "iap")
|
@@ -1929,7 +1933,8 @@ class BackendService(pulumi.CustomResource):
|
|
1929
1933
|
A health check must be specified unless the backend service uses an internet
|
1930
1934
|
or serverless NEG as a backend.
|
1931
1935
|
For internal load balancing, a URL to a HealthCheck resource must be specified instead.
|
1932
|
-
:param pulumi.Input[Union['BackendServiceIapArgs', 'BackendServiceIapArgsDict']] iap: Settings for enabling Cloud Identity Aware Proxy
|
1936
|
+
:param pulumi.Input[Union['BackendServiceIapArgs', 'BackendServiceIapArgsDict']] iap: Settings for enabling Cloud Identity Aware Proxy.
|
1937
|
+
If OAuth client is not set, the Google-managed OAuth client is used.
|
1933
1938
|
Structure is documented below.
|
1934
1939
|
:param pulumi.Input[str] ip_address_selection_policy: Specifies preference of traffic to the backend (from the proxy and from the client for proxyless gRPC).
|
1935
1940
|
Possible values are: `IPV4_ONLY`, `PREFER_IPV6`, `IPV6_ONLY`.
|
@@ -2554,7 +2559,8 @@ class BackendService(pulumi.CustomResource):
|
|
2554
2559
|
A health check must be specified unless the backend service uses an internet
|
2555
2560
|
or serverless NEG as a backend.
|
2556
2561
|
For internal load balancing, a URL to a HealthCheck resource must be specified instead.
|
2557
|
-
:param pulumi.Input[Union['BackendServiceIapArgs', 'BackendServiceIapArgsDict']] iap: Settings for enabling Cloud Identity Aware Proxy
|
2562
|
+
:param pulumi.Input[Union['BackendServiceIapArgs', 'BackendServiceIapArgsDict']] iap: Settings for enabling Cloud Identity Aware Proxy.
|
2563
|
+
If OAuth client is not set, the Google-managed OAuth client is used.
|
2558
2564
|
Structure is documented below.
|
2559
2565
|
:param pulumi.Input[str] ip_address_selection_policy: Specifies preference of traffic to the backend (from the proxy and from the client for proxyless gRPC).
|
2560
2566
|
Possible values are: `IPV4_ONLY`, `PREFER_IPV6`, `IPV6_ONLY`.
|
@@ -2862,7 +2868,8 @@ class BackendService(pulumi.CustomResource):
|
|
2862
2868
|
@pulumi.getter
|
2863
2869
|
def iap(self) -> pulumi.Output['outputs.BackendServiceIap']:
|
2864
2870
|
"""
|
2865
|
-
Settings for enabling Cloud Identity Aware Proxy
|
2871
|
+
Settings for enabling Cloud Identity Aware Proxy.
|
2872
|
+
If OAuth client is not set, the Google-managed OAuth client is used.
|
2866
2873
|
Structure is documented below.
|
2867
2874
|
"""
|
2868
2875
|
return pulumi.get(self, "iap")
|
@@ -62,15 +62,20 @@ class CaExternalAccountKeyArgs:
|
|
62
62
|
class _CaExternalAccountKeyState:
|
63
63
|
def __init__(__self__, *,
|
64
64
|
b64_mac_key: Optional[pulumi.Input[str]] = None,
|
65
|
+
b64url_mac_key: Optional[pulumi.Input[str]] = None,
|
65
66
|
key_id: Optional[pulumi.Input[str]] = None,
|
66
67
|
location: Optional[pulumi.Input[str]] = None,
|
67
68
|
name: Optional[pulumi.Input[str]] = None,
|
68
69
|
project: Optional[pulumi.Input[str]] = None):
|
69
70
|
"""
|
70
71
|
Input properties used for looking up and filtering CaExternalAccountKey resources.
|
71
|
-
:param pulumi.Input[str] b64_mac_key:
|
72
|
+
:param pulumi.Input[str] b64_mac_key: (Deprecated)
|
73
|
+
Base64-URL-encoded HS256 key. It is generated by the PublicCertificateAuthorityService
|
72
74
|
when the ExternalAccountKey is created.
|
73
75
|
**Note**: This property is sensitive and will not be displayed in the plan.
|
76
|
+
:param pulumi.Input[str] b64url_mac_key: Base64-URL-encoded HS256 key. It is generated by the PublicCertificateAuthorityService
|
77
|
+
when the ExternalAccountKey is created.'
|
78
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
74
79
|
:param pulumi.Input[str] key_id: It is generated by the PublicCertificateAuthorityService when the ExternalAccountKey is created.
|
75
80
|
**Note**: This property is sensitive and will not be displayed in the plan.
|
76
81
|
:param pulumi.Input[str] location: Location for the externalAccountKey. Currently only `global` is supported.
|
@@ -78,8 +83,13 @@ class _CaExternalAccountKeyState:
|
|
78
83
|
:param pulumi.Input[str] project: The ID of the project in which the resource belongs.
|
79
84
|
If it is not provided, the provider project is used.
|
80
85
|
"""
|
86
|
+
if b64_mac_key is not None:
|
87
|
+
warnings.warn("""`b64_mac_key` is deprecated and will be removed in a future major release. Use `b64url_mac_key` instead.""", DeprecationWarning)
|
88
|
+
pulumi.log.warn("""b64_mac_key is deprecated: `b64_mac_key` is deprecated and will be removed in a future major release. Use `b64url_mac_key` instead.""")
|
81
89
|
if b64_mac_key is not None:
|
82
90
|
pulumi.set(__self__, "b64_mac_key", b64_mac_key)
|
91
|
+
if b64url_mac_key is not None:
|
92
|
+
pulumi.set(__self__, "b64url_mac_key", b64url_mac_key)
|
83
93
|
if key_id is not None:
|
84
94
|
pulumi.set(__self__, "key_id", key_id)
|
85
95
|
if location is not None:
|
@@ -91,8 +101,10 @@ class _CaExternalAccountKeyState:
|
|
91
101
|
|
92
102
|
@property
|
93
103
|
@pulumi.getter(name="b64MacKey")
|
104
|
+
@_utilities.deprecated("""`b64_mac_key` is deprecated and will be removed in a future major release. Use `b64url_mac_key` instead.""")
|
94
105
|
def b64_mac_key(self) -> Optional[pulumi.Input[str]]:
|
95
106
|
"""
|
107
|
+
(Deprecated)
|
96
108
|
Base64-URL-encoded HS256 key. It is generated by the PublicCertificateAuthorityService
|
97
109
|
when the ExternalAccountKey is created.
|
98
110
|
**Note**: This property is sensitive and will not be displayed in the plan.
|
@@ -103,6 +115,20 @@ class _CaExternalAccountKeyState:
|
|
103
115
|
def b64_mac_key(self, value: Optional[pulumi.Input[str]]):
|
104
116
|
pulumi.set(self, "b64_mac_key", value)
|
105
117
|
|
118
|
+
@property
|
119
|
+
@pulumi.getter(name="b64urlMacKey")
|
120
|
+
def b64url_mac_key(self) -> Optional[pulumi.Input[str]]:
|
121
|
+
"""
|
122
|
+
Base64-URL-encoded HS256 key. It is generated by the PublicCertificateAuthorityService
|
123
|
+
when the ExternalAccountKey is created.'
|
124
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
125
|
+
"""
|
126
|
+
return pulumi.get(self, "b64url_mac_key")
|
127
|
+
|
128
|
+
@b64url_mac_key.setter
|
129
|
+
def b64url_mac_key(self, value: Optional[pulumi.Input[str]]):
|
130
|
+
pulumi.set(self, "b64url_mac_key", value)
|
131
|
+
|
106
132
|
@property
|
107
133
|
@pulumi.getter(name="keyId")
|
108
134
|
def key_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -267,9 +293,10 @@ class CaExternalAccountKey(pulumi.CustomResource):
|
|
267
293
|
__props__.__dict__["location"] = location
|
268
294
|
__props__.__dict__["project"] = project
|
269
295
|
__props__.__dict__["b64_mac_key"] = None
|
296
|
+
__props__.__dict__["b64url_mac_key"] = None
|
270
297
|
__props__.__dict__["key_id"] = None
|
271
298
|
__props__.__dict__["name"] = None
|
272
|
-
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["b64MacKey", "keyId"])
|
299
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["b64MacKey", "b64urlMacKey", "keyId"])
|
273
300
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
274
301
|
super(CaExternalAccountKey, __self__).__init__(
|
275
302
|
'gcp:compute/caExternalAccountKey:CaExternalAccountKey',
|
@@ -282,6 +309,7 @@ class CaExternalAccountKey(pulumi.CustomResource):
|
|
282
309
|
id: pulumi.Input[str],
|
283
310
|
opts: Optional[pulumi.ResourceOptions] = None,
|
284
311
|
b64_mac_key: Optional[pulumi.Input[str]] = None,
|
312
|
+
b64url_mac_key: Optional[pulumi.Input[str]] = None,
|
285
313
|
key_id: Optional[pulumi.Input[str]] = None,
|
286
314
|
location: Optional[pulumi.Input[str]] = None,
|
287
315
|
name: Optional[pulumi.Input[str]] = None,
|
@@ -293,9 +321,13 @@ class CaExternalAccountKey(pulumi.CustomResource):
|
|
293
321
|
:param str resource_name: The unique name of the resulting resource.
|
294
322
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
295
323
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
296
|
-
:param pulumi.Input[str] b64_mac_key:
|
324
|
+
:param pulumi.Input[str] b64_mac_key: (Deprecated)
|
325
|
+
Base64-URL-encoded HS256 key. It is generated by the PublicCertificateAuthorityService
|
297
326
|
when the ExternalAccountKey is created.
|
298
327
|
**Note**: This property is sensitive and will not be displayed in the plan.
|
328
|
+
:param pulumi.Input[str] b64url_mac_key: Base64-URL-encoded HS256 key. It is generated by the PublicCertificateAuthorityService
|
329
|
+
when the ExternalAccountKey is created.'
|
330
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
299
331
|
:param pulumi.Input[str] key_id: It is generated by the PublicCertificateAuthorityService when the ExternalAccountKey is created.
|
300
332
|
**Note**: This property is sensitive and will not be displayed in the plan.
|
301
333
|
:param pulumi.Input[str] location: Location for the externalAccountKey. Currently only `global` is supported.
|
@@ -308,6 +340,7 @@ class CaExternalAccountKey(pulumi.CustomResource):
|
|
308
340
|
__props__ = _CaExternalAccountKeyState.__new__(_CaExternalAccountKeyState)
|
309
341
|
|
310
342
|
__props__.__dict__["b64_mac_key"] = b64_mac_key
|
343
|
+
__props__.__dict__["b64url_mac_key"] = b64url_mac_key
|
311
344
|
__props__.__dict__["key_id"] = key_id
|
312
345
|
__props__.__dict__["location"] = location
|
313
346
|
__props__.__dict__["name"] = name
|
@@ -316,14 +349,26 @@ class CaExternalAccountKey(pulumi.CustomResource):
|
|
316
349
|
|
317
350
|
@property
|
318
351
|
@pulumi.getter(name="b64MacKey")
|
352
|
+
@_utilities.deprecated("""`b64_mac_key` is deprecated and will be removed in a future major release. Use `b64url_mac_key` instead.""")
|
319
353
|
def b64_mac_key(self) -> pulumi.Output[str]:
|
320
354
|
"""
|
355
|
+
(Deprecated)
|
321
356
|
Base64-URL-encoded HS256 key. It is generated by the PublicCertificateAuthorityService
|
322
357
|
when the ExternalAccountKey is created.
|
323
358
|
**Note**: This property is sensitive and will not be displayed in the plan.
|
324
359
|
"""
|
325
360
|
return pulumi.get(self, "b64_mac_key")
|
326
361
|
|
362
|
+
@property
|
363
|
+
@pulumi.getter(name="b64urlMacKey")
|
364
|
+
def b64url_mac_key(self) -> pulumi.Output[str]:
|
365
|
+
"""
|
366
|
+
Base64-URL-encoded HS256 key. It is generated by the PublicCertificateAuthorityService
|
367
|
+
when the ExternalAccountKey is created.'
|
368
|
+
**Note**: This property is sensitive and will not be displayed in the plan.
|
369
|
+
"""
|
370
|
+
return pulumi.get(self, "b64url_mac_key")
|
371
|
+
|
327
372
|
@property
|
328
373
|
@pulumi.getter(name="keyId")
|
329
374
|
def key_id(self) -> pulumi.Output[str]:
|