pulumi-gcp 8.35.0a1750225231__py3-none-any.whl → 8.36.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 (76) hide show
  1. pulumi_gcp/__init__.py +43 -0
  2. pulumi_gcp/alloydb/_inputs.py +26 -0
  3. pulumi_gcp/alloydb/outputs.py +34 -1
  4. pulumi_gcp/apihub/__init__.py +1 -0
  5. pulumi_gcp/apihub/_inputs.py +983 -0
  6. pulumi_gcp/apihub/outputs.py +807 -0
  7. pulumi_gcp/apihub/plugin_instance.py +808 -0
  8. pulumi_gcp/bigquery/app_profile.py +16 -8
  9. pulumi_gcp/bigquery/table.py +16 -12
  10. pulumi_gcp/bigqueryanalyticshub/_inputs.py +56 -6
  11. pulumi_gcp/bigqueryanalyticshub/data_exchange.py +73 -0
  12. pulumi_gcp/bigqueryanalyticshub/listing.py +201 -48
  13. pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +28 -0
  14. pulumi_gcp/bigqueryanalyticshub/outputs.py +50 -4
  15. pulumi_gcp/bigtable/__init__.py +1 -0
  16. pulumi_gcp/bigtable/_inputs.py +128 -0
  17. pulumi_gcp/bigtable/app_profile.py +1065 -0
  18. pulumi_gcp/bigtable/outputs.py +111 -0
  19. pulumi_gcp/bigtable/table.py +82 -0
  20. pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +64 -8
  21. pulumi_gcp/compute/_inputs.py +24 -12
  22. pulumi_gcp/compute/instance.py +2 -2
  23. pulumi_gcp/compute/instance_template.py +2 -2
  24. pulumi_gcp/compute/interconnect.py +43 -11
  25. pulumi_gcp/compute/node_template.py +21 -0
  26. pulumi_gcp/compute/outputs.py +16 -8
  27. pulumi_gcp/compute/service_attachment.py +76 -8
  28. pulumi_gcp/config/__init__.pyi +2 -0
  29. pulumi_gcp/config/vars.py +4 -0
  30. pulumi_gcp/contactcenterinsights/__init__.py +9 -0
  31. pulumi_gcp/contactcenterinsights/view.py +526 -0
  32. pulumi_gcp/container/_inputs.py +72 -12
  33. pulumi_gcp/container/get_engine_versions.py +15 -1
  34. pulumi_gcp/container/outputs.py +73 -9
  35. pulumi_gcp/dataplex/_inputs.py +431 -6
  36. pulumi_gcp/dataplex/datascan.py +251 -0
  37. pulumi_gcp/dataplex/entry_type.py +2 -2
  38. pulumi_gcp/dataplex/glossary_category.py +8 -8
  39. pulumi_gcp/dataplex/glossary_term.py +8 -8
  40. pulumi_gcp/dataplex/outputs.py +353 -4
  41. pulumi_gcp/dataplex/task.py +16 -16
  42. pulumi_gcp/dataproc/__init__.py +1 -0
  43. pulumi_gcp/dataproc/_inputs.py +486 -0
  44. pulumi_gcp/dataproc/batch.py +10 -10
  45. pulumi_gcp/dataproc/outputs.py +407 -0
  46. pulumi_gcp/dataproc/session_template.py +1084 -0
  47. pulumi_gcp/diagflow/__init__.py +1 -0
  48. pulumi_gcp/diagflow/_inputs.py +48 -0
  49. pulumi_gcp/diagflow/cx_tool.py +2 -2
  50. pulumi_gcp/diagflow/encryption_spec.py +382 -0
  51. pulumi_gcp/diagflow/outputs.py +46 -0
  52. pulumi_gcp/firestore/field.py +6 -6
  53. pulumi_gcp/gkehub/membership_binding.py +6 -6
  54. pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
  55. pulumi_gcp/gkehub/namespace.py +4 -4
  56. pulumi_gcp/gkehub/scope_rbac_role_binding.py +8 -8
  57. pulumi_gcp/iap/tunnel_dest_group.py +2 -2
  58. pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
  59. pulumi_gcp/lustre/get_instance.py +12 -1
  60. pulumi_gcp/lustre/instance.py +143 -86
  61. pulumi_gcp/managedkafka/connect_cluster.py +4 -4
  62. pulumi_gcp/managedkafka/connector.py +4 -4
  63. pulumi_gcp/networkconnectivity/spoke.py +14 -14
  64. pulumi_gcp/orgpolicy/policy.py +2 -2
  65. pulumi_gcp/provider.py +20 -0
  66. pulumi_gcp/pubsub/subscription.py +6 -6
  67. pulumi_gcp/pulumi-plugin.json +1 -1
  68. pulumi_gcp/storage/bucket_object.py +56 -0
  69. pulumi_gcp/storage/get_bucket_object.py +12 -1
  70. pulumi_gcp/storage/get_bucket_object_content.py +12 -1
  71. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  72. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  73. {pulumi_gcp-8.35.0a1750225231.dist-info → pulumi_gcp-8.36.0.dist-info}/METADATA +2 -2
  74. {pulumi_gcp-8.35.0a1750225231.dist-info → pulumi_gcp-8.36.0.dist-info}/RECORD +76 -70
  75. {pulumi_gcp-8.35.0a1750225231.dist-info → pulumi_gcp-8.36.0.dist-info}/WHEEL +0 -0
  76. {pulumi_gcp-8.35.0a1750225231.dist-info → pulumi_gcp-8.36.0.dist-info}/top_level.txt +0 -0
