pulumi-gcp 7.5.0a1704283083__py3-none-any.whl → 7.6.0__py3-none-any.whl

Sign up to get free protection for your applications and to get access to all the features.
Files changed (101) hide show
  1. pulumi_gcp/__init__.py +99 -0
  2. pulumi_gcp/bigqueryanalyticshub/_inputs.py +40 -0
  3. pulumi_gcp/bigqueryanalyticshub/listing.py +117 -3
  4. pulumi_gcp/bigqueryanalyticshub/outputs.py +49 -0
  5. pulumi_gcp/clouddeploy/__init__.py +1 -0
  6. pulumi_gcp/clouddeploy/_inputs.py +239 -0
  7. pulumi_gcp/clouddeploy/automation.py +1103 -0
  8. pulumi_gcp/clouddeploy/outputs.py +246 -0
  9. pulumi_gcp/clouddomains/__init__.py +10 -0
  10. pulumi_gcp/clouddomains/_inputs.py +1098 -0
  11. pulumi_gcp/clouddomains/outputs.py +1156 -0
  12. pulumi_gcp/clouddomains/registration.py +1068 -0
  13. pulumi_gcp/cloudrunv2/job.py +4 -4
  14. pulumi_gcp/composer/_inputs.py +79 -1
  15. pulumi_gcp/composer/outputs.py +131 -4
  16. pulumi_gcp/compute/__init__.py +1 -0
  17. pulumi_gcp/compute/_inputs.py +180 -0
  18. pulumi_gcp/compute/get_instance_template.py +11 -1
  19. pulumi_gcp/compute/get_region_instance_template.py +11 -1
  20. pulumi_gcp/compute/get_reservation.py +212 -0
  21. pulumi_gcp/compute/instance_template.py +47 -0
  22. pulumi_gcp/compute/network_firewall_policy.py +20 -22
  23. pulumi_gcp/compute/outputs.py +325 -0
  24. pulumi_gcp/compute/region_instance_template.py +47 -0
  25. pulumi_gcp/compute/region_network_firewall_policy.py +31 -35
  26. pulumi_gcp/compute/router_peer.py +54 -0
  27. pulumi_gcp/compute/vpn_tunnel.py +8 -4
  28. pulumi_gcp/config/__init__.pyi +2 -0
  29. pulumi_gcp/config/vars.py +4 -0
  30. pulumi_gcp/container/_inputs.py +23 -0
  31. pulumi_gcp/container/aws_node_pool.py +7 -7
  32. pulumi_gcp/container/cluster.py +68 -14
  33. pulumi_gcp/container/get_cluster.py +11 -1
  34. pulumi_gcp/container/outputs.py +49 -0
  35. pulumi_gcp/dataflow/pipeline.py +1 -1
  36. pulumi_gcp/dataproc/_inputs.py +413 -39
  37. pulumi_gcp/dataproc/metastore_service.py +63 -0
  38. pulumi_gcp/dataproc/outputs.py +461 -39
  39. pulumi_gcp/dns/__init__.py +1 -0
  40. pulumi_gcp/dns/_inputs.py +94 -0
  41. pulumi_gcp/dns/get_managed_zones.py +89 -0
  42. pulumi_gcp/dns/outputs.py +62 -0
  43. pulumi_gcp/edgecontainer/vpn_connection.py +10 -10
  44. pulumi_gcp/filestore/__init__.py +1 -0
  45. pulumi_gcp/filestore/get_instance.py +258 -0
  46. pulumi_gcp/filestore/instance.py +7 -7
  47. pulumi_gcp/filestore/outputs.py +126 -0
  48. pulumi_gcp/gkebackup/backup_plan.py +24 -8
  49. pulumi_gcp/gkebackup/restore_plan.py +36 -12
  50. pulumi_gcp/gkebackup/restore_plan_iam_binding.py +36 -12
  51. pulumi_gcp/gkebackup/restore_plan_iam_member.py +36 -12
  52. pulumi_gcp/gkebackup/restore_plan_iam_policy.py +36 -12
  53. pulumi_gcp/gkehub/_inputs.py +502 -2
  54. pulumi_gcp/gkehub/feature.py +34 -0
  55. pulumi_gcp/gkehub/feature_membership.py +177 -0
  56. pulumi_gcp/gkehub/membership.py +18 -6
  57. pulumi_gcp/gkehub/outputs.py +502 -2
  58. pulumi_gcp/gkeonprem/_inputs.py +21 -25
  59. pulumi_gcp/gkeonprem/outputs.py +34 -25
  60. pulumi_gcp/gkeonprem/v_mware_node_pool.py +34 -0
  61. pulumi_gcp/integrationconnectors/__init__.py +1 -0
  62. pulumi_gcp/integrationconnectors/endpoint_attachment.py +669 -0
  63. pulumi_gcp/kms/_inputs.py +42 -0
  64. pulumi_gcp/kms/crypto_key.py +36 -0
  65. pulumi_gcp/kms/get_kms_crypto_key.py +11 -1
  66. pulumi_gcp/kms/outputs.py +62 -0
  67. pulumi_gcp/logging/__init__.py +2 -0
  68. pulumi_gcp/logging/folder_settings.py +490 -0
  69. pulumi_gcp/logging/folder_sink.py +21 -21
  70. pulumi_gcp/logging/organization_settings.py +484 -0
  71. pulumi_gcp/logging/organization_sink.py +21 -21
  72. pulumi_gcp/logging/project_sink.py +7 -14
  73. pulumi_gcp/netapp/__init__.py +3 -0
  74. pulumi_gcp/netapp/active_directory.py +1413 -0
  75. pulumi_gcp/netapp/backup_vault.py +593 -0
  76. pulumi_gcp/netapp/kmsconfig.py +649 -0
  77. pulumi_gcp/orgpolicy/policy.py +28 -0
  78. pulumi_gcp/provider.py +20 -0
  79. pulumi_gcp/pubsub/subscription.py +29 -37
  80. pulumi_gcp/serviceaccount/account.py +47 -0
  81. pulumi_gcp/servicenetworking/connection.py +55 -1
  82. pulumi_gcp/sql/database_instance.py +2 -2
  83. pulumi_gcp/sql/ssl_cert.py +1 -1
  84. pulumi_gcp/sql/user.py +7 -7
  85. pulumi_gcp/storage/transfer_job.py +24 -5
  86. pulumi_gcp/vertex/__init__.py +3 -0
  87. pulumi_gcp/vertex/_inputs.py +339 -0
  88. pulumi_gcp/vertex/ai_feature_group.py +710 -0
  89. pulumi_gcp/vertex/ai_feature_online_store.py +962 -0
  90. pulumi_gcp/vertex/ai_feature_online_store_featureview.py +804 -0
  91. pulumi_gcp/vertex/outputs.py +406 -0
  92. pulumi_gcp/vmwareengine/__init__.py +2 -0
  93. pulumi_gcp/vmwareengine/_inputs.py +84 -0
  94. pulumi_gcp/vmwareengine/external_access_rule.py +947 -0
  95. pulumi_gcp/vmwareengine/get_external_access_rule.py +245 -0
  96. pulumi_gcp/vmwareengine/outputs.py +146 -0
  97. pulumi_gcp/workflows/workflow.py +7 -7
  98. {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/METADATA +1 -1
  99. {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/RECORD +101 -82
  100. {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/WHEEL +0 -0
  101. {pulumi_gcp-7.5.0a1704283083.dist-info → pulumi_gcp-7.6.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/kms/_inputs.py CHANGED
@@ -12,6 +12,7 @@ from .. import _utilities
12
12
  __all__ = [
13
13
  'CryptoKeyIAMBindingConditionArgs',
14
14
  'CryptoKeyIAMMemberConditionArgs',
15
+ 'CryptoKeyPrimaryArgs',
15
16
  'CryptoKeyVersionAttestationArgs',
16
17
  'CryptoKeyVersionAttestationCertChainsArgs',
17
18
  'CryptoKeyVersionAttestationExternalProtectionLevelOptionsArgs',
@@ -144,6 +145,47 @@ class CryptoKeyIAMMemberConditionArgs:
144
145
  pulumi.set(self, "description", value)
145
146
 
146
147
 
148
+ @pulumi.input_type
149
+ class CryptoKeyPrimaryArgs:
150
+ def __init__(__self__, *,
151
+ name: Optional[pulumi.Input[str]] = None,
152
+ state: Optional[pulumi.Input[str]] = None):
153
+ """
154
+ :param pulumi.Input[str] name: The resource name for the CryptoKey.
155
+ :param pulumi.Input[str] state: (Output)
156
+ The current state of the CryptoKeyVersion.
157
+ """
158
+ if name is not None:
159
+ pulumi.set(__self__, "name", name)
160
+ if state is not None:
161
+ pulumi.set(__self__, "state", state)
162
+
163
+ @property
164
+ @pulumi.getter
165
+ def name(self) -> Optional[pulumi.Input[str]]:
166
+ """
167
+ The resource name for the CryptoKey.
168
+ """
169
+ return pulumi.get(self, "name")
170
+
171
+ @name.setter
172
+ def name(self, value: Optional[pulumi.Input[str]]):
173
+ pulumi.set(self, "name", value)
174
+
175
+ @property
176
+ @pulumi.getter
177
+ def state(self) -> Optional[pulumi.Input[str]]:
178
+ """
179
+ (Output)
180
+ The current state of the CryptoKeyVersion.
181
+ """
182
+ return pulumi.get(self, "state")
183
+
184
+ @state.setter
185
+ def state(self, value: Optional[pulumi.Input[str]]):
186
+ pulumi.set(self, "state", value)
187
+
188
+
147
189
  @pulumi.input_type
148
190
  class CryptoKeyVersionAttestationArgs:
149
191
  def __init__(__self__, *,
@@ -205,6 +205,7 @@ class _CryptoKeyState:
205
205
  key_ring: Optional[pulumi.Input[str]] = None,
206
206
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
207
207
  name: Optional[pulumi.Input[str]] = None,
208
+ primaries: Optional[pulumi.Input[Sequence[pulumi.Input['CryptoKeyPrimaryArgs']]]] = None,
208
209
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
209
210
  purpose: Optional[pulumi.Input[str]] = None,
210
211
  rotation_period: Optional[pulumi.Input[str]] = None,
@@ -226,6 +227,9 @@ class _CryptoKeyState:
226
227
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
227
228
  Please refer to the field `effective_labels` for all of the labels present on the resource.
228
229
  :param pulumi.Input[str] name: The resource name for the CryptoKey.
230
+ :param pulumi.Input[Sequence[pulumi.Input['CryptoKeyPrimaryArgs']]] primaries: A copy of the primary CryptoKeyVersion that will be used by cryptoKeys.encrypt when this CryptoKey is given in EncryptRequest.name.
231
+ Keys with purpose ENCRYPT_DECRYPT may have a primary. For other keys, this field will be unset.
232
+ Structure is documented below.
229
233
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
230
234
  and default labels configured on the provider.
231
235
  :param pulumi.Input[str] purpose: The immutable purpose of this CryptoKey. See the
@@ -253,6 +257,8 @@ class _CryptoKeyState:
253
257
  pulumi.set(__self__, "labels", labels)
254
258
  if name is not None:
255
259
  pulumi.set(__self__, "name", name)
260
+ if primaries is not None:
261
+ pulumi.set(__self__, "primaries", primaries)
256
262
  if pulumi_labels is not None:
257
263
  pulumi.set(__self__, "pulumi_labels", pulumi_labels)
258
264
  if purpose is not None:
@@ -344,6 +350,20 @@ class _CryptoKeyState:
344
350
  def name(self, value: Optional[pulumi.Input[str]]):
345
351
  pulumi.set(self, "name", value)
346
352
 
353
+ @property
354
+ @pulumi.getter
355
+ def primaries(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CryptoKeyPrimaryArgs']]]]:
356
+ """
357
+ A copy of the primary CryptoKeyVersion that will be used by cryptoKeys.encrypt when this CryptoKey is given in EncryptRequest.name.
358
+ Keys with purpose ENCRYPT_DECRYPT may have a primary. For other keys, this field will be unset.
359
+ Structure is documented below.
360
+ """
361
+ return pulumi.get(self, "primaries")
362
+
363
+ @primaries.setter
364
+ def primaries(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CryptoKeyPrimaryArgs']]]]):
365
+ pulumi.set(self, "primaries", value)
366
+
347
367
  @property
348
368
  @pulumi.getter(name="pulumiLabels")
349
369
  def pulumi_labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
@@ -604,6 +624,7 @@ class CryptoKey(pulumi.CustomResource):
604
624
  __props__.__dict__["skip_initial_version_creation"] = skip_initial_version_creation
605
625
  __props__.__dict__["version_template"] = version_template
606
626
  __props__.__dict__["effective_labels"] = None
627
+ __props__.__dict__["primaries"] = None
607
628
  __props__.__dict__["pulumi_labels"] = None
608
629
  secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["effectiveLabels", "pulumiLabels"])
609
630
  opts = pulumi.ResourceOptions.merge(opts, secret_opts)
@@ -623,6 +644,7 @@ class CryptoKey(pulumi.CustomResource):
623
644
  key_ring: Optional[pulumi.Input[str]] = None,
624
645
  labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
625
646
  name: Optional[pulumi.Input[str]] = None,
647
+ primaries: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CryptoKeyPrimaryArgs']]]]] = None,
626
648
  pulumi_labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
627
649
  purpose: Optional[pulumi.Input[str]] = None,
628
650
  rotation_period: Optional[pulumi.Input[str]] = None,
@@ -649,6 +671,9 @@ class CryptoKey(pulumi.CustomResource):
649
671
  **Note**: This field is non-authoritative, and will only manage the labels present in your configuration.
650
672
  Please refer to the field `effective_labels` for all of the labels present on the resource.
651
673
  :param pulumi.Input[str] name: The resource name for the CryptoKey.
674
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CryptoKeyPrimaryArgs']]]] primaries: A copy of the primary CryptoKeyVersion that will be used by cryptoKeys.encrypt when this CryptoKey is given in EncryptRequest.name.
675
+ Keys with purpose ENCRYPT_DECRYPT may have a primary. For other keys, this field will be unset.
676
+ Structure is documented below.
652
677
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] pulumi_labels: The combination of labels configured directly on the resource
653
678
  and default labels configured on the provider.
654
679
  :param pulumi.Input[str] purpose: The immutable purpose of this CryptoKey. See the
@@ -674,6 +699,7 @@ class CryptoKey(pulumi.CustomResource):
674
699
  __props__.__dict__["key_ring"] = key_ring
675
700
  __props__.__dict__["labels"] = labels
676
701
  __props__.__dict__["name"] = name
702
+ __props__.__dict__["primaries"] = primaries
677
703
  __props__.__dict__["pulumi_labels"] = pulumi_labels
678
704
  __props__.__dict__["purpose"] = purpose
679
705
  __props__.__dict__["rotation_period"] = rotation_period
@@ -737,6 +763,16 @@ class CryptoKey(pulumi.CustomResource):
737
763
  """
738
764
  return pulumi.get(self, "name")
739
765
 
766
+ @property
767
+ @pulumi.getter
768
+ def primaries(self) -> pulumi.Output[Sequence['outputs.CryptoKeyPrimary']]:
769
+ """
770
+ A copy of the primary CryptoKeyVersion that will be used by cryptoKeys.encrypt when this CryptoKey is given in EncryptRequest.name.
771
+ Keys with purpose ENCRYPT_DECRYPT may have a primary. For other keys, this field will be unset.
772
+ Structure is documented below.
773
+ """
774
+ return pulumi.get(self, "primaries")
775
+
740
776
  @property
741
777
  @pulumi.getter(name="pulumiLabels")
742
778
  def pulumi_labels(self) -> pulumi.Output[Mapping[str, str]]:
@@ -22,7 +22,7 @@ class GetKMSCryptoKeyResult:
22
22
  """
23
23
  A collection of values returned by getKMSCryptoKey.
24
24
  """
25
- def __init__(__self__, destroy_scheduled_duration=None, effective_labels=None, id=None, import_only=None, key_ring=None, labels=None, name=None, pulumi_labels=None, purpose=None, rotation_period=None, skip_initial_version_creation=None, version_templates=None):
25
+ def __init__(__self__, destroy_scheduled_duration=None, effective_labels=None, id=None, import_only=None, key_ring=None, labels=None, name=None, primaries=None, pulumi_labels=None, purpose=None, rotation_period=None, skip_initial_version_creation=None, version_templates=None):
26
26
  if destroy_scheduled_duration and not isinstance(destroy_scheduled_duration, str):
27
27
  raise TypeError("Expected argument 'destroy_scheduled_duration' to be a str")
28
28
  pulumi.set(__self__, "destroy_scheduled_duration", destroy_scheduled_duration)
@@ -44,6 +44,9 @@ class GetKMSCryptoKeyResult:
44
44
  if name and not isinstance(name, str):
45
45
  raise TypeError("Expected argument 'name' to be a str")
46
46
  pulumi.set(__self__, "name", name)
47
+ if primaries and not isinstance(primaries, list):
48
+ raise TypeError("Expected argument 'primaries' to be a list")
49
+ pulumi.set(__self__, "primaries", primaries)
47
50
  if pulumi_labels and not isinstance(pulumi_labels, dict):
48
51
  raise TypeError("Expected argument 'pulumi_labels' to be a dict")
49
52
  pulumi.set(__self__, "pulumi_labels", pulumi_labels)
@@ -98,6 +101,11 @@ class GetKMSCryptoKeyResult:
98
101
  def name(self) -> str:
99
102
  return pulumi.get(self, "name")
100
103
 
104
+ @property
105
+ @pulumi.getter
106
+ def primaries(self) -> Sequence['outputs.GetKMSCryptoKeyPrimaryResult']:
107
+ return pulumi.get(self, "primaries")
108
+
101
109
  @property
102
110
  @pulumi.getter(name="pulumiLabels")
103
111
  def pulumi_labels(self) -> Mapping[str, str]:
@@ -145,6 +153,7 @@ class AwaitableGetKMSCryptoKeyResult(GetKMSCryptoKeyResult):
145
153
  key_ring=self.key_ring,
146
154
  labels=self.labels,
147
155
  name=self.name,
156
+ primaries=self.primaries,
148
157
  pulumi_labels=self.pulumi_labels,
149
158
  purpose=self.purpose,
150
159
  rotation_period=self.rotation_period,
@@ -195,6 +204,7 @@ def get_kms_crypto_key(key_ring: Optional[str] = None,
195
204
  key_ring=pulumi.get(__ret__, 'key_ring'),
196
205
  labels=pulumi.get(__ret__, 'labels'),
197
206
  name=pulumi.get(__ret__, 'name'),
207
+ primaries=pulumi.get(__ret__, 'primaries'),
198
208
  pulumi_labels=pulumi.get(__ret__, 'pulumi_labels'),
199
209
  purpose=pulumi.get(__ret__, 'purpose'),
200
210
  rotation_period=pulumi.get(__ret__, 'rotation_period'),
pulumi_gcp/kms/outputs.py CHANGED
@@ -13,6 +13,7 @@ from . import outputs
13
13
  __all__ = [
14
14
  'CryptoKeyIAMBindingCondition',
15
15
  'CryptoKeyIAMMemberCondition',
16
+ 'CryptoKeyPrimary',
16
17
  'CryptoKeyVersionAttestation',
17
18
  'CryptoKeyVersionAttestationCertChains',
18
19
  'CryptoKeyVersionAttestationExternalProtectionLevelOptions',
@@ -21,6 +22,7 @@ __all__ = [
21
22
  'KeyRingIAMMemberCondition',
22
23
  'KeyRingImportJobAttestation',
23
24
  'KeyRingImportJobPublicKey',
25
+ 'GetKMSCryptoKeyPrimaryResult',
24
26
  'GetKMSCryptoKeyVersionPublicKeyResult',
25
27
  'GetKMSCryptoKeyVersionTemplateResult',
26
28
  ]
@@ -123,6 +125,39 @@ class CryptoKeyIAMMemberCondition(dict):
123
125
  return pulumi.get(self, "description")
124
126
 
125
127
 
128
+ @pulumi.output_type
129
+ class CryptoKeyPrimary(dict):
130
+ def __init__(__self__, *,
131
+ name: Optional[str] = None,
132
+ state: Optional[str] = None):
133
+ """
134
+ :param str name: The resource name for the CryptoKey.
135
+ :param str state: (Output)
136
+ The current state of the CryptoKeyVersion.
137
+ """
138
+ if name is not None:
139
+ pulumi.set(__self__, "name", name)
140
+ if state is not None:
141
+ pulumi.set(__self__, "state", state)
142
+
143
+ @property
144
+ @pulumi.getter
145
+ def name(self) -> Optional[str]:
146
+ """
147
+ The resource name for the CryptoKey.
148
+ """
149
+ return pulumi.get(self, "name")
150
+
151
+ @property
152
+ @pulumi.getter
153
+ def state(self) -> Optional[str]:
154
+ """
155
+ (Output)
156
+ The current state of the CryptoKeyVersion.
157
+ """
158
+ return pulumi.get(self, "state")
159
+
160
+
126
161
  @pulumi.output_type
127
162
  class CryptoKeyVersionAttestation(dict):
128
163
  @staticmethod
@@ -526,6 +561,33 @@ class KeyRingImportJobPublicKey(dict):
526
561
  return pulumi.get(self, "pem")
527
562
 
528
563
 
564
+ @pulumi.output_type
565
+ class GetKMSCryptoKeyPrimaryResult(dict):
566
+ def __init__(__self__, *,
567
+ name: str,
568
+ state: str):
569
+ """
570
+ :param str name: The CryptoKey's name.
571
+ A CryptoKey’s name belonging to the specified Google Cloud Platform KeyRing and match the regular expression `[a-zA-Z0-9_-]{1,63}`
572
+ """
573
+ pulumi.set(__self__, "name", name)
574
+ pulumi.set(__self__, "state", state)
575
+
576
+ @property
577
+ @pulumi.getter
578
+ def name(self) -> str:
579
+ """
580
+ The CryptoKey's name.
581
+ A CryptoKey’s name belonging to the specified Google Cloud Platform KeyRing and match the regular expression `[a-zA-Z0-9_-]{1,63}`
582
+ """
583
+ return pulumi.get(self, "name")
584
+
585
+ @property
586
+ @pulumi.getter
587
+ def state(self) -> str:
588
+ return pulumi.get(self, "state")
589
+
590
+
529
591
  @pulumi.output_type
530
592
  class GetKMSCryptoKeyVersionPublicKeyResult(dict):
531
593
  def __init__(__self__, *,
@@ -10,6 +10,7 @@ from .billing_account_exclusion import *
10
10
  from .billing_account_sink import *
11
11
  from .folder_bucket_config import *
12
12
  from .folder_exclusion import *
13
+ from .folder_settings import *
13
14
  from .folder_sink import *
14
15
  from .get_folder_settings import *
15
16
  from .get_organization_settings import *
@@ -21,6 +22,7 @@ from .log_view import *
21
22
  from .metric import *
22
23
  from .organization_bucket_config import *
23
24
  from .organization_exclusion import *
25
+ from .organization_settings import *
24
26
  from .organization_sink import *
25
27
  from .project_bucket_config import *
26
28
  from .project_exclusion import *