pulumi-gcp 8.13.0a1736231082__py3-none-any.whl → 8.13.0a1736263433__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 (90) hide show
  1. pulumi_gcp/__init__.py +43 -0
  2. pulumi_gcp/accesscontextmanager/_inputs.py +3 -3
  3. pulumi_gcp/accesscontextmanager/outputs.py +2 -2
  4. pulumi_gcp/artifactregistry/_inputs.py +83 -0
  5. pulumi_gcp/artifactregistry/get_repository.py +15 -4
  6. pulumi_gcp/artifactregistry/outputs.py +112 -0
  7. pulumi_gcp/artifactregistry/repository.py +93 -7
  8. pulumi_gcp/backupdisasterrecovery/get_backup.py +38 -2
  9. pulumi_gcp/backupdisasterrecovery/get_data_source.py +38 -2
  10. pulumi_gcp/backupdisasterrecovery/outputs.py +8 -8
  11. pulumi_gcp/bigquery/_inputs.py +369 -0
  12. pulumi_gcp/bigquery/dataset_access.py +61 -0
  13. pulumi_gcp/bigquery/job.py +6 -18
  14. pulumi_gcp/bigquery/outputs.py +350 -0
  15. pulumi_gcp/bigquery/table.py +47 -0
  16. pulumi_gcp/chronicle/__init__.py +10 -0
  17. pulumi_gcp/chronicle/_inputs.py +169 -0
  18. pulumi_gcp/chronicle/outputs.py +107 -0
  19. pulumi_gcp/chronicle/watchlist.py +776 -0
  20. pulumi_gcp/cloudrunv2/_inputs.py +6 -3
  21. pulumi_gcp/cloudrunv2/outputs.py +10 -6
  22. pulumi_gcp/composer/_inputs.py +80 -5
  23. pulumi_gcp/composer/outputs.py +111 -4
  24. pulumi_gcp/compute/_inputs.py +181 -87
  25. pulumi_gcp/compute/firewall_policy_association.py +50 -39
  26. pulumi_gcp/compute/get_network.py +17 -2
  27. pulumi_gcp/compute/get_subnetwork.py +18 -4
  28. pulumi_gcp/compute/network.py +39 -2
  29. pulumi_gcp/compute/outputs.py +157 -58
  30. pulumi_gcp/compute/region_network_endpoint_group.py +1 -1
  31. pulumi_gcp/compute/resize_request.py +26 -40
  32. pulumi_gcp/config/__init__.pyi +2 -0
  33. pulumi_gcp/config/vars.py +4 -0
  34. pulumi_gcp/dataproc/batch.py +4 -18
  35. pulumi_gcp/datastream/_inputs.py +68 -0
  36. pulumi_gcp/datastream/outputs.py +41 -1
  37. pulumi_gcp/developerconnect/connection.py +58 -12
  38. pulumi_gcp/diagflow/_inputs.py +3 -3
  39. pulumi_gcp/diagflow/outputs.py +2 -2
  40. pulumi_gcp/filestore/backup.py +71 -3
  41. pulumi_gcp/firebase/hosting_custom_domain.py +4 -4
  42. pulumi_gcp/firestore/_inputs.py +3 -3
  43. pulumi_gcp/firestore/outputs.py +2 -2
  44. pulumi_gcp/gkehub/__init__.py +1 -0
  45. pulumi_gcp/gkehub/get_feature.py +226 -0
  46. pulumi_gcp/gkehub/outputs.py +1153 -0
  47. pulumi_gcp/gkeonprem/__init__.py +1 -0
  48. pulumi_gcp/gkeonprem/_inputs.py +2364 -0
  49. pulumi_gcp/gkeonprem/outputs.py +1780 -0
  50. pulumi_gcp/gkeonprem/vmware_admin_cluster.py +1715 -0
  51. pulumi_gcp/integrationconnectors/_inputs.py +6 -6
  52. pulumi_gcp/integrationconnectors/connection.py +7 -7
  53. pulumi_gcp/integrationconnectors/outputs.py +4 -4
  54. pulumi_gcp/kms/__init__.py +2 -0
  55. pulumi_gcp/kms/get_autokey_config.py +121 -0
  56. pulumi_gcp/kms/get_key_handle.py +185 -0
  57. pulumi_gcp/netapp/kmsconfig.py +2 -14
  58. pulumi_gcp/networkconnectivity/hub.py +108 -0
  59. pulumi_gcp/networkconnectivity/spoke.py +195 -0
  60. pulumi_gcp/networkmanagement/vpc_flow_logs_config.py +4 -0
  61. pulumi_gcp/networksecurity/__init__.py +2 -0
  62. pulumi_gcp/networksecurity/_inputs.py +78 -0
  63. pulumi_gcp/networksecurity/intercept_endpoint_group.py +723 -0
  64. pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +815 -0
  65. pulumi_gcp/networksecurity/outputs.py +48 -0
  66. pulumi_gcp/oracledatabase/autonomous_database.py +2 -2
  67. pulumi_gcp/orgpolicy/policy.py +2 -2
  68. pulumi_gcp/parallelstore/instance.py +149 -0
  69. pulumi_gcp/projects/usage_export_bucket.py +42 -110
  70. pulumi_gcp/provider.py +20 -0
  71. pulumi_gcp/pubsub/subscription.py +6 -6
  72. pulumi_gcp/pulumi-plugin.json +1 -1
  73. pulumi_gcp/securesourcemanager/instance.py +4 -16
  74. pulumi_gcp/spanner/instance_iam_binding.py +14 -0
  75. pulumi_gcp/spanner/instance_iam_member.py +14 -0
  76. pulumi_gcp/sql/database_instance.py +7 -7
  77. pulumi_gcp/storage/__init__.py +1 -0
  78. pulumi_gcp/storage/_inputs.py +431 -0
  79. pulumi_gcp/storage/folder.py +483 -0
  80. pulumi_gcp/storage/outputs.py +363 -0
  81. pulumi_gcp/storage/transfer_job.py +84 -38
  82. pulumi_gcp/vertex/_inputs.py +26 -25
  83. pulumi_gcp/vertex/ai_endpoint.py +4 -4
  84. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
  85. pulumi_gcp/vertex/outputs.py +15 -14
  86. pulumi_gcp/workstations/workstation.py +55 -1
  87. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/METADATA +1 -1
  88. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/RECORD +90 -79
  89. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/WHEEL +0 -0
  90. {pulumi_gcp-8.13.0a1736231082.dist-info → pulumi_gcp-8.13.0a1736263433.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,8 @@ class WorkstationArgs:
27
27
  display_name: Optional[pulumi.Input[str]] = None,
28
28
  env: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
29
29
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
30
- project: Optional[pulumi.Input[str]] = None):
30
+ project: Optional[pulumi.Input[str]] = None,
31
+ source_workstation: Optional[pulumi.Input[str]] = None):
31
32
  """
32
33
  The set of arguments for constructing a Workstation resource.
33
34
  :param pulumi.Input[str] location: The location where the workstation parent resources reside.
@@ -47,6 +48,8 @@ class WorkstationArgs:
47
48
  Please refer to the field `effective_labels` for all of the labels present on the resource.
48
49
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
49
50
  If it is not provided, the provider project is used.
51
+ :param pulumi.Input[str] source_workstation: Full resource name of the source workstation from which the workstation's persistent
52
+ directories will be cloned from during creation.
50
53
  """
