pulumi-gcp 8.1.0a1726293903__py3-none-any.whl → 8.1.0a1726492828__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 (101) hide show
  1. pulumi_gcp/__init__.py +24 -0
  2. pulumi_gcp/alloydb/_inputs.py +94 -0
  3. pulumi_gcp/alloydb/cluster.py +94 -1
  4. pulumi_gcp/alloydb/outputs.py +79 -0
  5. pulumi_gcp/assuredworkloads/workload.py +135 -16
  6. pulumi_gcp/backupdisasterrecovery/__init__.py +1 -0
  7. pulumi_gcp/backupdisasterrecovery/backup_vault.py +1203 -0
  8. pulumi_gcp/bigquery/_inputs.py +33 -0
  9. pulumi_gcp/bigquery/data_transfer_config.py +134 -6
  10. pulumi_gcp/bigquery/outputs.py +36 -0
  11. pulumi_gcp/bigqueryanalyticshub/_inputs.py +169 -7
  12. pulumi_gcp/bigqueryanalyticshub/data_exchange.py +96 -3
  13. pulumi_gcp/bigqueryanalyticshub/listing.py +114 -0
  14. pulumi_gcp/bigqueryanalyticshub/outputs.py +138 -5
  15. pulumi_gcp/bigtable/_inputs.py +21 -1
  16. pulumi_gcp/bigtable/outputs.py +13 -1
  17. pulumi_gcp/bigtable/table.py +34 -0
  18. pulumi_gcp/certificateauthority/authority.py +14 -7
  19. pulumi_gcp/certificatemanager/__init__.py +1 -0
  20. pulumi_gcp/certificatemanager/certificate.py +28 -0
  21. pulumi_gcp/certificatemanager/get_certificates.py +150 -0
  22. pulumi_gcp/certificatemanager/outputs.py +322 -0
  23. pulumi_gcp/cloudbuild/_inputs.py +6 -6
  24. pulumi_gcp/cloudbuild/outputs.py +4 -4
  25. pulumi_gcp/cloudrun/_inputs.py +6 -12
  26. pulumi_gcp/cloudrun/outputs.py +8 -16
  27. pulumi_gcp/cloudrunv2/_inputs.py +72 -15
  28. pulumi_gcp/cloudrunv2/outputs.py +82 -16
  29. pulumi_gcp/cloudrunv2/service.py +50 -4
  30. pulumi_gcp/cloudtasks/_inputs.py +630 -0
  31. pulumi_gcp/cloudtasks/outputs.py +479 -0
  32. pulumi_gcp/cloudtasks/queue.py +238 -0
  33. pulumi_gcp/compute/_inputs.py +129 -9
  34. pulumi_gcp/compute/get_instance.py +1 -1
  35. pulumi_gcp/compute/health_check.py +114 -0
  36. pulumi_gcp/compute/instance.py +86 -4
  37. pulumi_gcp/compute/instance_template.py +66 -0
  38. pulumi_gcp/compute/interconnect.py +28 -21
  39. pulumi_gcp/compute/node_template.py +93 -0
  40. pulumi_gcp/compute/outputs.py +108 -6
  41. pulumi_gcp/compute/target_https_proxy.py +28 -0
  42. pulumi_gcp/container/_inputs.py +140 -3
  43. pulumi_gcp/container/attached_cluster.py +7 -7
  44. pulumi_gcp/container/outputs.py +174 -2
  45. pulumi_gcp/databasemigrationservice/_inputs.py +176 -148
  46. pulumi_gcp/databasemigrationservice/connection_profile.py +206 -0
  47. pulumi_gcp/databasemigrationservice/outputs.py +109 -87
  48. pulumi_gcp/dataloss/_inputs.py +353 -1
  49. pulumi_gcp/dataloss/outputs.py +274 -3
  50. pulumi_gcp/dataproc/_inputs.py +27 -27
  51. pulumi_gcp/dataproc/outputs.py +18 -18
  52. pulumi_gcp/datastream/_inputs.py +69 -1
  53. pulumi_gcp/datastream/outputs.py +44 -2
  54. pulumi_gcp/datastream/stream.py +194 -7
  55. pulumi_gcp/discoveryengine/_inputs.py +188 -0
  56. pulumi_gcp/discoveryengine/data_store.py +14 -14
  57. pulumi_gcp/discoveryengine/outputs.py +153 -1
  58. pulumi_gcp/firebase/database_instance.py +7 -7
  59. pulumi_gcp/gkehub/_inputs.py +25 -1
  60. pulumi_gcp/gkehub/feature_membership.py +12 -6
  61. pulumi_gcp/gkehub/outputs.py +17 -1
  62. pulumi_gcp/iam/_inputs.py +196 -0
  63. pulumi_gcp/iam/get_workload_identity_pool_provider.py +13 -3
  64. pulumi_gcp/iam/outputs.py +295 -0
  65. pulumi_gcp/iam/workload_identity_pool_provider.py +164 -3
  66. pulumi_gcp/kms/__init__.py +2 -0
  67. pulumi_gcp/kms/autokey_config.py +10 -2
  68. pulumi_gcp/kms/get_crypto_key_latest_version.py +222 -0
  69. pulumi_gcp/kms/get_crypto_key_versions.py +175 -0
  70. pulumi_gcp/kms/outputs.py +164 -0
  71. pulumi_gcp/netapp/active_directory.py +6 -6
  72. pulumi_gcp/netapp/backup.py +6 -6
  73. pulumi_gcp/netapp/backup_policy.py +6 -6
  74. pulumi_gcp/netapp/backup_vault.py +6 -6
  75. pulumi_gcp/netapp/storage_pool.py +4 -4
  76. pulumi_gcp/netapp/volume.py +7 -0
  77. pulumi_gcp/networkconnectivity/_inputs.py +21 -1
  78. pulumi_gcp/networkconnectivity/outputs.py +15 -1
  79. pulumi_gcp/networkconnectivity/spoke.py +8 -0
  80. pulumi_gcp/networksecurity/client_tls_policy.py +24 -22
  81. pulumi_gcp/networksecurity/server_tls_policy.py +20 -32
  82. pulumi_gcp/organizations/get_project.py +13 -3
  83. pulumi_gcp/organizations/project.py +88 -3
  84. pulumi_gcp/parallelstore/instance.py +121 -121
  85. pulumi_gcp/projects/iam_member_remove.py +26 -0
  86. pulumi_gcp/projects/usage_export_bucket.py +38 -0
  87. pulumi_gcp/pubsub/_inputs.py +40 -0
  88. pulumi_gcp/pubsub/outputs.py +51 -1
  89. pulumi_gcp/pubsub/subscription.py +6 -0
  90. pulumi_gcp/pulumi-plugin.json +1 -1
  91. pulumi_gcp/redis/_inputs.py +419 -0
  92. pulumi_gcp/redis/cluster.py +123 -0
  93. pulumi_gcp/redis/outputs.py +315 -0
  94. pulumi_gcp/securitycenter/__init__.py +2 -0
  95. pulumi_gcp/securitycenter/v2_folder_scc_big_query_export.py +857 -0
  96. pulumi_gcp/securitycenter/v2_organization_scc_big_query_exports.py +4 -4
  97. pulumi_gcp/securitycenter/v2_project_scc_big_query_export.py +796 -0
  98. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.1.0a1726492828.dist-info}/METADATA +1 -1
  99. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.1.0a1726492828.dist-info}/RECORD +101 -95
  100. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.1.0a1726492828.dist-info}/WHEEL +1 -1
  101. {pulumi_gcp-8.1.0a1726293903.dist-info → pulumi_gcp-8.1.0a1726492828.dist-info}/top_level.txt +0 -0