@@ -25,18 +25,19 @@ class InstanceArgs:
25
25
  instance_id: pulumi.Input[builtins.str],
26
26
  location: pulumi.Input[builtins.str],
27
27
  network: pulumi.Input[builtins.str],
28
+ per_unit_storage_throughput: pulumi.Input[builtins.str],
28
29
  description: Optional[pulumi.Input[builtins.str]] = None,
29
30
  gke_support_enabled: Optional[pulumi.Input[builtins.bool]] = None,
30
31
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
31
32
  project: Optional[pulumi.Input[builtins.str]] = None):
32
33
  """
33
34
  The set of arguments for constructing a Instance resource.
34
- :param pulumi.Input[builtins.str] capacity_gib: Required. The storage capacity of the instance in gibibytes (GiB). Allowed values
35
- are from 18000 to 954000, in increments of 9000.
36
- :param pulumi.Input[builtins.str] filesystem: Required. Immutable. The filesystem name for this instance. This name is used by client-side
37
- tools, including when mounting the instance. Must be 8 characters or less
38
- and may only contain letters and numbers.
39
- :param pulumi.Input[builtins.str] instance_id: Required. The name of the Managed Lustre instance.
35
+ :param pulumi.Input[builtins.str] capacity_gib: The storage capacity of the instance in gibibytes (GiB). Allowed values
36
+ are from `18000` to `954000`, in increments of 9000.
37
+ :param pulumi.Input[builtins.str] filesystem: The filesystem name for this instance. This name is used by client-side
38
+ tools, including when mounting the instance. Must be eight characters or
39
+ less and can only contain letters and numbers.
40
+ :param pulumi.Input[builtins.str] instance_id: The name of the Managed Lustre instance.
40
41
  * Must contain only lowercase letters, numbers, and hyphens.
41
42
  * Must start with a letter.
42
43
  * Must be between 1-63 characters.
@@ -45,13 +46,15 @@ class InstanceArgs:
45
46
 
46
47
  - - -
47
48
  :param pulumi.Input[builtins.str] location: Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
48
- :param pulumi.Input[builtins.str] network: Required. Immutable. The full name of the VPC network to which the instance is connected.
49
+ :param pulumi.Input[builtins.str] network: The full name of the VPC network to which the instance is connected.
49
50
  Must be in the format
50
51
  `projects/{project_id}/global/networks/{network_name}`.
51
- :param pulumi.Input[builtins.str] description: Optional. A user-readable description of the instance.
52
- :param pulumi.Input[builtins.bool] gke_support_enabled: Optional. Indicates whether you want to enable support for GKE clients. By default,
52
+ :param pulumi.Input[builtins.str] per_unit_storage_throughput: The throughput of the instance in MB/s/TiB.
53
+ Valid values are 125, 250, 500, 1000.
54
+ :param pulumi.Input[builtins.str] description: A user-readable description of the instance.
55
+ :param pulumi.Input[builtins.bool] gke_support_enabled: Indicates whether you want to enable support for GKE clients. By default,
53
56
  GKE clients are not supported.
54
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Optional. Labels as key value pairs.
57
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Labels as key value pairs.
55
58
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
56
59
  Please refer to the field `effective_labels` for all of the labels present on the resource.
57
60
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
@@ -62,6 +65,7 @@ class InstanceArgs:
62
65
  pulumi.set(__self__, "instance_id", instance_id)
63
66
  pulumi.set(__self__, "location", location)
64
67
  pulumi.set(__self__, "network", network)
68
+ pulumi.set(__self__, "per_unit_storage_throughput", per_unit_storage_throughput)
65
69
  if description is not None:
66
70
  pulumi.set(__self__, "description", description)
67
71
  if gke_support_enabled is not None:
@@ -75,8 +79,8 @@ class InstanceArgs:
75
79
  @pulumi.getter(name="capacityGib")
76
80
  def capacity_gib(self) -> pulumi.Input[builtins.str]:
77
81
  """
78
- Required. The storage capacity of the instance in gibibytes (GiB). Allowed values
79
- are from 18000 to 954000, in increments of 9000.
82
+ The storage capacity of the instance in gibibytes (GiB). Allowed values
83
+ are from `18000` to `954000`, in increments of 9000.
80
84
  """
81
85
  return pulumi.get(self, "capacity_gib")
82
86
 
@@ -88,9 +92,9 @@ class InstanceArgs:
88
92
  @pulumi.getter
89
93
  def filesystem(self) -> pulumi.Input[builtins.str]:
90
94
  """
91
- Required. Immutable. The filesystem name for this instance. This name is used by client-side
92
- tools, including when mounting the instance. Must be 8 characters or less
93
- and may only contain letters and numbers.
95
+ The filesystem name for this instance. This name is used by client-side
96
+ tools, including when mounting the instance. Must be eight characters or
97
+ less and can only contain letters and numbers.
94
98
  """
95
99
  return pulumi.get(self, "filesystem")
96
100
 
@@ -102,7 +106,7 @@ class InstanceArgs:
102
106
  @pulumi.getter(name="instanceId")
103
107
  def instance_id(self) -> pulumi.Input[builtins.str]:
104
108
  """