51
54
  pulumi.set(__self__, "location", location)
52
55
  pulumi.set(__self__, "workstation_cluster_id", workstation_cluster_id)
@@ -62,6 +65,8 @@ class WorkstationArgs:
62
65
  pulumi.set(__self__, "labels", labels)
63
66
  if project is not None:
64
67
  pulumi.set(__self__, "project", project)
68
+ if source_workstation is not None:
69
+ pulumi.set(__self__, "source_workstation", source_workstation)
65
70
 
66
71
  @property
67
72
  @pulumi.getter
@@ -179,6 +184,19 @@ class WorkstationArgs:
179
184
  def project(self, value: Optional[pulumi.Input[str]]):
180
185
  pulumi.set(self, "project", value)
181
186
 
187
+ @property
188
+ @pulumi.getter(name="sourceWorkstation")
189
+ def source_workstation(self) -> Optional[pulumi.Input[str]]:
190
+ """
191
+ Full resource name of the source workstation from which the workstation's persistent
192
+ directories will be cloned from during creation.
193
+ """
194
+ return pulumi.get(self, "source_workstation")
195
+
196
+ @source_workstation.setter
197
+ def source_workstation(self, value: Optional[pulumi.Input[str]]):
198
+ pulumi.set(self, "source_workstation", value)
199
+
182
200
 
