pulumi-gcp 8.26.0a1744267117__py3-none-any.whl → 8.27.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.
Files changed (116) hide show
  1. pulumi_gcp/__init__.py +128 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +117 -0
  3. pulumi_gcp/accesscontextmanager/gcp_user_access_binding.py +81 -26
  4. pulumi_gcp/accesscontextmanager/outputs.py +95 -0
  5. pulumi_gcp/apigee/__init__.py +1 -0
  6. pulumi_gcp/apigee/control_plane_access.py +419 -0
  7. pulumi_gcp/bigquery/_inputs.py +87 -30
  8. pulumi_gcp/bigquery/outputs.py +58 -20
  9. pulumi_gcp/bigquery/table.py +28 -14
  10. pulumi_gcp/clouddeploy/__init__.py +1 -0
  11. pulumi_gcp/clouddeploy/_inputs.py +2876 -1314
  12. pulumi_gcp/clouddeploy/automation.py +64 -2
  13. pulumi_gcp/clouddeploy/deploy_policy.py +1179 -0
  14. pulumi_gcp/clouddeploy/outputs.py +1130 -5
  15. pulumi_gcp/cloudrun/service.py +46 -0
  16. pulumi_gcp/cloudrunv2/get_service.py +12 -1
  17. pulumi_gcp/cloudrunv2/service.py +87 -2
  18. pulumi_gcp/compute/_inputs.py +448 -1
  19. pulumi_gcp/compute/image.py +183 -0
  20. pulumi_gcp/compute/outputs.py +387 -3
  21. pulumi_gcp/compute/region_backend_service.py +6 -2
  22. pulumi_gcp/compute/resource_policy.py +30 -0
  23. pulumi_gcp/compute/snapshot.py +6 -0
  24. pulumi_gcp/databasemigrationservice/_inputs.py +27 -24
  25. pulumi_gcp/databasemigrationservice/connection_profile.py +168 -0
  26. pulumi_gcp/databasemigrationservice/migration_job.py +6 -0
  27. pulumi_gcp/databasemigrationservice/outputs.py +18 -15
  28. pulumi_gcp/datastream/_inputs.py +506 -0
  29. pulumi_gcp/datastream/outputs.py +376 -0
  30. pulumi_gcp/datastream/stream.py +0 -2
  31. pulumi_gcp/developerconnect/__init__.py +1 -0
  32. pulumi_gcp/developerconnect/_inputs.py +77 -0
  33. pulumi_gcp/developerconnect/account_connector.py +866 -0
  34. pulumi_gcp/developerconnect/outputs.py +64 -0
  35. pulumi_gcp/firebase/hosting_version.py +34 -14
  36. pulumi_gcp/firestore/database.py +82 -0
  37. pulumi_gcp/firestore/index.py +263 -7
  38. pulumi_gcp/folder/__init__.py +1 -0
  39. pulumi_gcp/folder/service_identity.py +314 -0
  40. pulumi_gcp/gemini/__init__.py +2 -0
  41. pulumi_gcp/gemini/_inputs.py +176 -0
  42. pulumi_gcp/gemini/code_tools_setting.py +601 -0
  43. pulumi_gcp/gemini/code_tools_setting_binding.py +753 -0
  44. pulumi_gcp/gemini/outputs.py +124 -0
  45. pulumi_gcp/gkeonprem/v_mware_cluster.py +49 -0
  46. pulumi_gcp/gkeonprem/vmware_admin_cluster.py +28 -0
  47. pulumi_gcp/managedkafka/_inputs.py +6 -6
  48. pulumi_gcp/managedkafka/connect_cluster.py +84 -40
  49. pulumi_gcp/managedkafka/connector.py +98 -44
  50. pulumi_gcp/managedkafka/outputs.py +4 -4
  51. pulumi_gcp/memorystore/_inputs.py +205 -0
  52. pulumi_gcp/memorystore/get_instance.py +45 -1
  53. pulumi_gcp/memorystore/instance.py +194 -0
  54. pulumi_gcp/memorystore/outputs.py +270 -0
  55. pulumi_gcp/ml/engine_model.py +0 -22
  56. pulumi_gcp/monitoring/_inputs.py +37 -19
  57. pulumi_gcp/monitoring/outputs.py +39 -11
  58. pulumi_gcp/monitoring/uptime_check_config.py +8 -0
  59. pulumi_gcp/netapp/_inputs.py +92 -6
  60. pulumi_gcp/netapp/outputs.py +77 -4
  61. pulumi_gcp/netapp/volume_replication.py +12 -2
  62. pulumi_gcp/networkconnectivity/service_connection_policy.py +4 -2
  63. pulumi_gcp/networkconnectivity/spoke.py +14 -14
  64. pulumi_gcp/orgpolicy/policy.py +2 -2
  65. pulumi_gcp/osconfig/__init__.py +1 -0
  66. pulumi_gcp/osconfig/_inputs.py +5439 -0
  67. pulumi_gcp/osconfig/outputs.py +3978 -0
  68. pulumi_gcp/osconfig/v2_policy_orchestrator.py +8 -0
  69. pulumi_gcp/osconfig/v2_policy_orchestrator_for_organization.py +1055 -0
  70. pulumi_gcp/parametermanager/get_regional_parameter.py +12 -1
  71. pulumi_gcp/parametermanager/get_regional_parameter_version.py +15 -1
  72. pulumi_gcp/parametermanager/outputs.py +11 -0
  73. pulumi_gcp/parametermanager/regional_parameter.py +78 -0
  74. pulumi_gcp/parametermanager/regional_parameter_version.py +66 -0
  75. pulumi_gcp/pubsub/subscription.py +6 -6
  76. pulumi_gcp/pulumi-plugin.json +1 -1
  77. pulumi_gcp/redis/_inputs.py +69 -0
  78. pulumi_gcp/redis/cluster.py +140 -0
  79. pulumi_gcp/redis/outputs.py +40 -0
  80. pulumi_gcp/spanner/database.py +0 -34
  81. pulumi_gcp/storage/_inputs.py +111 -0
  82. pulumi_gcp/storage/bucket_object.py +28 -0
  83. pulumi_gcp/storage/control_folder_intelligence_config.py +32 -0
  84. pulumi_gcp/storage/control_organization_intelligence_config.py +32 -0
  85. pulumi_gcp/storage/control_project_intelligence_config.py +32 -0
  86. pulumi_gcp/storage/get_bucket_object.py +12 -1
  87. pulumi_gcp/storage/get_bucket_object_content.py +12 -1
  88. pulumi_gcp/storage/get_control_folder_intelligence_config.py +12 -1
  89. pulumi_gcp/storage/get_control_organization_intelligence_config.py +12 -1
  90. pulumi_gcp/storage/get_control_project_intelligence_config.py +12 -1
  91. pulumi_gcp/storage/outputs.py +174 -0
  92. pulumi_gcp/vertex/__init__.py +12 -0
  93. pulumi_gcp/vertex/_inputs.py +294 -0
  94. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  95. pulumi_gcp/vertex/ai_feature_group.py +1 -1
  96. pulumi_gcp/vertex/ai_feature_group_iam_binding.py +583 -0
  97. pulumi_gcp/vertex/ai_feature_group_iam_member.py +583 -0
  98. pulumi_gcp/vertex/ai_feature_group_iam_policy.py +422 -0
  99. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +26 -27
  100. pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_binding.py +614 -0
  101. pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_member.py +614 -0
  102. pulumi_gcp/vertex/ai_feature_online_store_featureview_iam_policy.py +453 -0
  103. pulumi_gcp/vertex/ai_feature_online_store_iam_binding.py +583 -0
  104. pulumi_gcp/vertex/ai_feature_online_store_iam_member.py +583 -0
  105. pulumi_gcp/vertex/ai_feature_online_store_iam_policy.py +422 -0
  106. pulumi_gcp/vertex/get_ai_feature_group_iam_policy.py +177 -0
  107. pulumi_gcp/vertex/get_ai_feature_online_store_featureview_iam_policy.py +194 -0
  108. pulumi_gcp/vertex/get_ai_feature_online_store_iam_policy.py +177 -0
  109. pulumi_gcp/vertex/outputs.py +168 -0
  110. pulumi_gcp/workbench/_inputs.py +60 -0
  111. pulumi_gcp/workbench/instance.py +48 -0
  112. pulumi_gcp/workbench/outputs.py +55 -0
  113. {pulumi_gcp-8.26.0a1744267117.dist-info → pulumi_gcp-8.27.0.dist-info}/METADATA +1 -1
  114. {pulumi_gcp-8.26.0a1744267117.dist-info → pulumi_gcp-8.27.0.dist-info}/RECORD +116 -97
  115. {pulumi_gcp-8.26.0a1744267117.dist-info → pulumi_gcp-8.27.0.dist-info}/WHEEL +0 -0
  116. {pulumi_gcp-8.26.0a1744267117.dist-info → pulumi_gcp-8.27.0.dist-info}/top_level.txt +0 -0