105
- Required. The name of the Managed Lustre instance.
109
+ The name of the Managed Lustre instance.
106
110
  * Must contain only lowercase letters, numbers, and hyphens.
107
111
  * Must start with a letter.
108
112
  * Must be between 1-63 characters.
@@ -133,7 +137,7 @@ class InstanceArgs:
133
137
  @pulumi.getter
134
138
  def network(self) -> pulumi.Input[builtins.str]:
135
139
  """
136
- Required. Immutable. The full name of the VPC network to which the instance is connected.
140
+ The full name of the VPC network to which the instance is connected.
137
141
  Must be in the format
138
142
  `projects/{project_id}/global/networks/{network_name}`.
139
143
  """
@@ -143,11 +147,24 @@ class InstanceArgs:
143
147
  def network(self, value: pulumi.Input[builtins.str]):
144
148
  pulumi.set(self, "network", value)
145
149
 
150
+ @property
151
+ @pulumi.getter(name="perUnitStorageThroughput")
152
+ def per_unit_storage_throughput(self) -> pulumi.Input[builtins.str]:
153
+ """
154
+ The throughput of the instance in MB/s/TiB.
155
+ Valid values are 125, 250, 500, 1000.
156
+ """
157
+ return pulumi.get(self, "per_unit_storage_throughput")
158
+
159
+ @per_unit_storage_throughput.setter
160
+ def per_unit_storage_throughput(self, value: pulumi.Input[builtins.str]):
161
+ pulumi.set(self, "per_unit_storage_throughput", value)
162
+
146
163
  @property
147
164
  @pulumi.getter
148
165
  def description(self) -> Optional[pulumi.Input[builtins.str]]:
149
166
  """
150
- Optional. A user-readable description of the instance.
167
+ A user-readable description of the instance.
151
168
  """
152
169
  return pulumi.get(self, "description")
153
170
 
@@ -159,7 +176,7 @@ class InstanceArgs:
159
176
  @pulumi.getter(name="gkeSupportEnabled")
160
177
  def gke_support_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
161
178
  """
162
- Optional. Indicates whether you want to enable support for GKE clients. By default,
179
+ Indicates whether you want to enable support for GKE clients. By default,
163
180
  GKE clients are not supported.
164
181
  """
165
182
  return pulumi.get(self, "gke_support_enabled")
@@ -172,7 +189,7 @@ class InstanceArgs:
172
189
  @pulumi.getter
173
190
  def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
174
191
  """
175
- Optional. Labels as key value pairs.
192
+ Labels as key value pairs.
176
193
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
177
194
  Please refer to the field `effective_labels` for all of the labels present on the resource.
178
195
  """
@@ -211,23 +228,24 @@ class _InstanceState:
211
228
  mount_point: Optional[pulumi.Input[builtins.str]] = None,
212
229
  name: Optional[pulumi.Input[builtins.str]] = None,
213
230
  network: Optional[pulumi.Input[builtins.str]] = None,
231
+ per_unit_storage_throughput: Optional[pulumi.Input[builtins.str]] = None,
214
232
  project: Optional[pulumi.Input[builtins.str]] = None,
215
233
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
216
234
  state: Optional[pulumi.Input[builtins.str]] = None,
217
235
  update_time: Optional[pulumi.Input[builtins.str]] = None):