183
201
  @pulumi.input_type
184
202
  class _WorkstationState:
@@ -195,6 +213,7 @@ class _WorkstationState:
195
213
  name: Optional[pulumi.Input[str]] = None,
196
214
  project: Optional[pulumi.Input[str]] = None,
197
215
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
216
+ source_workstation: Optional[pulumi.Input[str]] = None,
198
217
  state: Optional[pulumi.Input[str]] = None,
199
218
  uid: Optional[pulumi.Input[str]] = None,
200
219
  workstation_cluster_id: Optional[pulumi.Input[str]] = None,
@@ -224,6 +243,8 @@ class _WorkstationState:
224
243
  If it is not provided, the provider project is used.
225
244
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
226
245
  and default labels configured on the provider.
246
+ :param pulumi.Input[str] source_workstation: Full resource name of the source workstation from which the workstation's persistent
247
+ directories will be cloned from during creation.
227
248
  :param pulumi.Input[str] state: Current state of the workstation.
228
249
  :param pulumi.Input[str] uid: A system-assigned unique identified for this resource.
229
250
  :param pulumi.Input[str] workstation_cluster_id: The ID of the parent workstation cluster.
@@ -254,6 +275,8 @@ class _WorkstationState:
254
275
  pulumi.set(__self__, "project", project)
255
276
  if pulumi_labels is not None:
256
277
  pulumi.set(__self__, "pulumi_labels", pulumi_labels)
278
+ if source_workstation is not None:
279
+ pulumi.set(__self__, "source_workstation", source_workstation)
257
280
  if state is not None:
258
281
  pulumi.set(__self__, "state", state)
259
282
  if uid is not None:
@@ -417,6 +440,19 @@ class _WorkstationState:
417
440
  def pulumi_labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
418
441
  pulumi.set(self, "pulumi_labels", value)
419
442
 
443
+ @property
444
+ @pulumi.getter(name="sourceWorkstation")
445
+ def source_workstation(self) -> Optional[pulumi.Input[str]]:
446
+ """
447
+ Full resource name of the source workstation from which the workstation's persistent
448
+ directories will be cloned from during creation.
449
+ """
450
+ return pulumi.get(self, "source_workstation")
451
+
452
+ @source_workstation.setter
453
+ def source_workstation(self, value: Optional[pulumi.Input[str]]):
454
+ pulumi.set(self, "source_workstation", value)
455
+
420
456
  @property
421
457
  @pulumi.getter
422
458
  def state(self) -> Optional[pulumi.Input[str]]:
@@ -489,6 +525,7 @@ class Workstation(pulumi.CustomResource):
489
525
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
490
526
  location: Optional[pulumi.Input[str]] = None,
491
527
  project: Optional[pulumi.Input[str]] = None,
528
+ source_workstation: Optional[pulumi.Input[str]] = None,
492
529
  workstation_cluster_id: Optional[pulumi.Input[str]] = None,
493
530
  workstation_config_id: Optional[pulumi.Input[str]] = None,
494
531
  workstation_id: Optional[pulumi.Input[str]] = None,
@@ -588,6 +625,8 @@ class Workstation(pulumi.CustomResource):
588
625
  - - -
589
626
  :param pulumi.Input[str] project: The ID of the project in which the resource belongs.
590
627
  If it is not provided, the provider project is used.
