pulumi-gcp 8.17.0a1738274430__py3-none-any.whl → 8.18.0__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 +115 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py +28 -0
- pulumi_gcp/alloydb/cluster.py +75 -7
- pulumi_gcp/alloydb/user.py +10 -1
- pulumi_gcp/apigee/_inputs.py +91 -0
- pulumi_gcp/apigee/endpoint_attachment.py +0 -64
- pulumi_gcp/apigee/environment.py +54 -0
- pulumi_gcp/apigee/outputs.py +54 -0
- pulumi_gcp/apihub/__init__.py +10 -0
- pulumi_gcp/apihub/_inputs.py +154 -0
- pulumi_gcp/apihub/api_hub_instance.py +784 -0
- pulumi_gcp/apihub/outputs.py +124 -0
- pulumi_gcp/assuredworkloads/workload.py +7 -7
- pulumi_gcp/beyondcorp/__init__.py +4 -0
- pulumi_gcp/beyondcorp/_inputs.py +130 -0
- pulumi_gcp/beyondcorp/get_security_gateway_iam_policy.py +180 -0
- pulumi_gcp/beyondcorp/outputs.py +76 -0
- pulumi_gcp/beyondcorp/security_gateway.py +52 -25
- pulumi_gcp/beyondcorp/security_gateway_iam_binding.py +1075 -0
- pulumi_gcp/beyondcorp/security_gateway_iam_member.py +1075 -0
- pulumi_gcp/beyondcorp/security_gateway_iam_policy.py +894 -0
- pulumi_gcp/bigquery/_inputs.py +33 -0
- pulumi_gcp/bigquery/dataset.py +7 -7
- pulumi_gcp/bigquery/outputs.py +36 -0
- pulumi_gcp/bigquery/table.py +61 -7
- pulumi_gcp/chronicle/__init__.py +1 -0
- pulumi_gcp/chronicle/_inputs.py +124 -0
- pulumi_gcp/chronicle/outputs.py +112 -0
- pulumi_gcp/chronicle/retrohunt.py +629 -0
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +23 -23
- pulumi_gcp/cloudrunv2/_inputs.py +197 -0
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/outputs.py +256 -0
- pulumi_gcp/cloudrunv2/service.py +159 -0
- pulumi_gcp/colab/__init__.py +5 -0
- pulumi_gcp/colab/_inputs.py +131 -0
- pulumi_gcp/colab/get_runtime_template_iam_policy.py +182 -0
- pulumi_gcp/colab/outputs.py +92 -0
- pulumi_gcp/colab/runtime.py +696 -0
- pulumi_gcp/colab/runtime_template_iam_binding.py +828 -0
- pulumi_gcp/colab/runtime_template_iam_member.py +828 -0
- pulumi_gcp/colab/runtime_template_iam_policy.py +667 -0
- pulumi_gcp/compute/__init__.py +4 -0
- pulumi_gcp/compute/_inputs.py +535 -9
- pulumi_gcp/compute/firewall_policy_rule.py +104 -22
- pulumi_gcp/compute/firewall_policy_with_rules.py +114 -42
- pulumi_gcp/compute/get_instance_template_iam_policy.py +159 -0
- pulumi_gcp/compute/get_network.py +3 -3
- pulumi_gcp/compute/instance_template_iam_binding.py +998 -0
- pulumi_gcp/compute/instance_template_iam_member.py +998 -0
- pulumi_gcp/compute/instance_template_iam_policy.py +817 -0
- pulumi_gcp/compute/interconnect_attachment.py +189 -2
- pulumi_gcp/compute/network.py +7 -7
- pulumi_gcp/compute/network_firewall_policy_rule.py +122 -10
- pulumi_gcp/compute/network_firewall_policy_with_rules.py +116 -44
- pulumi_gcp/compute/outputs.py +358 -6
- pulumi_gcp/compute/project_metadata_item.py +12 -0
- pulumi_gcp/compute/public_advertised_prefix.py +87 -0
- pulumi_gcp/compute/region_network_firewall_policy_rule.py +130 -10
- pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +104 -32
- pulumi_gcp/compute/router_peer.py +227 -3
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +79 -20
- pulumi_gcp/container/outputs.py +75 -12
- pulumi_gcp/dataproc/_inputs.py +34 -0
- pulumi_gcp/dataproc/outputs.py +37 -0
- pulumi_gcp/dataproc/workflow_template.py +47 -0
- pulumi_gcp/filestore/get_instance.py +12 -1
- pulumi_gcp/filestore/instance.py +75 -0
- pulumi_gcp/firestore/field.py +60 -0
- pulumi_gcp/gemini/code_repository_index.py +29 -33
- pulumi_gcp/gemini/get_repository_group_iam_policy.py +28 -2
- pulumi_gcp/gemini/repository_group.py +76 -26
- pulumi_gcp/gemini/repository_group_iam_binding.py +258 -0
- pulumi_gcp/gemini/repository_group_iam_member.py +258 -0
- pulumi_gcp/gemini/repository_group_iam_policy.py +258 -0
- pulumi_gcp/gkehub/_inputs.py +20 -0
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/outputs.py +26 -1
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/kms/__init__.py +1 -0
- pulumi_gcp/kms/get_key_handles.py +172 -0
- pulumi_gcp/kms/outputs.py +45 -0
- pulumi_gcp/netapp/storage_pool.py +1 -1
- pulumi_gcp/networkconnectivity/spoke.py +76 -14
- pulumi_gcp/networksecurity/_inputs.py +72 -0
- pulumi_gcp/networksecurity/outputs.py +76 -0
- pulumi_gcp/networksecurity/security_profile.py +233 -7
- pulumi_gcp/networksecurity/security_profile_group.py +218 -0
- pulumi_gcp/organizations/__init__.py +1 -0
- pulumi_gcp/organizations/get_s.py +128 -0
- pulumi_gcp/organizations/outputs.py +63 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/parametermanager/__init__.py +6 -0
- pulumi_gcp/parametermanager/get_parameter.py +211 -0
- pulumi_gcp/parametermanager/get_parameter_version.py +216 -0
- pulumi_gcp/parametermanager/get_parameters.py +140 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version.py +235 -0
- pulumi_gcp/parametermanager/get_regional_parameters.py +157 -0
- pulumi_gcp/parametermanager/outputs.py +366 -0
- pulumi_gcp/parametermanager/parameter_version.py +496 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +10 -38
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/_inputs.py +477 -1
- pulumi_gcp/pubsub/outputs.py +631 -2
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pubsub/topic.py +112 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/__init__.py +1 -0
- pulumi_gcp/redis/_inputs.py +342 -6
- pulumi_gcp/redis/cluster.py +223 -102
- pulumi_gcp/redis/cluster_user_created_connections.py +845 -0
- pulumi_gcp/redis/outputs.py +268 -4
- pulumi_gcp/resourcemanager/lien.py +12 -0
- pulumi_gcp/secretmanager/regional_secret.py +4 -0
- pulumi_gcp/secretmanager/regional_secret_version.py +12 -0
- pulumi_gcp/secretmanager/secret.py +4 -0
- pulumi_gcp/secretmanager/secret_version.py +12 -0
- pulumi_gcp/securityposture/posture.py +4 -0
- pulumi_gcp/securityposture/posture_deployment.py +4 -0
- pulumi_gcp/serviceaccount/get_s.py +98 -8
- pulumi_gcp/spanner/_inputs.py +68 -0
- pulumi_gcp/spanner/backup_schedule.py +70 -4
- pulumi_gcp/spanner/outputs.py +60 -0
- pulumi_gcp/storage/get_bucket_object_content.py +4 -4
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/workflows/workflow.py +175 -0
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0.dist-info}/RECORD +137 -110
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0.dist-info}/top_level.txt +0 -0
@@ -13,11 +13,17 @@ if sys.version_info >= (3, 11):
|
|
13
13
|
else:
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
15
|
from .. import _utilities
|
16
|
+
from . import outputs
|
16
17
|
|
17
18
|
__all__ = [
|
18
19
|
'ParameterPolicyMember',
|
19
20
|
'RegionalParameterPolicyMember',
|
21
|
+
'GetParameterPolicyMemberResult',
|
22
|
+
'GetParametersParameterResult',
|
23
|
+
'GetParametersParameterPolicyMemberResult',
|
20
24
|
'GetRegionalParameterPolicyMemberResult',
|
25
|
+
'GetRegionalParametersParameterResult',
|
26
|
+
'GetRegionalParametersParameterPolicyMemberResult',
|
21
27
|
]
|
22
28
|
|
23
29
|
@pulumi.output_type
|
@@ -150,6 +156,201 @@ class RegionalParameterPolicyMember(dict):
|
|
150
156
|
return pulumi.get(self, "iam_policy_uid_principal")
|
151
157
|
|
152
158
|
|
159
|
+
@pulumi.output_type
|
160
|
+
class GetParameterPolicyMemberResult(dict):
|
161
|
+
def __init__(__self__, *,
|
162
|
+
iam_policy_name_principal: str,
|
163
|
+
iam_policy_uid_principal: str):
|
164
|
+
"""
|
165
|
+
:param str iam_policy_name_principal: IAM policy binding member referring to a Google Cloud resource by user-assigned name. If a
|
166
|
+
resource is deleted and recreated with the same name, the binding will be applicable to the
|
167
|
+
new resource. Format:
|
168
|
+
'principal://parametermanager.googleapis.com/projects/{{project}}/name/locations/global/parameters/{{parameter_id}}'
|
169
|
+
:param str iam_policy_uid_principal: IAM policy binding member referring to a Google Cloud resource by system-assigned unique identifier.
|
170
|
+
If a resource is deleted and recreated with the same name, the binding will not be applicable to the
|
171
|
+
new resource. Format:
|
172
|
+
'principal://parametermanager.googleapis.com/projects/{{project}}/uid/locations/global/parameters/{{uid}}'
|
173
|
+
"""
|
174
|
+
pulumi.set(__self__, "iam_policy_name_principal", iam_policy_name_principal)
|
175
|
+
pulumi.set(__self__, "iam_policy_uid_principal", iam_policy_uid_principal)
|
176
|
+
|
177
|
+
@property
|
178
|
+
@pulumi.getter(name="iamPolicyNamePrincipal")
|
179
|
+
def iam_policy_name_principal(self) -> str:
|
180
|
+
"""
|
181
|
+
IAM policy binding member referring to a Google Cloud resource by user-assigned name. If a
|
182
|
+
resource is deleted and recreated with the same name, the binding will be applicable to the
|
183
|
+
new resource. Format:
|
184
|
+
'principal://parametermanager.googleapis.com/projects/{{project}}/name/locations/global/parameters/{{parameter_id}}'
|
185
|
+
"""
|
186
|
+
return pulumi.get(self, "iam_policy_name_principal")
|
187
|
+
|
188
|
+
@property
|
189
|
+
@pulumi.getter(name="iamPolicyUidPrincipal")
|
190
|
+
def iam_policy_uid_principal(self) -> str:
|
191
|
+
"""
|
192
|
+
IAM policy binding member referring to a Google Cloud resource by system-assigned unique identifier.
|
193
|
+
If a resource is deleted and recreated with the same name, the binding will not be applicable to the
|
194
|
+
new resource. Format:
|
195
|
+
'principal://parametermanager.googleapis.com/projects/{{project}}/uid/locations/global/parameters/{{uid}}'
|
196
|
+
"""
|
197
|
+
return pulumi.get(self, "iam_policy_uid_principal")
|
198
|
+
|
199
|
+
|
200
|
+
@pulumi.output_type
|
201
|
+
class GetParametersParameterResult(dict):
|
202
|
+
def __init__(__self__, *,
|
203
|
+
create_time: str,
|
204
|
+
effective_labels: Mapping[str, str],
|
205
|
+
format: str,
|
206
|
+
labels: Mapping[str, str],
|
207
|
+
name: str,
|
208
|
+
parameter_id: str,
|
209
|
+
policy_members: Sequence['outputs.GetParametersParameterPolicyMemberResult'],
|
210
|
+
project: str,
|
211
|
+
pulumi_labels: Mapping[str, str],
|
212
|
+
update_time: str):
|
213
|
+
"""
|
214
|
+
:param str create_time: The time at which the parameter was created.
|
215
|
+
:param str format: The format type of the parameter.
|
216
|
+
:param Mapping[str, str] labels: The labels assigned to the parameter.
|
217
|
+
:param str name: The resource name of the parameter. Format: `projects/{{project}}/locations/global/parameters/{{parameter_id}}`
|
218
|
+
:param str parameter_id: The unique name of the resource.
|
219
|
+
:param Sequence['GetParametersParameterPolicyMemberArgs'] policy_members: An object containing a unique resource identity tied to the parameter. Structure is documented below.
|
220
|
+
:param str project: The ID of the project.
|
221
|
+
:param Mapping[str, str] pulumi_labels: The combination of labels configured directly on the resource
|
222
|
+
and default labels configured on the provider.
|
223
|
+
:param str update_time: The time at which the parameter was updated.
|
224
|
+
"""
|
225
|
+
pulumi.set(__self__, "create_time", create_time)
|
226
|
+
pulumi.set(__self__, "effective_labels", effective_labels)
|
227
|
+
pulumi.set(__self__, "format", format)
|
228
|
+
pulumi.set(__self__, "labels", labels)
|
229
|
+
pulumi.set(__self__, "name", name)
|
230
|
+
pulumi.set(__self__, "parameter_id", parameter_id)
|
231
|
+
pulumi.set(__self__, "policy_members", policy_members)
|
232
|
+
pulumi.set(__self__, "project", project)
|
233
|
+
pulumi.set(__self__, "pulumi_labels", pulumi_labels)
|
234
|
+
pulumi.set(__self__, "update_time", update_time)
|
235
|
+
|
236
|
+
@property
|
237
|
+
@pulumi.getter(name="createTime")
|
238
|
+
def create_time(self) -> str:
|
239
|
+
"""
|
240
|
+
The time at which the parameter was created.
|
241
|
+
"""
|
242
|
+
return pulumi.get(self, "create_time")
|
243
|
+
|
244
|
+
@property
|
245
|
+
@pulumi.getter(name="effectiveLabels")
|
246
|
+
def effective_labels(self) -> Mapping[str, str]:
|
247
|
+
return pulumi.get(self, "effective_labels")
|
248
|
+
|
249
|
+
@property
|
250
|
+
@pulumi.getter
|
251
|
+
def format(self) -> str:
|
252
|
+
"""
|
253
|
+
The format type of the parameter.
|
254
|
+
"""
|
255
|
+
return pulumi.get(self, "format")
|
256
|
+
|
257
|
+
@property
|
258
|
+
@pulumi.getter
|
259
|
+
def labels(self) -> Mapping[str, str]:
|
260
|
+
"""
|
261
|
+
The labels assigned to the parameter.
|
262
|
+
"""
|
263
|
+
return pulumi.get(self, "labels")
|
264
|
+
|
265
|
+
@property
|
266
|
+
@pulumi.getter
|
267
|
+
def name(self) -> str:
|
268
|
+
"""
|
269
|
+
The resource name of the parameter. Format: `projects/{{project}}/locations/global/parameters/{{parameter_id}}`
|
270
|
+
"""
|
271
|
+
return pulumi.get(self, "name")
|
272
|
+
|
273
|
+
@property
|
274
|
+
@pulumi.getter(name="parameterId")
|
275
|
+
def parameter_id(self) -> str:
|
276
|
+
"""
|
277
|
+
The unique name of the resource.
|
278
|
+
"""
|
279
|
+
return pulumi.get(self, "parameter_id")
|
280
|
+
|
281
|
+
@property
|
282
|
+
@pulumi.getter(name="policyMembers")
|
283
|
+
def policy_members(self) -> Sequence['outputs.GetParametersParameterPolicyMemberResult']:
|
284
|
+
"""
|
285
|
+
An object containing a unique resource identity tied to the parameter. Structure is documented below.
|
286
|
+
"""
|
287
|
+
return pulumi.get(self, "policy_members")
|
288
|
+
|
289
|
+
@property
|
290
|
+
@pulumi.getter
|
291
|
+
def project(self) -> str:
|
292
|
+
"""
|
293
|
+
The ID of the project.
|
294
|
+
"""
|
295
|
+
return pulumi.get(self, "project")
|
296
|
+
|
297
|
+
@property
|
298
|
+
@pulumi.getter(name="pulumiLabels")
|
299
|
+
def pulumi_labels(self) -> Mapping[str, str]:
|
300
|
+
"""
|
301
|
+
The combination of labels configured directly on the resource
|
302
|
+
and default labels configured on the provider.
|
303
|
+
"""
|
304
|
+
return pulumi.get(self, "pulumi_labels")
|
305
|
+
|
306
|
+
@property
|
307
|
+
@pulumi.getter(name="updateTime")
|
308
|
+
def update_time(self) -> str:
|
309
|
+
"""
|
310
|
+
The time at which the parameter was updated.
|
311
|
+
"""
|
312
|
+
return pulumi.get(self, "update_time")
|
313
|
+
|
314
|
+
|
315
|
+
@pulumi.output_type
|
316
|
+
class GetParametersParameterPolicyMemberResult(dict):
|
317
|
+
def __init__(__self__, *,
|
318
|
+
iam_policy_name_principal: str,
|
319
|
+
iam_policy_uid_principal: str):
|
320
|
+
"""
|
321
|
+
:param str iam_policy_name_principal: AM policy binding member referring to a Google Cloud resource by user-assigned name. If a resource is deleted and recreated with the same name, the binding will be applicable to the
|
322
|
+
new resource. Format:
|
323
|
+
`principal://parametermanager.googleapis.com/projects/{{project}}/name/locations/global/parameters/{{parameter_id}}`
|
324
|
+
:param str iam_policy_uid_principal: IAM policy binding member referring to a Google Cloud resource by system-assigned unique identifier.
|
325
|
+
If a resource is deleted and recreated with the same name, the binding will not be applicable to the
|
326
|
+
new resource. Format:
|
327
|
+
`principal://parametermanager.googleapis.com/projects/{{project}}/uid/locations/global/parameters/{{uid}}`
|
328
|
+
"""
|
329
|
+
pulumi.set(__self__, "iam_policy_name_principal", iam_policy_name_principal)
|
330
|
+
pulumi.set(__self__, "iam_policy_uid_principal", iam_policy_uid_principal)
|
331
|
+
|
332
|
+
@property
|
333
|
+
@pulumi.getter(name="iamPolicyNamePrincipal")
|
334
|
+
def iam_policy_name_principal(self) -> str:
|
335
|
+
"""
|
336
|
+
AM policy binding member referring to a Google Cloud resource by user-assigned name. If a resource is deleted and recreated with the same name, the binding will be applicable to the
|
337
|
+
new resource. Format:
|
338
|
+
`principal://parametermanager.googleapis.com/projects/{{project}}/name/locations/global/parameters/{{parameter_id}}`
|
339
|
+
"""
|
340
|
+
return pulumi.get(self, "iam_policy_name_principal")
|
341
|
+
|
342
|
+
@property
|
343
|
+
@pulumi.getter(name="iamPolicyUidPrincipal")
|
344
|
+
def iam_policy_uid_principal(self) -> str:
|
345
|
+
"""
|
346
|
+
IAM policy binding member referring to a Google Cloud resource by system-assigned unique identifier.
|
347
|
+
If a resource is deleted and recreated with the same name, the binding will not be applicable to the
|
348
|
+
new resource. Format:
|
349
|
+
`principal://parametermanager.googleapis.com/projects/{{project}}/uid/locations/global/parameters/{{uid}}`
|
350
|
+
"""
|
351
|
+
return pulumi.get(self, "iam_policy_uid_principal")
|
352
|
+
|
353
|
+
|
153
354
|
@pulumi.output_type
|
154
355
|
class GetRegionalParameterPolicyMemberResult(dict):
|
155
356
|
def __init__(__self__, *,
|
@@ -189,3 +390,168 @@ class GetRegionalParameterPolicyMemberResult(dict):
|
|
189
390
|
return pulumi.get(self, "iam_policy_uid_principal")
|
190
391
|
|
191
392
|
|
393
|
+
@pulumi.output_type
|
394
|
+
class GetRegionalParametersParameterResult(dict):
|
395
|
+
def __init__(__self__, *,
|
396
|
+
create_time: str,
|
397
|
+
effective_labels: Mapping[str, str],
|
398
|
+
format: str,
|
399
|
+
labels: Mapping[str, str],
|
400
|
+
location: str,
|
401
|
+
name: str,
|
402
|
+
parameter_id: str,
|
403
|
+
policy_members: Sequence['outputs.GetRegionalParametersParameterPolicyMemberResult'],
|
404
|
+
project: str,
|
405
|
+
pulumi_labels: Mapping[str, str],
|
406
|
+
update_time: str):
|
407
|
+
"""
|
408
|
+
:param str create_time: The time at which the regional parameter was created.
|
409
|
+
:param str format: The format type of the regional parameter.
|
410
|
+
:param Mapping[str, str] labels: The labels assigned to the regional parameter.
|
411
|
+
:param str location: The location of regional parameter.
|
412
|
+
:param str name: The resource name of the regional parameter. Format: `projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}`
|
413
|
+
:param str parameter_id: The unique name of the resource.
|
414
|
+
:param Sequence['GetRegionalParametersParameterPolicyMemberArgs'] policy_members: An object containing a unique resource identity tied to the regional parameter. Structure is documented below.
|
415
|
+
:param str project: The ID of the project.
|
416
|
+
:param Mapping[str, str] pulumi_labels: The combination of labels configured directly on the resource
|
417
|
+
and default labels configured on the provider.
|
418
|
+
:param str update_time: The time at which the regional parameter was updated.
|
419
|
+
"""
|
420
|
+
pulumi.set(__self__, "create_time", create_time)
|
421
|
+
pulumi.set(__self__, "effective_labels", effective_labels)
|
422
|
+
pulumi.set(__self__, "format", format)
|
423
|
+
pulumi.set(__self__, "labels", labels)
|
424
|
+
pulumi.set(__self__, "location", location)
|
425
|
+
pulumi.set(__self__, "name", name)
|
426
|
+
pulumi.set(__self__, "parameter_id", parameter_id)
|
427
|
+
pulumi.set(__self__, "policy_members", policy_members)
|
428
|
+
pulumi.set(__self__, "project", project)
|
429
|
+
pulumi.set(__self__, "pulumi_labels", pulumi_labels)
|
430
|
+
pulumi.set(__self__, "update_time", update_time)
|
431
|
+
|
432
|
+
@property
|
433
|
+
@pulumi.getter(name="createTime")
|
434
|
+
def create_time(self) -> str:
|
435
|
+
"""
|
436
|
+
The time at which the regional parameter was created.
|
437
|
+
"""
|
438
|
+
return pulumi.get(self, "create_time")
|
439
|
+
|
440
|
+
@property
|
441
|
+
@pulumi.getter(name="effectiveLabels")
|
442
|
+
def effective_labels(self) -> Mapping[str, str]:
|
443
|
+
return pulumi.get(self, "effective_labels")
|
444
|
+
|
445
|
+
@property
|
446
|
+
@pulumi.getter
|
447
|
+
def format(self) -> str:
|
448
|
+
"""
|
449
|
+
The format type of the regional parameter.
|
450
|
+
"""
|
451
|
+
return pulumi.get(self, "format")
|
452
|
+
|
453
|
+
@property
|
454
|
+
@pulumi.getter
|
455
|
+
def labels(self) -> Mapping[str, str]:
|
456
|
+
"""
|
457
|
+
The labels assigned to the regional parameter.
|
458
|
+
"""
|
459
|
+
return pulumi.get(self, "labels")
|
460
|
+
|
461
|
+
@property
|
462
|
+
@pulumi.getter
|
463
|
+
def location(self) -> str:
|
464
|
+
"""
|
465
|
+
The location of regional parameter.
|
466
|
+
"""
|
467
|
+
return pulumi.get(self, "location")
|
468
|
+
|
469
|
+
@property
|
470
|
+
@pulumi.getter
|
471
|
+
def name(self) -> str:
|
472
|
+
"""
|
473
|
+
The resource name of the regional parameter. Format: `projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}`
|
474
|
+
"""
|
475
|
+
return pulumi.get(self, "name")
|
476
|
+
|
477
|
+
@property
|
478
|
+
@pulumi.getter(name="parameterId")
|
479
|
+
def parameter_id(self) -> str:
|
480
|
+
"""
|
481
|
+
The unique name of the resource.
|
482
|
+
"""
|
483
|
+
return pulumi.get(self, "parameter_id")
|
484
|
+
|
485
|
+
@property
|
486
|
+
@pulumi.getter(name="policyMembers")
|
487
|
+
def policy_members(self) -> Sequence['outputs.GetRegionalParametersParameterPolicyMemberResult']:
|
488
|
+
"""
|
489
|
+
An object containing a unique resource identity tied to the regional parameter. Structure is documented below.
|
490
|
+
"""
|
491
|
+
return pulumi.get(self, "policy_members")
|
492
|
+
|
493
|
+
@property
|
494
|
+
@pulumi.getter
|
495
|
+
def project(self) -> str:
|
496
|
+
"""
|
497
|
+
The ID of the project.
|
498
|
+
"""
|
499
|
+
return pulumi.get(self, "project")
|
500
|
+
|
501
|
+
@property
|
502
|
+
@pulumi.getter(name="pulumiLabels")
|
503
|
+
def pulumi_labels(self) -> Mapping[str, str]:
|
504
|
+
"""
|
505
|
+
The combination of labels configured directly on the resource
|
506
|
+
and default labels configured on the provider.
|
507
|
+
"""
|
508
|
+
return pulumi.get(self, "pulumi_labels")
|
509
|
+
|
510
|
+
@property
|
511
|
+
@pulumi.getter(name="updateTime")
|
512
|
+
def update_time(self) -> str:
|
513
|
+
"""
|
514
|
+
The time at which the regional parameter was updated.
|
515
|
+
"""
|
516
|
+
return pulumi.get(self, "update_time")
|
517
|
+
|
518
|
+
|
519
|
+
@pulumi.output_type
|
520
|
+
class GetRegionalParametersParameterPolicyMemberResult(dict):
|
521
|
+
def __init__(__self__, *,
|
522
|
+
iam_policy_name_principal: str,
|
523
|
+
iam_policy_uid_principal: str):
|
524
|
+
"""
|
525
|
+
:param str iam_policy_name_principal: AM policy binding member referring to a Google Cloud resource by user-assigned name. If a resource is deleted and recreated with the same name, the binding will be applicable to the
|
526
|
+
new resource. Format:
|
527
|
+
`principal://parametermanager.googleapis.com/projects/{{project}}/name/locations/{{location}}/parameters/{{parameter_id}}`
|
528
|
+
:param str iam_policy_uid_principal: IAM policy binding member referring to a Google Cloud resource by system-assigned unique identifier.
|
529
|
+
If a resource is deleted and recreated with the same name, the binding will not be applicable to the
|
530
|
+
new resource. Format:
|
531
|
+
`principal://parametermanager.googleapis.com/projects/{{project}}/uid/locations/{{location}}/parameters/{{uid}}`
|
532
|
+
"""
|
533
|
+
pulumi.set(__self__, "iam_policy_name_principal", iam_policy_name_principal)
|
534
|
+
pulumi.set(__self__, "iam_policy_uid_principal", iam_policy_uid_principal)
|
535
|
+
|
536
|
+
@property
|
537
|
+
@pulumi.getter(name="iamPolicyNamePrincipal")
|
538
|
+
def iam_policy_name_principal(self) -> str:
|
539
|
+
"""
|
540
|
+
AM policy binding member referring to a Google Cloud resource by user-assigned name. If a resource is deleted and recreated with the same name, the binding will be applicable to the
|
541
|
+
new resource. Format:
|
542
|
+
`principal://parametermanager.googleapis.com/projects/{{project}}/name/locations/{{location}}/parameters/{{parameter_id}}`
|
543
|
+
"""
|
544
|
+
return pulumi.get(self, "iam_policy_name_principal")
|
545
|
+
|
546
|
+
@property
|
547
|
+
@pulumi.getter(name="iamPolicyUidPrincipal")
|
548
|
+
def iam_policy_uid_principal(self) -> str:
|
549
|
+
"""
|
550
|
+
IAM policy binding member referring to a Google Cloud resource by system-assigned unique identifier.
|
551
|
+
If a resource is deleted and recreated with the same name, the binding will not be applicable to the
|
552
|
+
new resource. Format:
|
553
|
+
`principal://parametermanager.googleapis.com/projects/{{project}}/uid/locations/{{location}}/parameters/{{uid}}`
|
554
|
+
"""
|
555
|
+
return pulumi.get(self, "iam_policy_uid_principal")
|
556
|
+
|
557
|
+
|