218
236
  """
219
237
  Input properties used for looking up and filtering Instance resources.
220
- :param pulumi.Input[builtins.str] capacity_gib: Required. The storage capacity of the instance in gibibytes (GiB). Allowed values
221
- are from 18000 to 954000, in increments of 9000.
222
- :param pulumi.Input[builtins.str] create_time: Output only. Timestamp when the instance was created.
223
- :param pulumi.Input[builtins.str] description: Optional. A user-readable description of the instance.
238
+ :param pulumi.Input[builtins.str] capacity_gib: The storage capacity of the instance in gibibytes (GiB). Allowed values
239
+ are from `18000` to `954000`, in increments of 9000.
240
+ :param pulumi.Input[builtins.str] create_time: Timestamp when the instance was created.
241
+ :param pulumi.Input[builtins.str] description: A user-readable description of the instance.
224
242
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] effective_labels: All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
225
- :param pulumi.Input[builtins.str] filesystem: Required. Immutable. The filesystem name for this instance. This name is used by client-side
226
- tools, including when mounting the instance. Must be 8 characters or less
227
- and may only contain letters and numbers.
228
- :param pulumi.Input[builtins.bool] gke_support_enabled: Optional. Indicates whether you want to enable support for GKE clients. By default,
243
+ :param pulumi.Input[builtins.str] filesystem: The filesystem name for this instance. This name is used by client-side
244
+ tools, including when mounting the instance. Must be eight characters or
245
+ less and can only contain letters and numbers.
246
+ :param pulumi.Input[builtins.bool] gke_support_enabled: Indicates whether you want to enable support for GKE clients. By default,
229
247
  GKE clients are not supported.
230
- :param pulumi.Input[builtins.str] instance_id: Required. The name of the Managed Lustre instance.
248
+ :param pulumi.Input[builtins.str] instance_id: The name of the Managed Lustre instance.
231
249
  * Must contain only lowercase letters, numbers, and hyphens.
232
250
  * Must start with a letter.
233
251
  * Must be between 1-63 characters.
@@ -235,20 +253,22 @@ class _InstanceState:
235
253
 
236
254
 
237
255
  - - -
238
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Optional. Labels as key value pairs.
256
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Labels as key value pairs.
239
257
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
240
258
  Please refer to the field `effective_labels` for all of the labels present on the resource.
241
259
  :param pulumi.Input[builtins.str] location: Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
242
- :param pulumi.Input[builtins.str] mount_point: Output only. Mount point of the instance in the format `IP_ADDRESS@tcp:/FILESYSTEM`.
260
+ :param pulumi.Input[builtins.str] mount_point: Mount point of the instance in the format `IP_ADDRESS@tcp:/FILESYSTEM`.
243
261
  :param pulumi.Input[builtins.str] name: Identifier. The name of the instance.
244
- :param pulumi.Input[builtins.str] network: Required. Immutable. The full name of the VPC network to which the instance is connected.
262
+ :param pulumi.Input[builtins.str] network: The full name of the VPC network to which the instance is connected.
245
263
  Must be in the format
246
264
  `projects/{project_id}/global/networks/{network_name}`.
265
+ :param pulumi.Input[builtins.str] per_unit_storage_throughput: The throughput of the instance in MB/s/TiB.
266
+ Valid values are 125, 250, 500, 1000.
247
267
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
248
268
  If it is not provided, the provider project is used.
249
269
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource
250
270
  and default labels configured on the provider.
251
- :param pulumi.Input[builtins.str] state: Output only. The state of the instance.
271
+ :param pulumi.Input[builtins.str] state: The state of the instance.
252
272
  Possible values:
253
273
  STATE_UNSPECIFIED
254
274
  ACTIVE
@@ -257,7 +277,7 @@ class _InstanceState:
257
277
  UPGRADING
258
278
  REPAIRING
259
279
  STOPPED
260
- :param pulumi.Input[builtins.str] update_time: Output only. Timestamp when the instance was last updated.
280
+ :param pulumi.Input[builtins.str] update_time: Timestamp when the instance was last updated.
261
281
  """
262
282
  if capacity_gib is not None:
263
283
  pulumi.set(__self__, "capacity_gib", capacity_gib)
@@ -283,6 +303,8 @@ class _InstanceState:
283
303
  pulumi.set(__self__, "name", name)
284
304
  if network is not None:
285
305
  pulumi.set(__self__, "network", network)
306
+ if per_unit_storage_throughput is not None:
307
+ pulumi.set(__self__, "per_unit_storage_throughput", per_unit_storage_throughput)
286
308
  if project is not None:
287
309
  pulumi.set(__self__, "project", project)
288
310
  if pulumi_labels is not None:
@@ -296,8 +318,8 @@ class _InstanceState:
296
318
  @pulumi.getter(name="capacityGib")
297
319
  def capacity_gib(self) -> Optional[pulumi.Input[builtins.str]]:
298
320
  """
299
- Required. The storage capacity of the instance in gibibytes (GiB). Allowed values
300
- are from 18000 to 954000, in increments of 9000.
321
+ The storage capacity of the instance in gibibytes (GiB). Allowed values
322
+ are from `18000` to `954000`, in increments of 9000.
301
323
  """
302
324
  return pulumi.get(self, "capacity_gib")
303
325
 
@@ -309,7 +331,7 @@ class _InstanceState:
309
331
  @pulumi.getter(name="createTime")
310
332
  def create_time(self) -> Optional[pulumi.Input[builtins.str]]:
311
333
  """
312
- Output only. Timestamp when the instance was created.
334
+ Timestamp when the instance was created.
313
335
  """
314
336
  return pulumi.get(self, "create_time")
315
337
 
@@ -321,7 +343,7 @@ class _InstanceState:
321
343
  @pulumi.getter
322
344
  def description(self) -> Optional[pulumi.Input[builtins.str]]:
323
345
  """
324
- Optional. A user-readable description of the instance.
346
+ A user-readable description of the instance.
325
347
  """
326
348
  return pulumi.get(self, "description")
327
349
 
@@ -345,9 +367,9 @@ class _InstanceState:
345
367
  @pulumi.getter
346
368
  def filesystem(self) -> Optional[pulumi.Input[builtins.str]]:
347
369
  """
348
- Required. Immutable. The filesystem name for this instance. This name is used by client-side
349
- tools, including when mounting the instance. Must be 8 characters or less
350
- and may only contain letters and numbers.
370
+ The filesystem name for this instance. This name is used by client-side
371
+ tools, including when mounting the instance. Must be eight characters or
372
+ less and can only contain letters and numbers.
351
373
  """
352
374
  return pulumi.get(self, "filesystem")
353
375
 
@@ -359,7 +381,7 @@ class _InstanceState:
359
381
  @pulumi.getter(name="gkeSupportEnabled")
360
382
  def gke_support_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
361
383
  """
362
- Optional. Indicates whether you want to enable support for GKE clients. By default,
384
+ Indicates whether you want to enable support for GKE clients. By default,
363
385
  GKE clients are not supported.
364
386
  """
365
387
  return pulumi.get(self, "gke_support_enabled")
@@ -372,7 +394,7 @@ class _InstanceState:
372
394
  @pulumi.getter(name="instanceId")