@@ -28,7 +28,7 @@ class GetRegionalParameterResult:
28
28
  """
29
29
  A collection of values returned by getRegionalParameter.
30
30
  """
31
- def __init__(__self__, create_time=None, effective_labels=None, format=None, id=None, labels=None, location=None, name=None, parameter_id=None, policy_members=None, project=None, pulumi_labels=None, update_time=None):
31
+ def __init__(__self__, create_time=None, effective_labels=None, format=None, id=None, kms_key=None, labels=None, location=None, name=None, parameter_id=None, policy_members=None, project=None, pulumi_labels=None, update_time=None):
32
32
  if create_time and not isinstance(create_time, str):
33
33
  raise TypeError("Expected argument 'create_time' to be a str")
34
34
  pulumi.set(__self__, "create_time", create_time)
@@ -41,6 +41,9 @@ class GetRegionalParameterResult:
41
41
  if id and not isinstance(id, str):
42
42
  raise TypeError("Expected argument 'id' to be a str")
43
43
  pulumi.set(__self__, "id", id)
44
+ if kms_key and not isinstance(kms_key, str):
45
+ raise TypeError("Expected argument 'kms_key' to be a str")
46
+ pulumi.set(__self__, "kms_key", kms_key)
44
47
  if labels and not isinstance(labels, dict):
45
48
  raise TypeError("Expected argument 'labels' to be a dict")
46
49
  pulumi.set(__self__, "labels", labels)
@@ -89,6 +92,11 @@ class GetRegionalParameterResult:
89
92
  """
90
93
  return pulumi.get(self, "id")
91
94
 
95
+ @property
96
+ @pulumi.getter(name="kmsKey")
97
+ def kms_key(self) -> builtins.str:
98
+ return pulumi.get(self, "kms_key")
99
+
92
100
  @property
93
101
  @pulumi.getter
94
102
  def labels(self) -> Mapping[str, builtins.str]:
@@ -140,6 +148,7 @@ class AwaitableGetRegionalParameterResult(GetRegionalParameterResult):
140
148
  effective_labels=self.effective_labels,
141
149
  format=self.format,
142
150
  id=self.id,
151
+ kms_key=self.kms_key,
143
152
  labels=self.labels,
144
153
  location=self.location,
145
154
  name=self.name,
@@ -184,6 +193,7 @@ def get_regional_parameter(location: Optional[builtins.str] = None,
184
193
  effective_labels=pulumi.get(__ret__, 'effective_labels'),
185
194
  format=pulumi.get(__ret__, 'format'),
186
195
  id=pulumi.get(__ret__, 'id'),
196
+ kms_key=pulumi.get(__ret__, 'kms_key'),
187
197
  labels=pulumi.get(__ret__, 'labels'),
188
198
  location=pulumi.get(__ret__, 'location'),
189
199
  name=pulumi.get(__ret__, 'name'),
@@ -225,6 +235,7 @@ def get_regional_parameter_output(location: Optional[pulumi.Input[builtins.str]]
225
235
  effective_labels=pulumi.get(__response__, 'effective_labels'),
226
236
  format=pulumi.get(__response__, 'format'),
227
237
  id=pulumi.get(__response__, 'id'),
238
+ kms_key=pulumi.get(__response__, 'kms_key'),
228
239
  labels=pulumi.get(__response__, 'labels'),
229
240
  location=pulumi.get(__response__, 'location'),
230
241
  name=pulumi.get(__response__, 'name'),
@@ -27,7 +27,7 @@ class GetRegionalParameterVersionResult:
27
27
  """