@@ -21,6 +21,7 @@ __all__ = ['NodeTemplateArgs', 'NodeTemplate']
21
21
  @pulumi.input_type
22
22
  class NodeTemplateArgs:
23
23
  def __init__(__self__, *,
24
+ accelerators: Optional[pulumi.Input[Sequence[pulumi.Input['NodeTemplateAcceleratorArgs']]]] = None,
24
25
  cpu_overcommit_type: Optional[pulumi.Input[str]] = None,
25
26
  description: Optional[pulumi.Input[str]] = None,
26
27
  name: Optional[pulumi.Input[str]] = None,
@@ -32,6 +33,9 @@ class NodeTemplateArgs:
32
33
  server_binding: Optional[pulumi.Input['NodeTemplateServerBindingArgs']] = None):
33
34
  """
34
35
  The set of arguments for constructing a NodeTemplate resource.
36
+ :param pulumi.Input[Sequence[pulumi.Input['NodeTemplateAcceleratorArgs']]] accelerators: List of the type and count of accelerator cards attached to the
37
+ node template
38
+ Structure is documented below.
35
39
  :param pulumi.Input[str] cpu_overcommit_type: CPU overcommit.
36
40
  Default value is `NONE`.
37
41
  Possible values are: `ENABLED`, `NONE`.
@@ -54,6 +58,8 @@ class NodeTemplateArgs:
54
58
  where the nodes should restart following a maintenance event.
55
59
  Structure is documented below.
56
60
  """
61
+ if accelerators is not None:
62
+ pulumi.set(__self__, "accelerators", accelerators)
57
63
  if cpu_overcommit_type is not None:
58
64
  pulumi.set(__self__, "cpu_overcommit_type", cpu_overcommit_type)
59
65
  if description is not None:
@@ -73,6 +79,20 @@ class NodeTemplateArgs:
73
79
  if server_binding is not None:
74
80
  pulumi.set(__self__, "server_binding", server_binding)
75
81
 
82
+ @property
83
+ @pulumi.getter
84
+ def accelerators(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NodeTemplateAcceleratorArgs']]]]:
85
+ """
86
+ List of the type and count of accelerator cards attached to the
87
+ node template
88
+ Structure is documented below.
89
+ """
90
+ return pulumi.get(self, "accelerators")
91
+
92
+ @accelerators.setter
93
+ def accelerators(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['NodeTemplateAcceleratorArgs']]]]):
94
+ pulumi.set(self, "accelerators", value)
95
+
76
96
  @property
77
97
  @pulumi.getter(name="cpuOvercommitType")
78
98
  def cpu_overcommit_type(self) -> Optional[pulumi.Input[str]]:
@@ -197,6 +217,7 @@ class NodeTemplateArgs:
197
217
  @pulumi.input_type
198
218
  class _NodeTemplateState:
199
219
  def __init__(__self__, *,
220
+ accelerators: Optional[pulumi.Input[Sequence[pulumi.Input['NodeTemplateAcceleratorArgs']]]] = None,
200
221
  cpu_overcommit_type: Optional[pulumi.Input[str]] = None,
201
222
  creation_timestamp: Optional[pulumi.Input[str]] = None,
202
223
  description: Optional[pulumi.Input[str]] = None,
@@ -210,6 +231,9 @@ class _NodeTemplateState:
210
231
  server_binding: Optional[pulumi.Input['NodeTemplateServerBindingArgs']] = None):
211
232
  """
212
233
  Input properties used for looking up and filtering NodeTemplate resources.
234
+ :param pulumi.Input[Sequence[pulumi.Input['NodeTemplateAcceleratorArgs']]] accelerators: List of the type and count of accelerator cards attached to the
235
+ node template
236
+ Structure is documented below.
213
237
  :param pulumi.Input[str] cpu_overcommit_type: CPU overcommit.
214
238
  Default value is `NONE`.
215
239
  Possible values are: `ENABLED`, `NONE`.
@@ -234,6 +258,8 @@ class _NodeTemplateState:
234
258
  where the nodes should restart following a maintenance event.
235
259
  Structure is documented below.
236
260
  """
261
+ if accelerators is not None:
262
+ pulumi.set(__self__, "accelerators", accelerators)
237
263
  if cpu_overcommit_type is not None:
238
264
  pulumi.set(__self__, "cpu_overcommit_type", cpu_overcommit_type)
239
265
  if creation_timestamp is not None:
@@ -257,6 +283,20 @@ class _NodeTemplateState:
257
283
  if server_binding is not None:
258
284
  pulumi.set(__self__, "server_binding", server_binding)
259
285
 
286
+ @property
287
+ @pulumi.getter
288
+ def accelerators(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['NodeTemplateAcceleratorArgs']]]]:
289
+ """
290
+ List of the type and count of accelerator cards attached to the
291
+ node template
292
+ Structure is documented below.
293
+ """
294
+ return pulumi.get(self, "accelerators")
295
+
296
+ @accelerators.setter
297
+ def accelerators(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['NodeTemplateAcceleratorArgs']]]]):
298
+ pulumi.set(self, "accelerators", value)
299
+
260
300
  @property
261
301
  @pulumi.getter(name="cpuOvercommitType")
262
302
  def cpu_overcommit_type(self) -> Optional[pulumi.Input[str]]:
@@ -407,6 +447,7 @@ class NodeTemplate(pulumi.CustomResource):
407
447
  def __init__(__self__,
408
448
  resource_name: str,
409
449
  opts: Optional[pulumi.ResourceOptions] = None,
450
+ accelerators: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NodeTemplateAcceleratorArgs', 'NodeTemplateAcceleratorArgsDict']]]]] = None,
410
451
  cpu_overcommit_type: Optional[pulumi.Input[str]] = None,
411
452
  description: Optional[pulumi.Input[str]] = None,
412
453
  name: Optional[pulumi.Input[str]] = None,
@@ -459,6 +500,22 @@ class NodeTemplate(pulumi.CustomResource):
459
500
  "type": "RESTART_NODE_ON_MINIMAL_SERVERS",
460
501
  })
461
502
  ```
503
+ ### Node Template Accelerators
504
+
505
+ ```python
506
+ import pulumi
507
+ import pulumi_gcp as gcp
508
+
509
+ central1a = gcp.compute.get_node_types(zone="us-central1-a")
510
+ template = gcp.compute.NodeTemplate("template",
511
+ name="soletenant-with-accelerators",
512
+ region="us-central1",
513
+ node_type="n1-node-96-624",
514
+ accelerators=[{
515
+ "accelerator_type": "nvidia-tesla-t4",
516
+ "accelerator_count": 4,
517
+ }])
518
+ ```
462
519
 
463
520
  ## Import
464
521
 
@@ -492,6 +549,9 @@ class NodeTemplate(pulumi.CustomResource):
492
549
 
493
550
  :param str resource_name: The name of the resource.
494
551
  :param pulumi.ResourceOptions opts: Options for the resource.
552
+ :param pulumi.Input[Sequence[pulumi.Input[Union['NodeTemplateAcceleratorArgs', 'NodeTemplateAcceleratorArgsDict']]]] accelerators: List of the type and count of accelerator cards attached to the
553
+ node template
554
+ Structure is documented below.
495
555
  :param pulumi.Input[str] cpu_overcommit_type: CPU overcommit.
496
556
  Default value is `NONE`.
497
557
  Possible values are: `ENABLED`, `NONE`.
@@ -562,6 +622,22 @@ class NodeTemplate(pulumi.CustomResource):
562
622
  "type": "RESTART_NODE_ON_MINIMAL_SERVERS",
563
623
  })
564
624
  ```
625
+ ### Node Template Accelerators
626
+
627
+ ```python
628
+ import pulumi
629
+ import pulumi_gcp as gcp
630
+
631
+ central1a = gcp.compute.get_node_types(zone="us-central1-a")
632
+ template = gcp.compute.NodeTemplate("template",
633
+ name="soletenant-with-accelerators",
634
+ region="us-central1",
635
+ node_type="n1-node-96-624",
636
+ accelerators=[{
637
+ "accelerator_type": "nvidia-tesla-t4",
638
+ "accelerator_count": 4,
639
+ }])
640
+ ```
565
641
 