373
395
  def instance_id(self) -> Optional[pulumi.Input[builtins.str]]:
374
396
  """
375
- Required. The name of the Managed Lustre instance.
397
+ The name of the Managed Lustre instance.
376
398
  * Must contain only lowercase letters, numbers, and hyphens.
377
399
  * Must start with a letter.
378
400
  * Must be between 1-63 characters.
@@ -391,7 +413,7 @@ class _InstanceState:
391
413
  @pulumi.getter
392
414
  def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
393
415
  """
394
- Optional. Labels as key value pairs.
416
+ Labels as key value pairs.
395
417
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
396
418
  Please refer to the field `effective_labels` for all of the labels present on the resource.
397
419
  """
@@ -417,7 +439,7 @@ class _InstanceState:
417
439
  @pulumi.getter(name="mountPoint")
418
440
  def mount_point(self) -> Optional[pulumi.Input[builtins.str]]:
419
441
  """
420
- Output only. Mount point of the instance in the format `IP_ADDRESS@tcp:/FILESYSTEM`.
442
+ Mount point of the instance in the format `IP_ADDRESS@tcp:/FILESYSTEM`.
421
443
  """
422
444
  return pulumi.get(self, "mount_point")
423
445
 
@@ -441,7 +463,7 @@ class _InstanceState:
441
463
  @pulumi.getter
442
464
  def network(self) -> Optional[pulumi.Input[builtins.str]]:
443
465
  """
444
- Required. Immutable. The full name of the VPC network to which the instance is connected.
466
+ The full name of the VPC network to which the instance is connected.
445
467
  Must be in the format
446
468
  `projects/{project_id}/global/networks/{network_name}`.
447
469
  """
@@ -451,6 +473,19 @@ class _InstanceState:
451
473
  def network(self, value: Optional[pulumi.Input[builtins.str]]):
452
474
  pulumi.set(self, "network", value)
453
475
 
476
+ @property
477
+ @pulumi.getter(name="perUnitStorageThroughput")
478
+ def per_unit_storage_throughput(self) -> Optional[pulumi.Input[builtins.str]]:
479
+ """
480
+ The throughput of the instance in MB/s/TiB.
481
+ Valid values are 125, 250, 500, 1000.
482
+ """
483
+ return pulumi.get(self, "per_unit_storage_throughput")
484
+
485
+ @per_unit_storage_throughput.setter
486
+ def per_unit_storage_throughput(self, value: Optional[pulumi.Input[builtins.str]]):
487
+ pulumi.set(self, "per_unit_storage_throughput", value)
488
+
454
489
  @property
455
490
  @pulumi.getter
456
491
  def project(self) -> Optional[pulumi.Input[builtins.str]]:
@@ -481,7 +516,7 @@ class _InstanceState:
481
516
  @pulumi.getter
482
517
  def state(self) -> Optional[pulumi.Input[builtins.str]]:
483
518
  """
484
- Output only. The state of the instance.
519
+ The state of the instance.
485
520
  Possible values:
486
521
  STATE_UNSPECIFIED
487
522
  ACTIVE
@@ -501,7 +536,7 @@ class _InstanceState:
501
536
  @pulumi.getter(name="updateTime")
502
537
  def update_time(self) -> Optional[pulumi.Input[builtins.str]]:
503
538
  """
504
- Output only. Timestamp when the instance was last updated.
539
+ Timestamp when the instance was last updated.
505
540
  """
506
541
  return pulumi.get(self, "update_time")
507
542
 
@@ -524,6 +559,7 @@ class Instance(pulumi.CustomResource):
524
559
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
525
560
  location: Optional[pulumi.Input[builtins.str]] = None,
526
561
  network: Optional[pulumi.Input[builtins.str]] = None,
562
+ per_unit_storage_throughput: Optional[pulumi.Input[builtins.str]] = None,
527
563
  project: Optional[pulumi.Input[builtins.str]] = None,
528
564
  __props__=None):