28
28
  A collection of values returned by getRegionalParameterVersion.
29
29
  """
30
- def __init__(__self__, create_time=None, disabled=None, id=None, location=None, name=None, parameter=None, parameter_data=None, parameter_version_id=None, project=None, update_time=None):
30
+ def __init__(__self__, create_time=None, disabled=None, id=None, kms_key_version=None, location=None, name=None, parameter=None, parameter_data=None, parameter_version_id=None, project=None, update_time=None):
31
31
  if create_time and not isinstance(create_time, str):
32
32
  raise TypeError("Expected argument 'create_time' to be a str")
33
33
  pulumi.set(__self__, "create_time", create_time)
@@ -37,6 +37,9 @@ class GetRegionalParameterVersionResult:
37
37
  if id and not isinstance(id, str):
38
38
  raise TypeError("Expected argument 'id' to be a str")
39
39
  pulumi.set(__self__, "id", id)
40
+ if kms_key_version and not isinstance(kms_key_version, str):
41
+ raise TypeError("Expected argument 'kms_key_version' to be a str")
42
+ pulumi.set(__self__, "kms_key_version", kms_key_version)
40
43
  if location and not isinstance(location, str):
41
44
  raise TypeError("Expected argument 'location' to be a str")
42
45
  pulumi.set(__self__, "location", location)
@@ -83,6 +86,14 @@ class GetRegionalParameterVersionResult:
83
86
  """
84
87
  return pulumi.get(self, "id")
85
88
 
89
+ @property
90
+ @pulumi.getter(name="kmsKeyVersion")
91
+ def kms_key_version(self) -> builtins.str:
92
+ """
93
+ The resource name of the Cloud KMS CryptoKeyVersion used to decrypt regional parameter version payload. Format `projects/{{project}}/locations/{{location}}/keyRings/{{key_ring}}/cryptoKeys/{{crypto_key}}/cryptoKeyVersions/{{crypto_key_version}}`
94
+ """
95
+ return pulumi.get(self, "kms_key_version")
96
+
86
97
  @property
87
98
  @pulumi.getter
88
99
  def location(self) -> builtins.str:
@@ -138,6 +149,7 @@ class AwaitableGetRegionalParameterVersionResult(GetRegionalParameterVersionResu
138
149
  create_time=self.create_time,
139
150
  disabled=self.disabled,
140
151
  id=self.id,
152
+ kms_key_version=self.kms_key_version,
141
153
  location=self.location,
142
154
  name=self.name,
143
155
  parameter=self.parameter,
@@ -186,6 +198,7 @@ def get_regional_parameter_version(location: Optional[builtins.str] = None,
186
198
  create_time=pulumi.get(__ret__, 'create_time'),
187
199
  disabled=pulumi.get(__ret__, 'disabled'),
188
200
  id=pulumi.get(__ret__, 'id'),
201
+ kms_key_version=pulumi.get(__ret__, 'kms_key_version'),
189
202
  location=pulumi.get(__ret__, 'location'),
190
203
  name=pulumi.get(__ret__, 'name'),
191
204
  parameter=pulumi.get(__ret__, 'parameter'),
@@ -231,6 +244,7 @@ def get_regional_parameter_version_output(location: Optional[pulumi.Input[Option
231
244
  create_time=pulumi.get(__response__, 'create_time'),
232
245
  disabled=pulumi.get(__response__, 'disabled'),
233
246
  id=pulumi.get(__response__, 'id'),
247
+ kms_key_version=pulumi.get(__response__, 'kms_key_version'),
234
248
  location=pulumi.get(__response__, 'location'),
235
249
  name=pulumi.get(__response__, 'name'),
236
250
  parameter=pulumi.get(__response__, 'parameter'),
@@ -408,6 +408,7 @@ class GetRegionalParametersParameterResult(dict):
408
408
  create_time: builtins.str,
409
409
  effective_labels: Mapping[str, builtins.str],
410
410
  format: builtins.str,
411
+ kms_key: builtins.str,
411
412
  labels: Mapping[str, builtins.str],
412
413
  location: builtins.str,
413
414
  name: builtins.str,
@@ -419,6 +420,7 @@ class GetRegionalParametersParameterResult(dict):
419
420
  """
420
421
  :param builtins.str create_time: The time at which the regional parameter was created.
421
422
  :param builtins.str format: The format type of the regional parameter.
423
+ :param builtins.str kms_key: The resource name of the Cloud KMS CryptoKey used to encrypt regional parameter version payload. Format `projects/{{project}}/locations/{{location}}/keyRings/{{key_ring}}/cryptoKeys/{{crypto_key}}`
422
424
  :param Mapping[str, builtins.str] labels: The labels assigned to the regional parameter.
423
425
  :param builtins.str location: The location of regional parameter.
424
426
  :param builtins.str name: The resource name of the regional parameter. Format: `projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}`
@@ -432,6 +434,7 @@ class GetRegionalParametersParameterResult(dict):
432
434
  pulumi.set(__self__, "create_time", create_time)
433
435
  pulumi.set(__self__, "effective_labels", effective_labels)
434
436
  pulumi.set(__self__, "format", format)
437
+ pulumi.set(__self__, "kms_key", kms_key)
435
438
  pulumi.set(__self__, "labels", labels)
436
439
  pulumi.set(__self__, "location", location)
437
440
  pulumi.set(__self__, "name", name)
@@ -462,6 +465,14 @@ class GetRegionalParametersParameterResult(dict):
462
465
  """
463
466
  return pulumi.get(self, "format")
464
467
 
468
+ @property
469
+ @pulumi.getter(name="kmsKey")
470
+ def kms_key(self) -> builtins.str:
471
+ """
472
+ The resource name of the Cloud KMS CryptoKey used to encrypt regional parameter version payload. Format `projects/{{project}}/locations/{{location}}/keyRings/{{key_ring}}/cryptoKeys/{{crypto_key}}`
473
+ """
474
+ return pulumi.get(self, "kms_key")
475
+
465
476
  @property
466
477
  @pulumi.getter
467
478
  def labels(self) -> Mapping[str, builtins.str]:
@@ -25,6 +25,7 @@ class RegionalParameterArgs:
25
25
  location: pulumi.Input[builtins.str],
26
26
  parameter_id: pulumi.Input[builtins.str],
27
27
  format: Optional[pulumi.Input[builtins.str]] = None,
28
+ kms_key: Optional[pulumi.Input[builtins.str]] = None,
28
29
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
29
30
  project: Optional[pulumi.Input[builtins.str]] = None):
30
31
  """
@@ -37,6 +38,8 @@ class RegionalParameterArgs:
37
38
  :param pulumi.Input[builtins.str] format: The format type of the regional parameter.
38
39
  Default value is `UNFORMATTED`.
39
40
  Possible values are: `UNFORMATTED`, `YAML`, `JSON`.
41
+ :param pulumi.Input[builtins.str] kms_key: The resource name of the Cloud KMS CryptoKey used to encrypt regional parameter version payload. Format
42
+ `projects/{{project}}/locations/{{location}}/keyRings/{{key_ring}}/cryptoKeys/{{crypto_key}}`
40
43
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: The labels assigned to this regional Parameter.
41
44
  Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes,
42
45
  and must conform to the following PCRE regular expression: [\\p{Ll}\\p{Lo}][\\p{Ll}\\p{Lo}\\p{N}_-]{0,62}
@@ -55,6 +58,8 @@ class RegionalParameterArgs:
55
58
  pulumi.set(__self__, "parameter_id", parameter_id)
56
59
  if format is not None:
57
60
  pulumi.set(__self__, "format", format)
61
+ if kms_key is not None:
62
+ pulumi.set(__self__, "kms_key", kms_key)
58
63
  if labels is not None:
59
64
  pulumi.set(__self__, "labels", labels)
60
65
  if project is not None:
@@ -101,6 +106,19 @@ class RegionalParameterArgs:
101
106
  def format(self, value: Optional[pulumi.Input[builtins.str]]):
102
107
  pulumi.set(self, "format", value)
103
108
 
109
+ @property
110
+ @pulumi.getter(name="kmsKey")
111
+ def kms_key(self) -> Optional[pulumi.Input[builtins.str]]:
112
+ """
113
+ The resource name of the Cloud KMS CryptoKey used to encrypt regional parameter version payload. Format
114
+ `projects/{{project}}/locations/{{location}}/keyRings/{{key_ring}}/cryptoKeys/{{crypto_key}}`
115
+ """
116
+ return pulumi.get(self, "kms_key")
117
+
118
+ @kms_key.setter
119
+ def kms_key(self, value: Optional[pulumi.Input[builtins.str]]):
120
+ pulumi.set(self, "kms_key", value)
121
+
104
122
  @property
105
123
  @pulumi.getter
106
124
  def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
@@ -143,6 +161,7 @@ class _RegionalParameterState:
143
161
  create_time: Optional[pulumi.Input[builtins.str]] = None,
144
162
  effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
145
163
  format: Optional[pulumi.Input[builtins.str]] = None,
164
+ kms_key: Optional[pulumi.Input[builtins.str]] = None,
146
165
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
147
166
  location: Optional[pulumi.Input[builtins.str]] = None,
148
167
  name: Optional[pulumi.Input[builtins.str]] = None,
@@ -158,6 +177,8 @@ class _RegionalParameterState:
158
177
  :param pulumi.Input[builtins.str] format: The format type of the regional parameter.
159
178
  Default value is `UNFORMATTED`.
160
179
  Possible values are: `UNFORMATTED`, `YAML`, `JSON`.
180
+ :param pulumi.Input[builtins.str] kms_key: The resource name of the Cloud KMS CryptoKey used to encrypt regional parameter version payload. Format
181
+ `projects/{{project}}/locations/{{location}}/keyRings/{{key_ring}}/cryptoKeys/{{crypto_key}}`
161
182
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: The labels assigned to this regional Parameter.
162
183
  Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes,
163
184
  and must conform to the following PCRE regular expression: [\\p{Ll}\\p{Lo}][\\p{Ll}\\p{Lo}\\p{N}_-]{0,62}
@@ -190,6 +211,8 @@ class _RegionalParameterState:
190
211
  pulumi.set(__self__, "effective_labels", effective_labels)
191
212
  if format is not None:
192
213
  pulumi.set(__self__, "format", format)
214
+ if kms_key is not None:
215
+ pulumi.set(__self__, "kms_key", kms_key)
193
216
  if labels is not None:
194
217
  pulumi.set(__self__, "labels", labels)
195
218
  if location is not None:
@@ -245,6 +268,19 @@ class _RegionalParameterState:
245
268
  def format(self, value: Optional[pulumi.Input[builtins.str]]):
246
269
  pulumi.set(self, "format", value)
247
270
 
271
+ @property
272
+ @pulumi.getter(name="kmsKey")
273
+ def kms_key(self) -> Optional[pulumi.Input[builtins.str]]:
274
+ """
275
+ The resource name of the Cloud KMS CryptoKey used to encrypt regional parameter version payload. Format
276
+ `projects/{{project}}/locations/{{location}}/keyRings/{{key_ring}}/cryptoKeys/{{crypto_key}}`
277
+ """
278
+ return pulumi.get(self, "kms_key")
279
+
280
+ @kms_key.setter
281
+ def kms_key(self, value: Optional[pulumi.Input[builtins.str]]):
282
+ pulumi.set(self, "kms_key", value)
283
+
248
284
  @property
249
285
  @pulumi.getter
250
286
  def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
@@ -365,6 +401,7 @@ class RegionalParameter(pulumi.CustomResource):
365
401
  resource_name: str,
366
402
  opts: Optional[pulumi.ResourceOptions] = None,
367
403
  format: Optional[pulumi.Input[builtins.str]] = None,
404
+ kms_key: Optional[pulumi.Input[builtins.str]] = None,
368
405
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
369
406
  location: Optional[pulumi.Input[builtins.str]] = None,
370
407
  parameter_id: Optional[pulumi.Input[builtins.str]] = None,
@@ -417,6 +454,18 @@ class RegionalParameter(pulumi.CustomResource):
417
454
  "key5": "val5",
418
455
  })
419
456
  ```
457
+ ### Regional Parameter With Kms Key
458
+
459
+ ```python
460
+ import pulumi
461
+ import pulumi_gcp as gcp
462
+
463
+ project = gcp.organizations.get_project()
464
+ regional_parameter_with_kms_key = gcp.parametermanager.RegionalParameter("regional-parameter-with-kms-key",
465
+ parameter_id="regional_parameter",
466
+ location="us-central1",
467
+ kms_key="kms-key")
468
+ ```
420
469
 
421
470
  ## Import
422
471
 
@@ -447,6 +496,8 @@ class RegionalParameter(pulumi.CustomResource):
447
496
  :param pulumi.Input[builtins.str] format: The format type of the regional parameter.
448
497
  Default value is `UNFORMATTED`.
449
498
  Possible values are: `UNFORMATTED`, `YAML`, `JSON`.
499
+ :param pulumi.Input[builtins.str] kms_key: The resource name of the Cloud KMS CryptoKey used to encrypt regional parameter version payload. Format
500
+ `projects/{{project}}/locations/{{location}}/keyRings/{{key_ring}}/cryptoKeys/{{crypto_key}}`
450
501
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: The labels assigned to this regional Parameter.
451
502
  Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes,
452
503
  and must conform to the following PCRE regular expression: [\\p{Ll}\\p{Lo}][\\p{Ll}\\p{Lo}\\p{N}_-]{0,62}
@@ -519,6 +570,18 @@ class RegionalParameter(pulumi.CustomResource):
519
570
  "key5": "val5",
520
571
  })
521
572
  ```
573
+ ### Regional Parameter With Kms Key
574
+
575
+ ```python
576
+ import pulumi
577
+ import pulumi_gcp as gcp
578
+
579
+ project = gcp.organizations.get_project()
580
+ regional_parameter_with_kms_key = gcp.parametermanager.RegionalParameter("regional-parameter-with-kms-key",
581
+ parameter_id="regional_parameter",
582
+ location="us-central1",
583
+ kms_key="kms-key")
584
+ ```
522
585
 
523
586
  ## Import
524
587
 
@@ -560,6 +623,7 @@ class RegionalParameter(pulumi.CustomResource):
560
623
  resource_name: str,
561
624
  opts: Optional[pulumi.ResourceOptions] = None,
562
625
  format: Optional[pulumi.Input[builtins.str]] = None,
626
+ kms_key: Optional[pulumi.Input[builtins.str]] = None,
563
627
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
564
628
  location: Optional[pulumi.Input[builtins.str]] = None,
565
629
  parameter_id: Optional[pulumi.Input[builtins.str]] = None,
@@ -574,6 +638,7 @@ class RegionalParameter(pulumi.CustomResource):
574
638
  __props__ = RegionalParameterArgs.__new__(RegionalParameterArgs)
575
639
 
576
640
  __props__.__dict__["format"] = format
641
+ __props__.__dict__["kms_key"] = kms_key
577
642
  __props__.__dict__["labels"] = labels
578
643
  if location is None and not opts.urn:
579
644
  raise TypeError("Missing required property 'location'")
@@ -603,6 +668,7 @@ class RegionalParameter(pulumi.CustomResource):
603
668
  create_time: Optional[pulumi.Input[builtins.str]] = None,
604
669
  effective_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
605
670
  format: Optional[pulumi.Input[builtins.str]] = None,
671
+ kms_key: Optional[pulumi.Input[builtins.str]] = None,
606
672
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
607
673
  location: Optional[pulumi.Input[builtins.str]] = None,
608
674
  name: Optional[pulumi.Input[builtins.str]] = None,
@@ -623,6 +689,8 @@ class RegionalParameter(pulumi.CustomResource):
623
689
  :param pulumi.Input[builtins.str] format: The format type of the regional parameter.
624
690
  Default value is `UNFORMATTED`.
625
691
  Possible values are: `UNFORMATTED`, `YAML`, `JSON`.
692
+ :param pulumi.Input[builtins.str] kms_key: The resource name of the Cloud KMS CryptoKey used to encrypt regional parameter version payload. Format
693
+ `projects/{{project}}/locations/{{location}}/keyRings/{{key_ring}}/cryptoKeys/{{crypto_key}}`
626
694
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: The labels assigned to this regional Parameter.
627
695
  Label keys must be between 1 and 63 characters long, have a UTF-8 encoding of maximum 128 bytes,
628
696
  and must conform to the following PCRE regular expression: [\\p{Ll}\\p{Lo}][\\p{Ll}\\p{Lo}\\p{N}_-]{0,62}
@@ -656,6 +724,7 @@ class RegionalParameter(pulumi.CustomResource):
656
724
  __props__.__dict__["create_time"] = create_time
657
725
  __props__.__dict__["effective_labels"] = effective_labels
658
726
  __props__.__dict__["format"] = format
727
+ __props__.__dict__["kms_key"] = kms_key
659
728
  __props__.__dict__["labels"] = labels
660
729
  __props__.__dict__["location"] = location
661
730
  __props__.__dict__["name"] = name
@@ -692,6 +761,15 @@ class RegionalParameter(pulumi.CustomResource):
692
761
  """
693
762
  return pulumi.get(self, "format")
694
763
 
764
+ @property
765
+ @pulumi.getter(name="kmsKey")
766
+ def kms_key(self) -> pulumi.Output[Optional[builtins.str]]:
767
+ """
768
+ The resource name of the Cloud KMS CryptoKey used to encrypt regional parameter version payload. Format
769
+ `projects/{{project}}/locations/{{location}}/keyRings/{{key_ring}}/cryptoKeys/{{crypto_key}}`
770
+ """
771
+ return pulumi.get(self, "kms_key")
772
+
695
773
  @property
696
774
  @pulumi.getter
697
775
  def labels(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
@@ -99,6 +99,7 @@ class _RegionalParameterVersionState:
99
99
  def __init__(__self__, *,
100
100
  create_time: Optional[pulumi.Input[builtins.str]] = None,
101
101
  disabled: Optional[pulumi.Input[builtins.bool]] = None,
102
+ kms_key_version: Optional[pulumi.Input[builtins.str]] = None,
102
103
  location: Optional[pulumi.Input[builtins.str]] = None,
103
104
  name: Optional[pulumi.Input[builtins.str]] = None,
104
105
  parameter: Optional[pulumi.Input[builtins.str]] = None,
@@ -109,6 +110,8 @@ class _RegionalParameterVersionState:
109
110
  Input properties used for looking up and filtering RegionalParameterVersion resources.
110
111
  :param pulumi.Input[builtins.str] create_time: The time at which the Regional Parameter Version was created.
111
112
  :param pulumi.Input[builtins.bool] disabled: The current state of Regional Parameter Version. This field is only applicable for updating Regional Parameter Version.
113
+ :param pulumi.Input[builtins.str] kms_key_version: The resource name of the Cloud KMS CryptoKeyVersion used to decrypt regional parameter version payload. Format
114
+ `projects/{{project}}/locations/{{location}}/keyRings/{{key_ring}}/cryptoKeys/{{crypto_key}}/cryptoKeyVersions/{{crypto_key_version}}`
112
115
  :param pulumi.Input[builtins.str] location: Location of Parameter Manager Regional parameter resource.
113
116
  :param pulumi.Input[builtins.str] name: The resource name of the Regional Parameter Version. Format:
114
117
  `projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}/versions/{{parameter_version_id}}`
@@ -125,6 +128,8 @@ class _RegionalParameterVersionState:
125
128
  pulumi.set(__self__, "create_time", create_time)
126
129
  if disabled is not None:
127
130
  pulumi.set(__self__, "disabled", disabled)
131
+ if kms_key_version is not None:
132
+ pulumi.set(__self__, "kms_key_version", kms_key_version)
128
133
  if location is not None:
129
134
  pulumi.set(__self__, "location", location)
130
135
  if name is not None:
@@ -162,6 +167,19 @@ class _RegionalParameterVersionState:
162
167
  def disabled(self, value: Optional[pulumi.Input[builtins.bool]]):
163
168
  pulumi.set(self, "disabled", value)
164
169
 
170
+ @property
171
+ @pulumi.getter(name="kmsKeyVersion")
172
+ def kms_key_version(self) -> Optional[pulumi.Input[builtins.str]]:
173
+ """
174
+ The resource name of the Cloud KMS CryptoKeyVersion used to decrypt regional parameter version payload. Format
175
+ `projects/{{project}}/locations/{{location}}/keyRings/{{key_ring}}/cryptoKeys/{{crypto_key}}/cryptoKeyVersions/{{crypto_key_version}}`
176
+ """
177
+ return pulumi.get(self, "kms_key_version")
178
+
179
+ @kms_key_version.setter
180
+ def kms_key_version(self, value: Optional[pulumi.Input[builtins.str]]):
181
+ pulumi.set(self, "kms_key_version", value)
182
+
165
183
  @property
166
184
  @pulumi.getter
167
185
  def location(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -292,6 +310,23 @@ class RegionalParameterVersion(pulumi.CustomResource):
292
310
  "key2": "val2",
293
311
  }))
294
312
  ```
313
+ ### Regional Parameter Version With Kms Key
314
+
315
+ ```python
316
+ import pulumi
317
+ import pulumi_gcp as gcp
318
+
319
+ project = gcp.organizations.get_project()
320
+ regional_parameter_basic = gcp.parametermanager.RegionalParameter("regional-parameter-basic",
321
+ parameter_id="regional_parameter",
322
+ location="us-central1",
323
+ kms_key="kms-key")
324
+ regional_parameter_version_with_kms_key = gcp.parametermanager.RegionalParameterVersion("regional-parameter-version-with-kms-key",
325
+ parameter=regional_parameter_basic.id,
326
+ parameter_version_id="regional_parameter_version",
327
+ parameter_data="regional-parameter-version-data")
328
+ ```
329
+
295
330
  ## Import
296
331
 
297
332
  RegionalParameterVersion can be imported using any of these accepted formats:
@@ -363,6 +398,23 @@ class RegionalParameterVersion(pulumi.CustomResource):
363
398
  "key2": "val2",
364
399
  }))
365
400
  ```
401
+ ### Regional Parameter Version With Kms Key
402
+
403
+ ```python
404
+ import pulumi
405
+ import pulumi_gcp as gcp
406
+
407
+ project = gcp.organizations.get_project()
408
+ regional_parameter_basic = gcp.parametermanager.RegionalParameter("regional-parameter-basic",
409
+ parameter_id="regional_parameter",
410
+ location="us-central1",
411
+ kms_key="kms-key")
412
+ regional_parameter_version_with_kms_key = gcp.parametermanager.RegionalParameterVersion("regional-parameter-version-with-kms-key",
413
+ parameter=regional_parameter_basic.id,
414
+ parameter_version_id="regional_parameter_version",
415
+ parameter_data="regional-parameter-version-data")
416
+ ```
417
+
366
418
  ## Import
367
419
 
368
420
  RegionalParameterVersion can be imported using any of these accepted formats:
@@ -414,6 +466,7 @@ class RegionalParameterVersion(pulumi.CustomResource):
414
466
  raise TypeError("Missing required property 'parameter_version_id'")
415
467
  __props__.__dict__["parameter_version_id"] = parameter_version_id
416
468
  __props__.__dict__["create_time"] = None
469
+ __props__.__dict__["kms_key_version"] = None
417
470
  __props__.__dict__["location"] = None
418
471
  __props__.__dict__["name"] = None
419
472
  __props__.__dict__["update_time"] = None
@@ -431,6 +484,7 @@ class RegionalParameterVersion(pulumi.CustomResource):
431
484
  opts: Optional[pulumi.ResourceOptions] = None,
432
485
  create_time: Optional[pulumi.Input[builtins.str]] = None,
433
486
  disabled: Optional[pulumi.Input[builtins.bool]] = None,
487
+ kms_key_version: Optional[pulumi.Input[builtins.str]] = None,
434
488
  location: Optional[pulumi.Input[builtins.str]] = None,
435
489
  name: Optional[pulumi.Input[builtins.str]] = None,
436
490
  parameter: Optional[pulumi.Input[builtins.str]] = None,
@@ -446,6 +500,8 @@ class RegionalParameterVersion(pulumi.CustomResource):
446
500
  :param pulumi.ResourceOptions opts: Options for the resource.
447
501
  :param pulumi.Input[builtins.str] create_time: The time at which the Regional Parameter Version was created.
448
502
  :param pulumi.Input[builtins.bool] disabled: The current state of Regional Parameter Version. This field is only applicable for updating Regional Parameter Version.
503
+ :param pulumi.Input[builtins.str] kms_key_version: The resource name of the Cloud KMS CryptoKeyVersion used to decrypt regional parameter version payload. Format
504
+ `projects/{{project}}/locations/{{location}}/keyRings/{{key_ring}}/cryptoKeys/{{crypto_key}}/cryptoKeyVersions/{{crypto_key_version}}`
449
505
  :param pulumi.Input[builtins.str] location: Location of Parameter Manager Regional parameter resource.
450
506
  :param pulumi.Input[builtins.str] name: The resource name of the Regional Parameter Version. Format:
451
507
  `projects/{{project}}/locations/{{location}}/parameters/{{parameter_id}}/versions/{{parameter_version_id}}`
@@ -464,6 +520,7 @@ class RegionalParameterVersion(pulumi.CustomResource):
464
520
 
465
521
  __props__.__dict__["create_time"] = create_time
466
522
  __props__.__dict__["disabled"] = disabled
523
+ __props__.__dict__["kms_key_version"] = kms_key_version
467
524
  __props__.__dict__["location"] = location
468
525
  __props__.__dict__["name"] = name
469
526
  __props__.__dict__["parameter"] = parameter
@@ -488,6 +545,15 @@ class RegionalParameterVersion(pulumi.CustomResource):
488
545
  """
489
546
  return pulumi.get(self, "disabled")
490
547
 
548
+ @property
549
+ @pulumi.getter(name="kmsKeyVersion")
550
+ def kms_key_version(self) -> pulumi.Output[builtins.str]:
551
+ """
552
+ The resource name of the Cloud KMS CryptoKeyVersion used to decrypt regional parameter version payload. Format
553
+ `projects/{{project}}/locations/{{location}}/keyRings/{{key_ring}}/cryptoKeys/{{crypto_key}}/cryptoKeyVersions/{{crypto_key_version}}`
554
+ """
555
+ return pulumi.get(self, "kms_key_version")
556
+
491
557
  @property
492
558
  @pulumi.getter
493
559
  def location(self) -> pulumi.Output[builtins.str]:
@@ -1114,7 +1114,7 @@ class Subscription(pulumi.CustomResource):
1114
1114
  cloud_storage_config={
1115
1115
  "bucket": example.name,
1116
1116
  "filename_prefix": "pre-",
1117
- "filename_suffix": "-_41150",
1117
+ "filename_suffix": "-_11380",
1118
1118
  "filename_datetime_format": "YYYY-MM-DD/hh_mm_ssZ",
1119
1119
  "max_bytes": 1000,
1120
1120
  "max_duration": "300s",
@@ -1147,7 +1147,7 @@ class Subscription(pulumi.CustomResource):
1147
1147
  cloud_storage_config={
1148
1148
  "bucket": example.name,
1149
1149
  "filename_prefix": "pre-",
1150
- "filename_suffix": "-_89313",
1150
+ "filename_suffix": "-_35305",
1151
1151
  "filename_datetime_format": "YYYY-MM-DD/hh_mm_ssZ",
1152
1152
  "max_bytes": 1000,
1153
1153
  "max_duration": "300s",
@@ -1186,7 +1186,7 @@ class Subscription(pulumi.CustomResource):
1186
1186
  cloud_storage_config={
1187
1187
  "bucket": example.name,
1188
1188
  "filename_prefix": "pre-",
1189
- "filename_suffix": "-_60646",
1189
+ "filename_suffix": "-_62793",
1190
1190
  "filename_datetime_format": "YYYY-MM-DD/hh_mm_ssZ",
1191
1191
  "max_bytes": 1000,
1192
1192
  "max_duration": "300s",
@@ -1554,7 +1554,7 @@ class Subscription(pulumi.CustomResource):
1554
1554
  cloud_storage_config={
1555
1555
  "bucket": example.name,
1556
1556
  "filename_prefix": "pre-",
1557
- "filename_suffix": "-_41150",
1557
+ "filename_suffix": "-_11380",
1558
1558
  "filename_datetime_format": "YYYY-MM-DD/hh_mm_ssZ",
1559
1559
  "max_bytes": 1000,
1560
1560
  "max_duration": "300s",
@@ -1587,7 +1587,7 @@ class Subscription(pulumi.CustomResource):
1587
1587
  cloud_storage_config={
1588
1588
  "bucket": example.name,
1589
1589
  "filename_prefix": "pre-",
1590
- "filename_suffix": "-_89313",
1590
+ "filename_suffix": "-_35305",
1591
1591
  "filename_datetime_format": "YYYY-MM-DD/hh_mm_ssZ",
1592
1592
  "max_bytes": 1000,
1593
1593
  "max_duration": "300s",
@@ -1626,7 +1626,7 @@ class Subscription(pulumi.CustomResource):
1626
1626
  cloud_storage_config={
1627
1627
  "bucket": example.name,
1628
1628
  "filename_prefix": "pre-",
1629
- "filename_suffix": "-_60646",
1629
+ "filename_suffix": "-_62793",
1630
1630
  "filename_datetime_format": "YYYY-MM-DD/hh_mm_ssZ",
1631
1631
  "max_bytes": 1000,
1632
1632
  "max_duration": "300s",
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "gcp",
4
- "version": "8.26.0-alpha.1744267117"
4
+ "version": "8.27.0"
5
5
  }
@@ -38,6 +38,8 @@ __all__ = [
38
38
  'ClusterDiscoveryEndpointArgsDict',
39
39
  'ClusterDiscoveryEndpointPscConfigArgs',
40
40
  'ClusterDiscoveryEndpointPscConfigArgsDict',
41
+ 'ClusterGcsSourceArgs',
42
+ 'ClusterGcsSourceArgsDict',
41
43
  'ClusterMaintenancePolicyArgs',
42
44
  'ClusterMaintenancePolicyArgsDict',
43
45
  'ClusterMaintenancePolicyWeeklyMaintenanceWindowArgs',
@@ -46,6 +48,8 @@ __all__ = [
46
48
  'ClusterMaintenancePolicyWeeklyMaintenanceWindowStartTimeArgsDict',
47
49
  'ClusterMaintenanceScheduleArgs',
48
50
  'ClusterMaintenanceScheduleArgsDict',
51
+ 'ClusterManagedBackupSourceArgs',
52
+ 'ClusterManagedBackupSourceArgsDict',
49
53
  'ClusterPersistenceConfigArgs',
50
54
  'ClusterPersistenceConfigArgsDict',
51
55
  'ClusterPersistenceConfigAofConfigArgs',
@@ -748,6 +752,37 @@ class ClusterDiscoveryEndpointPscConfigArgs:
748
752
  pulumi.set(self, "network", value)
749
753
 
750
754
 
755
+ if not MYPY:
756
+ class ClusterGcsSourceArgsDict(TypedDict):
757
+ uris: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]
758
+ """
759
+ URIs of the GCS objects to import. Example: gs://bucket1/object1, gs://bucket2/folder2/object2
760
+ """
761
+ elif False:
762
+ ClusterGcsSourceArgsDict: TypeAlias = Mapping[str, Any]
763
+
764
+ @pulumi.input_type
765
+ class ClusterGcsSourceArgs:
766
+ def __init__(__self__, *,
767
+ uris: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]):
768
+ """
769
+ :param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] uris: URIs of the GCS objects to import. Example: gs://bucket1/object1, gs://bucket2/folder2/object2
770
+ """
771
+ pulumi.set(__self__, "uris", uris)
772
+
773
+ @property
774
+ @pulumi.getter
775
+ def uris(self) -> pulumi.Input[Sequence[pulumi.Input[builtins.str]]]:
776
+ """
777
+ URIs of the GCS objects to import. Example: gs://bucket1/object1, gs://bucket2/folder2/object2
778
+ """
779
+ return pulumi.get(self, "uris")
780
+
781
+ @uris.setter
782
+ def uris(self, value: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]):
783
+ pulumi.set(self, "uris", value)
784
+
785
+
751
786
  if not MYPY:
752
787
  class ClusterMaintenancePolicyArgsDict(TypedDict):
753
788
  create_time: NotRequired[pulumi.Input[builtins.str]]
@@ -1159,6 +1194,40 @@ class ClusterMaintenanceScheduleArgs:
1159
1194
  pulumi.set(self, "start_time", value)
1160
1195
 
1161
1196
 
1197
+ if not MYPY:
1198
+ class ClusterManagedBackupSourceArgsDict(TypedDict):
1199
+ backup: pulumi.Input[builtins.str]
1200
+ """
1201
+ Example: //redis.googleapis.com/projects/{project}/locations/{location}/backupCollections/{collection}/backups/{backup} A shorter version (without the prefix) of the backup name is also supported,
1202
+ like projects/{project}/locations/{location}/backupCollections/{collection}/backups/{backupId}. In this case, it assumes the backup is under redis.googleapis.com.
1203
+ """
1204
+ elif False:
1205
+ ClusterManagedBackupSourceArgsDict: TypeAlias = Mapping[str, Any]
1206
+
1207
+ @pulumi.input_type
1208
+ class ClusterManagedBackupSourceArgs:
1209
+ def __init__(__self__, *,
1210
+ backup: pulumi.Input[builtins.str]):
1211
+ """
1212
+ :param pulumi.Input[builtins.str] backup: Example: //redis.googleapis.com/projects/{project}/locations/{location}/backupCollections/{collection}/backups/{backup} A shorter version (without the prefix) of the backup name is also supported,
1213
+ like projects/{project}/locations/{location}/backupCollections/{collection}/backups/{backupId}. In this case, it assumes the backup is under redis.googleapis.com.
1214
+ """
1215
+ pulumi.set(__self__, "backup", backup)
1216
+
1217
+ @property
1218
+ @pulumi.getter
1219
+ def backup(self) -> pulumi.Input[builtins.str]:
1220
+ """
1221
+ Example: //redis.googleapis.com/projects/{project}/locations/{location}/backupCollections/{collection}/backups/{backup} A shorter version (without the prefix) of the backup name is also supported,
1222
+ like projects/{project}/locations/{location}/backupCollections/{collection}/backups/{backupId}. In this case, it assumes the backup is under redis.googleapis.com.
1223
+ """
1224
+ return pulumi.get(self, "backup")
1225
+
1226
+ @backup.setter
1227
+ def backup(self, value: pulumi.Input[builtins.str]):
1228
+ pulumi.set(self, "backup", value)
1229
+
1230
+
1162
1231
  if not MYPY:
1163
1232
  class ClusterPersistenceConfigArgsDict(TypedDict):
1164
1233
  aof_config: NotRequired[pulumi.Input['ClusterPersistenceConfigAofConfigArgsDict']]