628
+ :param pulumi.Input[str] source_workstation: Full resource name of the source workstation from which the workstation's persistent
629
+ directories will be cloned from during creation.
591
630
  :param pulumi.Input[str] workstation_cluster_id: The ID of the parent workstation cluster.
592
631
  :param pulumi.Input[str] workstation_config_id: The ID of the parent workstation cluster config.
593
632
  :param pulumi.Input[str] workstation_id: ID to use for the workstation.
@@ -698,6 +737,7 @@ class Workstation(pulumi.CustomResource):
698
737
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
699
738
  location: Optional[pulumi.Input[str]] = None,
700
739
  project: Optional[pulumi.Input[str]] = None,
740
+ source_workstation: Optional[pulumi.Input[str]] = None,
701
741
  workstation_cluster_id: Optional[pulumi.Input[str]] = None,
702
742
  workstation_config_id: Optional[pulumi.Input[str]] = None,
703
743
  workstation_id: Optional[pulumi.Input[str]] = None,
@@ -718,6 +758,7 @@ class Workstation(pulumi.CustomResource):
718
758
  raise TypeError("Missing required property 'location'")
719
759
  __props__.__dict__["location"] = location
720
760
  __props__.__dict__["project"] = project
761
+ __props__.__dict__["source_workstation"] = source_workstation
721
762
  if workstation_cluster_id is None and not opts.urn:
722
763
  raise TypeError("Missing required property 'workstation_cluster_id'")
723
764
  __props__.__dict__["workstation_cluster_id"] = workstation_cluster_id
@@ -759,6 +800,7 @@ class Workstation(pulumi.CustomResource):
759
800
  name: Optional[pulumi.Input[str]] = None,
760
801
  project: Optional[pulumi.Input[str]] = None,
761
802
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
803
+ source_workstation: Optional[pulumi.Input[str]] = None,
762
804
  state: Optional[pulumi.Input[str]] = None,
763
805
  uid: Optional[pulumi.Input[str]] = None,
764
806
  workstation_cluster_id: Optional[pulumi.Input[str]] = None,
@@ -793,6 +835,8 @@ class Workstation(pulumi.CustomResource):
793
835
  If it is not provided, the provider project is used.
794
836
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
795
837
  and default labels configured on the provider.
838
+ :param pulumi.Input[str] source_workstation: Full resource name of the source workstation from which the workstation's persistent
839
+ directories will be cloned from during creation.
796
840
  :param pulumi.Input[str] state: Current state of the workstation.
797
841
  :param pulumi.Input[str] uid: A system-assigned unique identified for this resource.
798
842
  :param pulumi.Input[str] workstation_cluster_id: The ID of the parent workstation cluster.
@@ -815,6 +859,7 @@ class Workstation(pulumi.CustomResource):
815
859
  __props__.__dict__["name"] = name
816
860
  __props__.__dict__["project"] = project
817
861
  __props__.__dict__["pulumi_labels"] = pulumi_labels
862
+ __props__.__dict__["source_workstation"] = source_workstation
818
863
  __props__.__dict__["state"] = state
819
864
  __props__.__dict__["uid"] = uid
820
865
  __props__.__dict__["workstation_cluster_id"] = workstation_cluster_id
@@ -926,6 +971,15 @@ class Workstation(pulumi.CustomResource):
926
971
  """
927
972
  return pulumi.get(self, "pulumi_labels")
928
973
 
974
+ @property
975
+ @pulumi.getter(name="sourceWorkstation")
976
+ def source_workstation(self) -> pulumi.Output[Optional[str]]:
977
+ """
978
+ Full resource name of the source workstation from which the workstation's persistent
979
+ directories will be cloned from during creation.
980
+ """
981
+ return pulumi.get(self, "source_workstation")
982
+
929
983
  @property
930
984
  @pulumi.getter
931
985
  def state(self) -> pulumi.Output[str]:
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pulumi_gcp
3
- Version: 8.13.0a1736231082
3
+ Version: 8.13.0a1736263433
4
4
  Summary: A Pulumi package for creating and managing Google Cloud Platform resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://pulumi.io