529
565
  """
@@ -559,6 +595,7 @@ class Instance(pulumi.CustomResource):
559
595
  filesystem="testfs",
560
596
  capacity_gib="18000",
561
597
  network=lustre_network.id,
598
+ per_unit_storage_throughput="1000",
562
599
  labels={
563
600
  "test": "value",
564
601
  })
@@ -590,15 +627,15 @@ class Instance(pulumi.CustomResource):
590
627
 
591
628
  :param str resource_name: The name of the resource.
592
629
  :param pulumi.ResourceOptions opts: Options for the resource.
593
- :param pulumi.Input[builtins.str] capacity_gib: Required. The storage capacity of the instance in gibibytes (GiB). Allowed values
594
- are from 18000 to 954000, in increments of 9000.
595
- :param pulumi.Input[builtins.str] description: Optional. A user-readable description of the instance.
596
- :param pulumi.Input[builtins.str] filesystem: Required. Immutable. The filesystem name for this instance. This name is used by client-side
597
- tools, including when mounting the instance. Must be 8 characters or less
598
- and may only contain letters and numbers.
599
- :param pulumi.Input[builtins.bool] gke_support_enabled: Optional. Indicates whether you want to enable support for GKE clients. By default,
630
+ :param pulumi.Input[builtins.str] capacity_gib: The storage capacity of the instance in gibibytes (GiB). Allowed values
631
+ are from `18000` to `954000`, in increments of 9000.
632
+ :param pulumi.Input[builtins.str] description: A user-readable description of the instance.
633
+ :param pulumi.Input[builtins.str] filesystem: The filesystem name for this instance. This name is used by client-side
634
+ tools, including when mounting the instance. Must be eight characters or
635
+ less and can only contain letters and numbers.
636
+ :param pulumi.Input[builtins.bool] gke_support_enabled: Indicates whether you want to enable support for GKE clients. By default,
600
637
  GKE clients are not supported.
601
- :param pulumi.Input[builtins.str] instance_id: Required. The name of the Managed Lustre instance.
638
+ :param pulumi.Input[builtins.str] instance_id: The name of the Managed Lustre instance.
602
639
  * Must contain only lowercase letters, numbers, and hyphens.
603
640
  * Must start with a letter.
604
641
  * Must be between 1-63 characters.
@@ -606,13 +643,15 @@ class Instance(pulumi.CustomResource):
606
643
 
607
644
 
608
645
  - - -
609
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Optional. Labels as key value pairs.
646
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Labels as key value pairs.
610
647
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
611
648
  Please refer to the field `effective_labels` for all of the labels present on the resource.
612
649
  :param pulumi.Input[builtins.str] location: Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
613
- :param pulumi.Input[builtins.str] network: Required. Immutable. The full name of the VPC network to which the instance is connected.
650
+ :param pulumi.Input[builtins.str] network: The full name of the VPC network to which the instance is connected.
614
651
  Must be in the format
615
652
  `projects/{project_id}/global/networks/{network_name}`.
653
+ :param pulumi.Input[builtins.str] per_unit_storage_throughput: The throughput of the instance in MB/s/TiB.
654
+ Valid values are 125, 250, 500, 1000.
616
655
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
617
656
  If it is not provided, the provider project is used.
618
657
  """
@@ -655,6 +694,7 @@ class Instance(pulumi.CustomResource):
655
694
  filesystem="testfs",
656
695
  capacity_gib="18000",
657
696
  network=lustre_network.id,
697
+ per_unit_storage_throughput="1000",
658
698
  labels={
659
699
  "test": "value",
660
700
  })
@@ -707,6 +747,7 @@ class Instance(pulumi.CustomResource):
707
747
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
708
748
  location: Optional[pulumi.Input[builtins.str]] = None,
709
749
  network: Optional[pulumi.Input[builtins.str]] = None,
750
+ per_unit_storage_throughput: Optional[pulumi.Input[builtins.str]] = None,
710
751
  project: Optional[pulumi.Input[builtins.str]] = None,
711
752
  __props__=None):
712
753
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -735,6 +776,9 @@ class Instance(pulumi.CustomResource):
735
776
  if network is None and not opts.urn:
736
777
  raise TypeError("Missing required property 'network'")
737
778
  __props__.__dict__["network"] = network
779
+ if per_unit_storage_throughput is None and not opts.urn:
780
+ raise TypeError("Missing required property 'per_unit_storage_throughput'")
781
+ __props__.__dict__["per_unit_storage_throughput"] = per_unit_storage_throughput
738
782
  __props__.__dict__["project"] = project
739
783
  __props__.__dict__["create_time"] = None
740
784
  __props__.__dict__["effective_labels"] = None
@@ -767,6 +811,7 @@ class Instance(pulumi.CustomResource):
767
811
  mount_point: Optional[pulumi.Input[builtins.str]] = None,
768
812
  name: Optional[pulumi.Input[builtins.str]] = None,
769
813
  network: Optional[pulumi.Input[builtins.str]] = None,
814
+ per_unit_storage_throughput: Optional[pulumi.Input[builtins.str]] = None,
770
815
  project: Optional[pulumi.Input[builtins.str]] = None,
771
816
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
772
817
  state: Optional[pulumi.Input[builtins.str]] = None,
@@ -778,17 +823,17 @@ class Instance(pulumi.CustomResource):
778
823
  :param str resource_name: The unique name of the resulting resource.
779
824
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
780
825
  :param pulumi.ResourceOptions opts: Options for the resource.
781
- :param pulumi.Input[builtins.str] capacity_gib: Required. The storage capacity of the instance in gibibytes (GiB). Allowed values
782
- are from 18000 to 954000, in increments of 9000.
783
- :param pulumi.Input[builtins.str] create_time: Output only. Timestamp when the instance was created.
784
- :param pulumi.Input[builtins.str] description: Optional. A user-readable description of the instance.
826
+ :param pulumi.Input[builtins.str] capacity_gib: The storage capacity of the instance in gibibytes (GiB). Allowed values
827
+ are from `18000` to `954000`, in increments of 9000.
828
+ :param pulumi.Input[builtins.str] create_time: Timestamp when the instance was created.
829
+ :param pulumi.Input[builtins.str] description: A user-readable description of the instance.
785
830
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.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.
786
- :param pulumi.Input[builtins.str] filesystem: Required. Immutable. The filesystem name for this instance. This name is used by client-side
787
- tools, including when mounting the instance. Must be 8 characters or less
788
- and may only contain letters and numbers.
789
- :param pulumi.Input[builtins.bool] gke_support_enabled: Optional. Indicates whether you want to enable support for GKE clients. By default,
831
+ :param pulumi.Input[builtins.str] filesystem: The filesystem name for this instance. This name is used by client-side
832
+ tools, including when mounting the instance. Must be eight characters or
833
+ less and can only contain letters and numbers.
834
+ :param pulumi.Input[builtins.bool] gke_support_enabled: Indicates whether you want to enable support for GKE clients. By default,
790
835
  GKE clients are not supported.