566
642
  ## Import
567
643
 
@@ -608,6 +684,7 @@ class NodeTemplate(pulumi.CustomResource):
608
684
  def _internal_init(__self__,
609
685
  resource_name: str,
610
686
  opts: Optional[pulumi.ResourceOptions] = None,
687
+ accelerators: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NodeTemplateAcceleratorArgs', 'NodeTemplateAcceleratorArgsDict']]]]] = None,
611
688
  cpu_overcommit_type: Optional[pulumi.Input[str]] = None,
612
689
  description: Optional[pulumi.Input[str]] = None,
613
690
  name: Optional[pulumi.Input[str]] = None,
@@ -626,6 +703,7 @@ class NodeTemplate(pulumi.CustomResource):
626
703
  raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
627
704
  __props__ = NodeTemplateArgs.__new__(NodeTemplateArgs)
628
705
 
706
+ __props__.__dict__["accelerators"] = accelerators
629
707
  __props__.__dict__["cpu_overcommit_type"] = cpu_overcommit_type
630
708
  __props__.__dict__["description"] = description
631
709
  __props__.__dict__["name"] = name
@@ -647,6 +725,7 @@ class NodeTemplate(pulumi.CustomResource):
647
725
  def get(resource_name: str,
648
726
  id: pulumi.Input[str],
649
727
  opts: Optional[pulumi.ResourceOptions] = None,
728
+ accelerators: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NodeTemplateAcceleratorArgs', 'NodeTemplateAcceleratorArgsDict']]]]] = None,
650
729
  cpu_overcommit_type: Optional[pulumi.Input[str]] = None,
651
730
  creation_timestamp: Optional[pulumi.Input[str]] = None,
652
731
  description: Optional[pulumi.Input[str]] = None,
@@ -665,6 +744,9 @@ class NodeTemplate(pulumi.CustomResource):
665
744
  :param str resource_name: The unique name of the resulting resource.
666
745
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
667
746
  :param pulumi.ResourceOptions opts: Options for the resource.
747
+ :param pulumi.Input[Sequence[pulumi.Input[Union['NodeTemplateAcceleratorArgs', 'NodeTemplateAcceleratorArgsDict']]]] accelerators: List of the type and count of accelerator cards attached to the
748
+ node template
749
+ Structure is documented below.
668
750
  :param pulumi.Input[str] cpu_overcommit_type: CPU overcommit.
669
751
  Default value is `NONE`.
670
752
  Possible values are: `ENABLED`, `NONE`.
@@ -693,6 +775,7 @@ class NodeTemplate(pulumi.CustomResource):
693
775
 
694
776
  __props__ = _NodeTemplateState.__new__(_NodeTemplateState)
695
777
 
778
+ __props__.__dict__["accelerators"] = accelerators
696
779
  __props__.__dict__["cpu_overcommit_type"] = cpu_overcommit_type
697
780
  __props__.__dict__["creation_timestamp"] = creation_timestamp
698
781
  __props__.__dict__["description"] = description
@@ -706,6 +789,16 @@ class NodeTemplate(pulumi.CustomResource):
706
789
  __props__.__dict__["server_binding"] = server_binding
707
790
  return NodeTemplate(resource_name, opts=opts, __props__=__props__)
708
791
 
792
+ @property
793
+ @pulumi.getter
794
+ def accelerators(self) -> pulumi.Output[Optional[Sequence['outputs.NodeTemplateAccelerator']]]:
795
+ """
796
+ List of the type and count of accelerator cards attached to the
797
+ node template
798
+ Structure is documented below.
799
+ """
800
+ return pulumi.get(self, "accelerators")
801
+
709
802
  @property
710
803
  @pulumi.getter(name="cpuOvercommitType")
711
804
  def cpu_overcommit_type(self) -> pulumi.Output[Optional[str]]:
@@ -212,6 +212,7 @@ __all__ = [
212
212
  'NodeGroupMaintenanceWindow',
213
213
  'NodeGroupShareSettings',
214
214
  'NodeGroupShareSettingsProjectMap',
215
+ 'NodeTemplateAccelerator',
215
216
  'NodeTemplateNodeTypeFlexibility',
216
217
  'NodeTemplateServerBinding',
217
218
  'OrganizationSecurityPolicyRuleMatch',
@@ -4290,7 +4291,7 @@ class FirewallAllow(dict):
4290
4291
  is only applicable for UDP or TCP protocol. Each entry must be
4291
4292
  either an integer or a range. If not specified, this rule
4292
4293
  applies to connections through any port.
4293
- Example inputs include: ["22"], ["80","443"], and
4294
+ Example inputs include: [22], [80, 443], and
4294
4295
  ["12345-12349"].
4295
4296
  """
4296
4297
  pulumi.set(__self__, "protocol", protocol)
@@ -4316,7 +4317,7 @@ class FirewallAllow(dict):
4316
4317
  is only applicable for UDP or TCP protocol. Each entry must be
4317
4318
  either an integer or a range. If not specified, this rule
4318
4319
  applies to connections through any port.
4319
- Example inputs include: ["22"], ["80","443"], and
4320
+ Example inputs include: [22], [80, 443], and
4320
4321
  ["12345-12349"].
4321
4322
  """
4322
4323
  return pulumi.get(self, "ports")
@@ -4336,7 +4337,7 @@ class FirewallDeny(dict):
4336
4337
  is only applicable for UDP or TCP protocol. Each entry must be
4337
4338
  either an integer or a range. If not specified, this rule
4338
4339
  applies to connections through any port.
4339
- Example inputs include: ["22"], ["80","443"], and
4340
+ Example inputs include: [22], [80, 443], and
4340
4341
  ["12345-12349"].
4341
4342
  """
4342
4343
  pulumi.set(__self__, "protocol", protocol)
@@ -4362,7 +4363,7 @@ class FirewallDeny(dict):
4362
4363
  is only applicable for UDP or TCP protocol. Each entry must be
4363
4364
  either an integer or a range. If not specified, this rule
4364
4365
  applies to connections through any port.
4365
- Example inputs include: ["22"], ["80","443"], and
4366
+ Example inputs include: [22], [80, 443], and
4366
4367
  ["12345-12349"].
4367
4368
  """
4368
4369
  return pulumi.get(self, "ports")
@@ -6218,6 +6219,7 @@ class InstanceBootDisk(dict):
6218
6219
  disk_encryption_key_raw: Optional[str] = None,
6219
6220
  disk_encryption_key_sha256: Optional[str] = None,
6220
6221
  initialize_params: Optional['outputs.InstanceBootDiskInitializeParams'] = None,
6222
+ interface: Optional[str] = None,
6221
6223
  kms_key_self_link: Optional[str] = None,
6222
6224
  mode: Optional[str] = None,
6223
6225
  source: Optional[str] = None):
@@ -6237,6 +6239,7 @@ class InstanceBootDisk(dict):
6237
6239
  :param 'InstanceBootDiskInitializeParamsArgs' initialize_params: Parameters for a new disk that will be created
6238
6240
  alongside the new instance. Either `initialize_params` or `source` must be set.
6239
6241
  Structure is documented below.
6242
+ :param str interface: The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
6240
6243
  :param str kms_key_self_link: The self_link of the encryption key that is
6241
6244
  stored in Google Cloud KMS to encrypt this disk. Only one of `kms_key_self_link`
6242
6245
  and `disk_encryption_key_raw` may be set.
@@ -6256,6 +6259,8 @@ class InstanceBootDisk(dict):
6256
6259
  pulumi.set(__self__, "disk_encryption_key_sha256", disk_encryption_key_sha256)
6257
6260
  if initialize_params is not None:
6258
6261
  pulumi.set(__self__, "initialize_params", initialize_params)
6262
+ if interface is not None:
6263
+ pulumi.set(__self__, "interface", interface)
6259
6264
  if kms_key_self_link is not None:
6260
6265
  pulumi.set(__self__, "kms_key_self_link", kms_key_self_link)
6261
6266
  if mode is not None:
@@ -6313,6 +6318,14 @@ class InstanceBootDisk(dict):
6313
6318
  """
6314
6319
  return pulumi.get(self, "initialize_params")
6315
6320
 
6321
+ @property
6322
+ @pulumi.getter
6323
+ def interface(self) -> Optional[str]:
6324
+ """
6325
+ The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
6326
+ """
6327
+ return pulumi.get(self, "interface")
6328
+
6316
6329
  @property
6317
6330
  @pulumi.getter(name="kmsKeySelfLink")
6318
6331
  def kms_key_self_link(self) -> Optional[str]:
@@ -6785,6 +6798,7 @@ class InstanceFromMachineImageBootDisk(dict):
6785
6798
  disk_encryption_key_raw: Optional[str] = None,
6786
6799
  disk_encryption_key_sha256: Optional[str] = None,
6787
6800
  initialize_params: Optional['outputs.InstanceFromMachineImageBootDiskInitializeParams'] = None,
6801
+ interface: Optional[str] = None,
6788
6802
  kms_key_self_link: Optional[str] = None,
6789
6803
  mode: Optional[str] = None,
6790
6804
  source: Optional[str] = None):
@@ -6794,6 +6808,7 @@ class InstanceFromMachineImageBootDisk(dict):
6794
6808
  :param str disk_encryption_key_raw: A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
6795
6809
  :param str disk_encryption_key_sha256: The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
6796
6810
  :param 'InstanceFromMachineImageBootDiskInitializeParamsArgs' initialize_params: Parameters with which a disk was created alongside the instance.
6811
+ :param str interface: The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
6797
6812
  :param str kms_key_self_link: The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
6798
6813
  :param str mode: Read/write mode for the disk. One of "READ_ONLY" or "READ_WRITE".
6799
6814
  :param str source: The name or self_link of the disk attached to this instance.
@@ -6808,6 +6823,8 @@ class InstanceFromMachineImageBootDisk(dict):
6808
6823
  pulumi.set(__self__, "disk_encryption_key_sha256", disk_encryption_key_sha256)
6809
6824
  if initialize_params is not None:
6810
6825
  pulumi.set(__self__, "initialize_params", initialize_params)
6826
+ if interface is not None:
6827
+ pulumi.set(__self__, "interface", interface)
6811
6828
  if kms_key_self_link is not None:
6812
6829
  pulumi.set(__self__, "kms_key_self_link", kms_key_self_link)
6813
6830
  if mode is not None:
@@ -6855,6 +6872,14 @@ class InstanceFromMachineImageBootDisk(dict):
6855
6872
  """
6856
6873
  return pulumi.get(self, "initialize_params")
6857
6874
 
6875
+ @property
6876
+ @pulumi.getter
6877
+ def interface(self) -> Optional[str]:
6878
+ """
6879
+ The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
6880
+ """
6881
+ return pulumi.get(self, "interface")
6882
+
6858
6883
  @property
6859
6884
  @pulumi.getter(name="kmsKeySelfLink")
6860
6885
  def kms_key_self_link(self) -> Optional[str]:
@@ -8393,6 +8418,7 @@ class InstanceFromTemplateBootDisk(dict):
8393
8418
  disk_encryption_key_raw: Optional[str] = None,
8394
8419
  disk_encryption_key_sha256: Optional[str] = None,
8395
8420
  initialize_params: Optional['outputs.InstanceFromTemplateBootDiskInitializeParams'] = None,
8421
+ interface: Optional[str] = None,
8396
8422
  kms_key_self_link: Optional[str] = None,
8397
8423
  mode: Optional[str] = None,
8398
8424
  source: Optional[str] = None):
@@ -8402,6 +8428,7 @@ class InstanceFromTemplateBootDisk(dict):
8402
8428
  :param str disk_encryption_key_raw: A 256-bit customer-supplied encryption key, encoded in RFC 4648 base64 to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
8403
8429
  :param str disk_encryption_key_sha256: The RFC 4648 base64 encoded SHA-256 hash of the customer-supplied encryption key that protects this resource.
8404
8430
  :param 'InstanceFromTemplateBootDiskInitializeParamsArgs' initialize_params: Parameters with which a disk was created alongside the instance.
8431
+ :param str interface: The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
8405
8432
  :param str kms_key_self_link: The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
8406
8433
  :param str mode: Read/write mode for the disk. One of "READ_ONLY" or "READ_WRITE".
8407
8434
  :param str source: The name or self_link of the disk attached to this instance.
@@ -8416,6 +8443,8 @@ class InstanceFromTemplateBootDisk(dict):
8416
8443
  pulumi.set(__self__, "disk_encryption_key_sha256", disk_encryption_key_sha256)
8417
8444
  if initialize_params is not None:
8418
8445
  pulumi.set(__self__, "initialize_params", initialize_params)
8446
+ if interface is not None:
8447
+ pulumi.set(__self__, "interface", interface)
8419
8448
  if kms_key_self_link is not None:
8420
8449
  pulumi.set(__self__, "kms_key_self_link", kms_key_self_link)
8421
8450
  if mode is not None:
@@ -8463,6 +8492,14 @@ class InstanceFromTemplateBootDisk(dict):
8463
8492
  """
8464
8493
  return pulumi.get(self, "initialize_params")
8465
8494
 
8495
+ @property
8496
+ @pulumi.getter
8497
+ def interface(self) -> Optional[str]:
8498
+ """
8499
+ The disk interface used for attaching this disk. One of SCSI or NVME. (This field is shared with attached_disk and only used for specific cases, please don't specify this field without advice from Google.)
8500
+ """
8501
+ return pulumi.get(self, "interface")
8502
+
8466
8503
  @property
8467
8504
  @pulumi.getter(name="kmsKeySelfLink")
8468
8505
  def kms_key_self_link(self) -> Optional[str]:
@@ -10950,7 +10987,7 @@ class InstanceNetworkInterface(dict):
10950
10987
  network is in auto subnet mode, specifying the subnetwork is optional. If the network is
10951
10988
  in custom subnet mode, specifying the subnetwork is required.
10952
10989
  :param str subnetwork_project: The project in which the subnetwork belongs.
10953
- If the `subnetwork` is a self_link, this field is ignored in favor of the project
10990
+ If the `subnetwork` is a self_link, this field is set to the project
10954
10991
  defined in the subnetwork self_link. If the `subnetwork` is a name and this
10955
10992
  field is not provided, the provider project is used.
10956
10993
  """
@@ -11127,7 +11164,7 @@ class InstanceNetworkInterface(dict):
11127
11164
  def subnetwork_project(self) -> Optional[str]:
11128
11165
  """
11129
11166
  The project in which the subnetwork belongs.
11130
- If the `subnetwork` is a self_link, this field is ignored in favor of the project
11167
+ If the `subnetwork` is a self_link, this field is set to the project
11131
11168
  defined in the subnetwork self_link. If the `subnetwork` is a name and this
11132
11169
  field is not provided, the provider project is used.
11133
11170
  """
@@ -15082,6 +15119,60 @@ class NodeGroupShareSettingsProjectMap(dict):
15082
15119
  return pulumi.get(self, "project_id")
15083
15120
 
15084
15121
 
15122
+ @pulumi.output_type
15123
+ class NodeTemplateAccelerator(dict):
15124
+ @staticmethod
15125
+ def __key_warning(key: str):
15126
+ suggest = None
15127
+ if key == "acceleratorCount":
15128
+ suggest = "accelerator_count"
15129
+ elif key == "acceleratorType":
15130
+ suggest = "accelerator_type"
15131
+
15132
+ if suggest:
15133
+ pulumi.log.warn(f"Key '{key}' not found in NodeTemplateAccelerator. Access the value via the '{suggest}' property getter instead.")
15134
+
15135
+ def __getitem__(self, key: str) -> Any:
15136
+ NodeTemplateAccelerator.__key_warning(key)
15137
+ return super().__getitem__(key)
15138
+
15139
+ def get(self, key: str, default = None) -> Any:
15140
+ NodeTemplateAccelerator.__key_warning(key)
15141
+ return super().get(key, default)
15142
+
15143
+ def __init__(__self__, *,
15144
+ accelerator_count: Optional[int] = None,
15145
+ accelerator_type: Optional[str] = None):
15146
+ """
15147
+ :param int accelerator_count: The number of the guest accelerator cards exposed to this
15148
+ node template.
15149
+ :param str accelerator_type: Full or partial URL of the accelerator type resource to expose
15150
+ to this node template.
15151
+ """
15152
+ if accelerator_count is not None:
15153
+ pulumi.set(__self__, "accelerator_count", accelerator_count)
15154
+ if accelerator_type is not None:
15155
+ pulumi.set(__self__, "accelerator_type", accelerator_type)
15156
+
15157
+ @property
15158
+ @pulumi.getter(name="acceleratorCount")
15159
+ def accelerator_count(self) -> Optional[int]:
15160
+ """
15161
+ The number of the guest accelerator cards exposed to this
15162
+ node template.
15163
+ """
15164
+ return pulumi.get(self, "accelerator_count")
15165
+
15166
+ @property
15167
+ @pulumi.getter(name="acceleratorType")
15168
+ def accelerator_type(self) -> Optional[str]:
15169
+ """
15170
+ Full or partial URL of the accelerator type resource to expose
15171
+ to this node template.
15172
+ """
15173
+ return pulumi.get(self, "accelerator_type")
15174
+
15175
+
15085
15176
  @pulumi.output_type
15086
15177
  class NodeTemplateNodeTypeFlexibility(dict):
15087
15178
  @staticmethod
@@ -45910,6 +46001,7 @@ class GetInstanceBootDiskResult(dict):
45910
46001
  disk_encryption_key_raw: str,
45911
46002
  disk_encryption_key_sha256: str,
45912
46003
  initialize_params: Sequence['outputs.GetInstanceBootDiskInitializeParamResult'],
46004
+ interface: str,
45913
46005
  kms_key_self_link: str,
45914
46006
  mode: str,
45915
46007
  source: str):
@@ -45923,6 +46015,7 @@ class GetInstanceBootDiskResult(dict):
45923
46015
  (<https://cloud.google.com/compute/docs/disks/customer-supplied-encryption>) that protects this resource.
45924
46016
  :param Sequence['GetInstanceBootDiskInitializeParamArgs'] initialize_params: Parameters with which a disk was created alongside the instance.
45925
46017
  Structure is documented below.
46018
+ :param str interface: The disk interface used for attaching this disk. One of `SCSI` or `NVME`.
45926
46019
  :param str kms_key_self_link: The self_link of the encryption key that is stored in Google Cloud KMS to encrypt this disk. Only one of kms_key_self_link and disk_encryption_key_raw may be set.
45927
46020
  :param str mode: Read/write mode for the disk. One of `"READ_ONLY"` or `"READ_WRITE"`.
45928
46021
  :param str source: The name or self_link of the disk attached to this instance.
@@ -45932,6 +46025,7 @@ class GetInstanceBootDiskResult(dict):
45932
46025
  pulumi.set(__self__, "disk_encryption_key_raw", disk_encryption_key_raw)
45933
46026
  pulumi.set(__self__, "disk_encryption_key_sha256", disk_encryption_key_sha256)
45934
46027
  pulumi.set(__self__, "initialize_params", initialize_params)
46028
+ pulumi.set(__self__, "interface", interface)
45935
46029
  pulumi.set(__self__, "kms_key_self_link", kms_key_self_link)
45936
46030
  pulumi.set(__self__, "mode", mode)
45937
46031
  pulumi.set(__self__, "source", source)
@@ -45980,6 +46074,14 @@ class GetInstanceBootDiskResult(dict):
45980
46074
  """
45981
46075
  return pulumi.get(self, "initialize_params")
45982
46076
 
46077
+ @property
46078
+ @pulumi.getter
46079
+ def interface(self) -> str:
46080
+ """
46081
+ The disk interface used for attaching this disk. One of `SCSI` or `NVME`.
46082
+ """
46083
+ return pulumi.get(self, "interface")
46084
+
45983
46085
  @property
45984
46086
  @pulumi.getter(name="kmsKeySelfLink")
45985
46087
  def kms_key_self_link(self) -> str:
@@ -81,6 +81,10 @@ class TargetHttpsProxyArgs:
81
81
  INTERNAL_SELF_MANAGED and which with EXTERNAL, EXTERNAL_MANAGED
82
82
  loadBalancingScheme consult ServerTlsPolicy documentation.
83
83
  If left blank, communications are not encrypted.
84
+ If you remove this field from your configuration at the same time as
85
+ deleting or recreating a referenced ServerTlsPolicy resource, you will
86
+ receive a resourceInUseByAnotherResource error. Use lifecycle.create_before_destroy
87
+ within the ServerTlsPolicy resource to avoid this.
84
88
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ssl_certificates: URLs to SslCertificate resources that are used to authenticate connections between users and the load balancer.
85
89
  Currently, you may specify up to 15 SSL certificates. sslCertificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
86
90
  sslCertificates and certificateManagerCertificates can not be defined together.
@@ -269,6 +273,10 @@ class TargetHttpsProxyArgs:
269
273
  INTERNAL_SELF_MANAGED and which with EXTERNAL, EXTERNAL_MANAGED
270
274
  loadBalancingScheme consult ServerTlsPolicy documentation.
271
275
  If left blank, communications are not encrypted.
276
+ If you remove this field from your configuration at the same time as
277
+ deleting or recreating a referenced ServerTlsPolicy resource, you will
278
+ receive a resourceInUseByAnotherResource error. Use lifecycle.create_before_destroy
279
+ within the ServerTlsPolicy resource to avoid this.
272
280
  """
273
281
  return pulumi.get(self, "server_tls_policy")
274
282
 
@@ -387,6 +395,10 @@ class _TargetHttpsProxyState:
387
395
  INTERNAL_SELF_MANAGED and which with EXTERNAL, EXTERNAL_MANAGED
388
396
  loadBalancingScheme consult ServerTlsPolicy documentation.
389
397
  If left blank, communications are not encrypted.
398
+ If you remove this field from your configuration at the same time as
399
+ deleting or recreating a referenced ServerTlsPolicy resource, you will
400
+ receive a resourceInUseByAnotherResource error. Use lifecycle.create_before_destroy
401
+ within the ServerTlsPolicy resource to avoid this.
390
402
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ssl_certificates: URLs to SslCertificate resources that are used to authenticate connections between users and the load balancer.
391
403
  Currently, you may specify up to 15 SSL certificates. sslCertificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
392
404
  sslCertificates and certificateManagerCertificates can not be defined together.
@@ -607,6 +619,10 @@ class _TargetHttpsProxyState:
607
619
  INTERNAL_SELF_MANAGED and which with EXTERNAL, EXTERNAL_MANAGED
608
620
  loadBalancingScheme consult ServerTlsPolicy documentation.
609
621
  If left blank, communications are not encrypted.
622
+ If you remove this field from your configuration at the same time as
623
+ deleting or recreating a referenced ServerTlsPolicy resource, you will
624
+ receive a resourceInUseByAnotherResource error. Use lifecycle.create_before_destroy
625
+ within the ServerTlsPolicy resource to avoid this.
610
626
  """
611
627
  return pulumi.get(self, "server_tls_policy")
612
628
 
@@ -973,6 +989,10 @@ class TargetHttpsProxy(pulumi.CustomResource):
973
989
  INTERNAL_SELF_MANAGED and which with EXTERNAL, EXTERNAL_MANAGED
974
990
  loadBalancingScheme consult ServerTlsPolicy documentation.
975
991
  If left blank, communications are not encrypted.
992
+ If you remove this field from your configuration at the same time as
993
+ deleting or recreating a referenced ServerTlsPolicy resource, you will
994
+ receive a resourceInUseByAnotherResource error. Use lifecycle.create_before_destroy
995
+ within the ServerTlsPolicy resource to avoid this.
976
996
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ssl_certificates: URLs to SslCertificate resources that are used to authenticate connections between users and the load balancer.
977
997
  Currently, you may specify up to 15 SSL certificates. sslCertificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
978
998
  sslCertificates and certificateManagerCertificates can not be defined together.
@@ -1364,6 +1384,10 @@ class TargetHttpsProxy(pulumi.CustomResource):
1364
1384
  INTERNAL_SELF_MANAGED and which with EXTERNAL, EXTERNAL_MANAGED
1365
1385
  loadBalancingScheme consult ServerTlsPolicy documentation.
1366
1386
  If left blank, communications are not encrypted.
1387
+ If you remove this field from your configuration at the same time as
1388
+ deleting or recreating a referenced ServerTlsPolicy resource, you will
1389
+ receive a resourceInUseByAnotherResource error. Use lifecycle.create_before_destroy
1390
+ within the ServerTlsPolicy resource to avoid this.
1367
1391
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ssl_certificates: URLs to SslCertificate resources that are used to authenticate connections between users and the load balancer.
1368
1392
  Currently, you may specify up to 15 SSL certificates. sslCertificates do not apply when the load balancing scheme is set to INTERNAL_SELF_MANAGED.
1369
1393
  sslCertificates and certificateManagerCertificates can not be defined together.
@@ -1529,6 +1553,10 @@ class TargetHttpsProxy(pulumi.CustomResource):
1529
1553
  INTERNAL_SELF_MANAGED and which with EXTERNAL, EXTERNAL_MANAGED
1530
1554
  loadBalancingScheme consult ServerTlsPolicy documentation.
1531
1555
  If left blank, communications are not encrypted.
1556
+ If you remove this field from your configuration at the same time as
1557
+ deleting or recreating a referenced ServerTlsPolicy resource, you will
1558
+ receive a resourceInUseByAnotherResource error. Use lifecycle.create_before_destroy
1559
+ within the ServerTlsPolicy resource to avoid this.
1532
1560
  """
1533
1561
  return pulumi.get(self, "server_tls_policy")
1534
1562