791
- :param pulumi.Input[builtins.str] instance_id: Required. The name of the Managed Lustre instance.
836
+ :param pulumi.Input[builtins.str] instance_id: The name of the Managed Lustre instance.
792
837
  * Must contain only lowercase letters, numbers, and hyphens.
793
838
  * Must start with a letter.
794
839
  * Must be between 1-63 characters.
@@ -796,20 +841,22 @@ class Instance(pulumi.CustomResource):
796
841
 
797
842
 
798
843
  - - -
799
- :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Optional. Labels as key value pairs.
844
+ :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] labels: Labels as key value pairs.
800
845
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
801
846
  Please refer to the field `effective_labels` for all of the labels present on the resource.
802
847
  :param pulumi.Input[builtins.str] location: Resource ID segment making up resource `name`. It identifies the resource within its parent collection as described in https://google.aip.dev/122.
803
- :param pulumi.Input[builtins.str] mount_point: Output only. Mount point of the instance in the format `IP_ADDRESS@tcp:/FILESYSTEM`.
848
+ :param pulumi.Input[builtins.str] mount_point: Mount point of the instance in the format `IP_ADDRESS@tcp:/FILESYSTEM`.
804
849
  :param pulumi.Input[builtins.str] name: Identifier. The name of the instance.
805
- :param pulumi.Input[builtins.str] network: Required. Immutable. The full name of the VPC network to which the instance is connected.
850
+ :param pulumi.Input[builtins.str] network: The full name of the VPC network to which the instance is connected.
806
851
  Must be in the format
807
852
  `projects/{project_id}/global/networks/{network_name}`.
853
+ :param pulumi.Input[builtins.str] per_unit_storage_throughput: The throughput of the instance in MB/s/TiB.
854
+ Valid values are 125, 250, 500, 1000.
808
855
  :param pulumi.Input[builtins.str] project: The ID of the project in which the resource belongs.
809
856
  If it is not provided, the provider project is used.
810
857
  :param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] pulumi_labels: The combination of labels configured directly on the resource
811
858
  and default labels configured on the provider.
812
- :param pulumi.Input[builtins.str] state: Output only. The state of the instance.
859
+ :param pulumi.Input[builtins.str] state: The state of the instance.
813
860
  Possible values:
814
861
  STATE_UNSPECIFIED
815
862
  ACTIVE
@@ -818,7 +865,7 @@ class Instance(pulumi.CustomResource):
818
865
  UPGRADING
819
866
  REPAIRING
820
867
  STOPPED
821
- :param pulumi.Input[builtins.str] update_time: Output only. Timestamp when the instance was last updated.
868
+ :param pulumi.Input[builtins.str] update_time: Timestamp when the instance was last updated.
822
869
  """
823
870
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
824
871
 
@@ -836,6 +883,7 @@ class Instance(pulumi.CustomResource):
836
883
  __props__.__dict__["mount_point"] = mount_point
837
884
  __props__.__dict__["name"] = name
838
885
  __props__.__dict__["network"] = network
886
+ __props__.__dict__["per_unit_storage_throughput"] = per_unit_storage_throughput
839
887
  __props__.__dict__["project"] = project
840
888
  __props__.__dict__["pulumi_labels"] = pulumi_labels
841
889
  __props__.__dict__["state"] = state
@@ -846,8 +894,8 @@ class Instance(pulumi.CustomResource):
846
894
  @pulumi.getter(name="capacityGib")
847
895
  def capacity_gib(self) -> pulumi.Output[builtins.str]:
848
896
  """
849
- Required. The storage capacity of the instance in gibibytes (GiB). Allowed values
850
- are from 18000 to 954000, in increments of 9000.
897
+ The storage capacity of the instance in gibibytes (GiB). Allowed values
898
+ are from `18000` to `954000`, in increments of 9000.
851
899
  """
852
900
  return pulumi.get(self, "capacity_gib")
853
901
 
@@ -855,7 +903,7 @@ class Instance(pulumi.CustomResource):
855
903
  @pulumi.getter(name="createTime")
856
904
  def create_time(self) -> pulumi.Output[builtins.str]:
857
905
  """
858
- Output only. Timestamp when the instance was created.
906
+ Timestamp when the instance was created.
859
907
  """
860
908
  return pulumi.get(self, "create_time")
861
909
 
@@ -863,7 +911,7 @@ class Instance(pulumi.CustomResource):
863
911
  @pulumi.getter
864
912
  def description(self) -> pulumi.Output[Optional[builtins.str]]:
865
913
  """
866
- Optional. A user-readable description of the instance.
914
+ A user-readable description of the instance.
867
915
  """
868
916
  return pulumi.get(self, "description")
869
917
 
@@ -879,9 +927,9 @@ class Instance(pulumi.CustomResource):
879
927
  @pulumi.getter
880
928
  def filesystem(self) -> pulumi.Output[builtins.str]:
881
929
  """
882
- Required. Immutable. The filesystem name for this instance. This name is used by client-side
883
- tools, including when mounting the instance. Must be 8 characters or less
884
- and may only contain letters and numbers.
930
+ The filesystem name for this instance. This name is used by client-side
931
+ tools, including when mounting the instance. Must be eight characters or
932
+ less and can only contain letters and numbers.
885
933
  """
886
934
  return pulumi.get(self, "filesystem")
887
935
 
@@ -889,7 +937,7 @@ class Instance(pulumi.CustomResource):
889
937
  @pulumi.getter(name="gkeSupportEnabled")
890
938
  def gke_support_enabled(self) -> pulumi.Output[Optional[builtins.bool]]:
891
939
  """
892
- Optional. Indicates whether you want to enable support for GKE clients. By default,
940
+ Indicates whether you want to enable support for GKE clients. By default,
893
941
  GKE clients are not supported.
894
942
  """
895
943
  return pulumi.get(self, "gke_support_enabled")
@@ -898,7 +946,7 @@ class Instance(pulumi.CustomResource):
898
946
  @pulumi.getter(name="instanceId")
899
947
  def instance_id(self) -> pulumi.Output[builtins.str]:
900
948
  """
901
- Required. The name of the Managed Lustre instance.
949
+ The name of the Managed Lustre instance.
902
950
  * Must contain only lowercase letters, numbers, and hyphens.
903
951
  * Must start with a letter.
904
952
  * Must be between 1-63 characters.
@@ -913,7 +961,7 @@ class Instance(pulumi.CustomResource):
913
961
  @pulumi.getter
914
962
  def labels(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
915
963
  """
916
- Optional. Labels as key value pairs.
964
+ Labels as key value pairs.
917
965
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
918
966
  Please refer to the field `effective_labels` for all of the labels present on the resource.
919
967
  """
@@ -931,7 +979,7 @@ class Instance(pulumi.CustomResource):
931
979
  @pulumi.getter(name="mountPoint")
932
980
  def mount_point(self) -> pulumi.Output[builtins.str]:
933
981
  """
934
- Output only. Mount point of the instance in the format `IP_ADDRESS@tcp:/FILESYSTEM`.
982
+ Mount point of the instance in the format `IP_ADDRESS@tcp:/FILESYSTEM`.
935
983
  """
936
984
  return pulumi.get(self, "mount_point")
937
985
 
@@ -947,12 +995,21 @@ class Instance(pulumi.CustomResource):
947
995
  @pulumi.getter
948
996
  def network(self) -> pulumi.Output[builtins.str]:
949
997
  """
950
- Required. Immutable. The full name of the VPC network to which the instance is connected.
998
+ The full name of the VPC network to which the instance is connected.
951
999
  Must be in the format
952
1000
  `projects/{project_id}/global/networks/{network_name}`.
953
1001
  """
954
1002
  return pulumi.get(self, "network")
955
1003
 
1004
+ @property
1005
+ @pulumi.getter(name="perUnitStorageThroughput")
1006
+ def per_unit_storage_throughput(self) -> pulumi.Output[builtins.str]:
1007
+ """
1008
+ The throughput of the instance in MB/s/TiB.
1009
+ Valid values are 125, 250, 500, 1000.
1010
+ """
1011
+ return pulumi.get(self, "per_unit_storage_throughput")
1012
+
956
1013
  @property
957
1014
  @pulumi.getter
958
1015
  def project(self) -> pulumi.Output[builtins.str]:
@@ -975,7 +1032,7 @@ class Instance(pulumi.CustomResource):
975
1032
  @pulumi.getter
976
1033
  def state(self) -> pulumi.Output[builtins.str]:
977
1034
  """
978
- Output only. The state of the instance.
1035
+ The state of the instance.
979
1036
  Possible values:
980
1037
  STATE_UNSPECIFIED
981
1038
  ACTIVE
@@ -991,7 +1048,7 @@ class Instance(pulumi.CustomResource):
991
1048
  @pulumi.getter(name="updateTime")
992
1049
  def update_time(self) -> pulumi.Output[builtins.str]:
993
1050
  """
994
- Output only. Timestamp when the instance was last updated.
1051
+ Timestamp when the instance was last updated.
995
1052
  """
996
1053
  return pulumi.get(self, "update_time")
997
1054
 
@@ -389,8 +389,8 @@ class ConnectCluster(pulumi.CustomResource):
389
389
  import pulumi_time as time
390
390
 
391
391
  project = gcp.organizations.Project("project",
392
- project_id="tf-test_60646",
393
- name="tf-test_9394",
392
+ project_id="tf-test_62793",
393
+ name="tf-test_55438",
394
394
  org_id="123456789",
395
395
  billing_account="000000-0000000-0000000-000000",
396
396
  deletion_policy="DELETE")
@@ -516,8 +516,8 @@ class ConnectCluster(pulumi.CustomResource):
516
516
  import pulumi_time as time
517
517
 
518
518
  project = gcp.organizations.Project("project",
519
- project_id="tf-test_60646",
520
- name="tf-test_9394",
519
+ project_id="tf-test_62793",
520
+ name="tf-test_55438",
521
521
  org_id="123456789",
522
522
  billing_account="000000-0000000-0000000-000000",
523
523
  deletion_policy="DELETE")