pulumi-gcp 7.5.0a1704347630__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.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/METADATA +1 -1
  99. {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/RECORD +101 -82
  100. {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/WHEEL +0 -0
  101. {pulumi_gcp-7.5.0a1704347630.dist-info → pulumi_gcp-7.6.0.dist-info}/top_level.txt +0 -0
@@ -11,6 +11,11 @@ from .. import _utilities
11
11
  from . import outputs
12
12
 
13
13
  __all__ = [
14
+ 'AutomationRule',
15
+ 'AutomationRuleAdvanceRolloutRule',
16
+ 'AutomationRulePromoteReleaseRule',
17
+ 'AutomationSelector',
18
+ 'AutomationSelectorTarget',
14
19
  'DeliveryPipelineCondition',
15
20
  'DeliveryPipelineConditionPipelineReadyCondition',
16
21
  'DeliveryPipelineConditionTargetsPresentCondition',
@@ -42,6 +47,247 @@ __all__ = [
42
47
  'TargetRun',
43
48
  ]
44
49
 
50
+ @pulumi.output_type
51
+ class AutomationRule(dict):
52
+ @staticmethod
53
+ def __key_warning(key: str):
54
+ suggest = None
55
+ if key == "advanceRolloutRule":
56
+ suggest = "advance_rollout_rule"
57
+ elif key == "promoteReleaseRule":
58
+ suggest = "promote_release_rule"
59
+
60
+ if suggest:
61
+ pulumi.log.warn(f"Key '{key}' not found in AutomationRule. Access the value via the '{suggest}' property getter instead.")
62
+
63
+ def __getitem__(self, key: str) -> Any:
64
+ AutomationRule.__key_warning(key)
65
+ return super().__getitem__(key)
66
+
67
+ def get(self, key: str, default = None) -> Any:
68
+ AutomationRule.__key_warning(key)
69
+ return super().get(key, default)
70
+
71
+ def __init__(__self__, *,
72
+ advance_rollout_rule: Optional['outputs.AutomationRuleAdvanceRolloutRule'] = None,
73
+ promote_release_rule: Optional['outputs.AutomationRulePromoteReleaseRule'] = None):
74
+ """
75
+ :param 'AutomationRuleAdvanceRolloutRuleArgs' advance_rollout_rule: Optional. The `AdvanceRolloutRule` will automatically advance a successful Rollout.
76
+ Structure is documented below.
77
+ :param 'AutomationRulePromoteReleaseRuleArgs' promote_release_rule: Optional. `PromoteReleaseRule` will automatically promote a release from the current target to a specified target.
78
+ Structure is documented below.
79
+ """
80
+ if advance_rollout_rule is not None:
81
+ pulumi.set(__self__, "advance_rollout_rule", advance_rollout_rule)
82
+ if promote_release_rule is not None:
83
+ pulumi.set(__self__, "promote_release_rule", promote_release_rule)
84
+
85
+ @property
86
+ @pulumi.getter(name="advanceRolloutRule")
87
+ def advance_rollout_rule(self) -> Optional['outputs.AutomationRuleAdvanceRolloutRule']:
88
+ """
89
+ Optional. The `AdvanceRolloutRule` will automatically advance a successful Rollout.
90
+ Structure is documented below.
91
+ """
92
+ return pulumi.get(self, "advance_rollout_rule")
93
+
94
+ @property
95
+ @pulumi.getter(name="promoteReleaseRule")
96
+ def promote_release_rule(self) -> Optional['outputs.AutomationRulePromoteReleaseRule']:
97
+ """
98
+ Optional. `PromoteReleaseRule` will automatically promote a release from the current target to a specified target.
99
+ Structure is documented below.
100
+ """
101
+ return pulumi.get(self, "promote_release_rule")
102
+
103
+
104
+ @pulumi.output_type
105
+ class AutomationRuleAdvanceRolloutRule(dict):
106
+ @staticmethod
107
+ def __key_warning(key: str):
108
+ suggest = None
109
+ if key == "sourcePhases":
110
+ suggest = "source_phases"
111
+
112
+ if suggest:
113
+ pulumi.log.warn(f"Key '{key}' not found in AutomationRuleAdvanceRolloutRule. Access the value via the '{suggest}' property getter instead.")
114
+
115
+ def __getitem__(self, key: str) -> Any:
116
+ AutomationRuleAdvanceRolloutRule.__key_warning(key)
117
+ return super().__getitem__(key)
118
+
119
+ def get(self, key: str, default = None) -> Any:
120
+ AutomationRuleAdvanceRolloutRule.__key_warning(key)
121
+ return super().get(key, default)
122
+
123
+ def __init__(__self__, *,
124
+ id: str,
125
+ source_phases: Optional[Sequence[str]] = None,
126
+ wait: Optional[str] = None):
127
+ """
128
+ :param str id: Required. ID of the rule. This id must be unique in the `Automation` resource to which this rule belongs. The format is `a-z{0,62}`.
129
+ :param Sequence[str] source_phases: Optional. Proceeds only after phase name matched any one in the list. This value must consist of lower-case letters, numbers, and hyphens, start with a letter and end with a letter or a number, and have a max length of 63 characters. In other words, it must match the following regex: `^a-z?$`.
130
+
131
+ - - -
132
+ :param str wait: Optional. How long to wait after a rollout is finished.
133
+ """
134
+ pulumi.set(__self__, "id", id)
135
+ if source_phases is not None:
136
+ pulumi.set(__self__, "source_phases", source_phases)
137
+ if wait is not None:
138
+ pulumi.set(__self__, "wait", wait)
139
+
140
+ @property
141
+ @pulumi.getter
142
+ def id(self) -> str:
143
+ """
144
+ Required. ID of the rule. This id must be unique in the `Automation` resource to which this rule belongs. The format is `a-z{0,62}`.
145
+ """
146
+ return pulumi.get(self, "id")
147
+
148
+ @property
149
+ @pulumi.getter(name="sourcePhases")
150
+ def source_phases(self) -> Optional[Sequence[str]]:
151
+ """
152
+ Optional. Proceeds only after phase name matched any one in the list. This value must consist of lower-case letters, numbers, and hyphens, start with a letter and end with a letter or a number, and have a max length of 63 characters. In other words, it must match the following regex: `^a-z?$`.
153
+
154
+ - - -
155
+ """
156
+ return pulumi.get(self, "source_phases")
157
+
158
+ @property
159
+ @pulumi.getter
160
+ def wait(self) -> Optional[str]:
161
+ """
162
+ Optional. How long to wait after a rollout is finished.
163
+ """
164
+ return pulumi.get(self, "wait")
165
+
166
+
167
+ @pulumi.output_type
168
+ class AutomationRulePromoteReleaseRule(dict):
169
+ @staticmethod
170
+ def __key_warning(key: str):
171
+ suggest = None
172
+ if key == "destinationPhase":
173
+ suggest = "destination_phase"
174
+ elif key == "destinationTargetId":
175
+ suggest = "destination_target_id"
176
+
177
+ if suggest:
178
+ pulumi.log.warn(f"Key '{key}' not found in AutomationRulePromoteReleaseRule. Access the value via the '{suggest}' property getter instead.")
179
+
180
+ def __getitem__(self, key: str) -> Any:
181
+ AutomationRulePromoteReleaseRule.__key_warning(key)
182
+ return super().__getitem__(key)
183
+
184
+ def get(self, key: str, default = None) -> Any:
185
+ AutomationRulePromoteReleaseRule.__key_warning(key)
186
+ return super().get(key, default)
187
+
188
+ def __init__(__self__, *,
189
+ id: str,
190
+ destination_phase: Optional[str] = None,
191
+ destination_target_id: Optional[str] = None,
192
+ wait: Optional[str] = None):
193
+ """
194
+ :param str id: Required. ID of the rule. This id must be unique in the `Automation` resource to which this rule belongs. The format is `a-z{0,62}`.
195
+ :param str destination_phase: Optional. The starting phase of the rollout created by this operation. Default to the first phase.
196
+ :param str destination_target_id: Optional. The ID of the stage in the pipeline to which this `Release` is deploying. If unspecified, default it to the next stage in the promotion flow. The value of this field could be one of the following: * The last segment of a target name. It only needs the ID to determine if the target is one of the stages in the promotion sequence defined in the pipeline. * "@next", the next target in the promotion sequence.
197
+ :param str wait: Optional. How long the release need to be paused until being promoted to the next target.
198
+ """
199
+ pulumi.set(__self__, "id", id)
200
+ if destination_phase is not None:
201
+ pulumi.set(__self__, "destination_phase", destination_phase)
202
+ if destination_target_id is not None:
203
+ pulumi.set(__self__, "destination_target_id", destination_target_id)
204
+ if wait is not None:
205
+ pulumi.set(__self__, "wait", wait)
206
+
207
+ @property
208
+ @pulumi.getter
209
+ def id(self) -> str:
210
+ """
211
+ Required. ID of the rule. This id must be unique in the `Automation` resource to which this rule belongs. The format is `a-z{0,62}`.
212
+ """
213
+ return pulumi.get(self, "id")
214
+
215
+ @property
216
+ @pulumi.getter(name="destinationPhase")
217
+ def destination_phase(self) -> Optional[str]:
218
+ """
219
+ Optional. The starting phase of the rollout created by this operation. Default to the first phase.
220
+ """
221
+ return pulumi.get(self, "destination_phase")
222
+
223
+ @property
224
+ @pulumi.getter(name="destinationTargetId")
225
+ def destination_target_id(self) -> Optional[str]:
226
+ """
227
+ Optional. The ID of the stage in the pipeline to which this `Release` is deploying. If unspecified, default it to the next stage in the promotion flow. The value of this field could be one of the following: * The last segment of a target name. It only needs the ID to determine if the target is one of the stages in the promotion sequence defined in the pipeline. * "@next", the next target in the promotion sequence.
228
+ """
229
+ return pulumi.get(self, "destination_target_id")
230
+
231
+ @property
232
+ @pulumi.getter
233
+ def wait(self) -> Optional[str]:
234
+ """
235
+ Optional. How long the release need to be paused until being promoted to the next target.
236
+ """
237
+ return pulumi.get(self, "wait")
238
+
239
+
240
+ @pulumi.output_type
241
+ class AutomationSelector(dict):
242
+ def __init__(__self__, *,
243
+ targets: Sequence['outputs.AutomationSelectorTarget']):
244
+ """
245
+ :param Sequence['AutomationSelectorTargetArgs'] targets: Contains attributes about a target.
246
+ Structure is documented below.
247
+ """
248
+ pulumi.set(__self__, "targets", targets)
249
+
250
+ @property
251
+ @pulumi.getter
252
+ def targets(self) -> Sequence['outputs.AutomationSelectorTarget']:
253
+ """
254
+ Contains attributes about a target.
255
+ Structure is documented below.
256
+ """
257
+ return pulumi.get(self, "targets")
258
+
259
+
260
+ @pulumi.output_type
261
+ class AutomationSelectorTarget(dict):
262
+ def __init__(__self__, *,
263
+ id: Optional[str] = None,
264
+ labels: Optional[Mapping[str, str]] = None):
265
+ """
266
+ :param str id: ID of the `Target`. The value of this field could be one of the following: * The last segment of a target name. It only needs the ID to determine which target is being referred to * "*", all targets in a location.
267
+ :param Mapping[str, str] labels: Target labels.
268
+ """
269
+ if id is not None:
270
+ pulumi.set(__self__, "id", id)
271
+ if labels is not None:
272
+ pulumi.set(__self__, "labels", labels)
273
+
274
+ @property
275
+ @pulumi.getter
276
+ def id(self) -> Optional[str]:
277
+ """
278
+ ID of the `Target`. The value of this field could be one of the following: * The last segment of a target name. It only needs the ID to determine which target is being referred to * "*", all targets in a location.
279
+ """
280
+ return pulumi.get(self, "id")
281
+
282
+ @property
283
+ @pulumi.getter
284
+ def labels(self) -> Optional[Mapping[str, str]]:
285
+ """
286
+ Target labels.
287
+ """
288
+ return pulumi.get(self, "labels")
289
+
290
+
45
291
  @pulumi.output_type
46
292
  class DeliveryPipelineCondition(dict):
47
293
  @staticmethod
@@ -0,0 +1,10 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ from .. import _utilities
6
+ import typing
7
+ # Export this package's modules as members:
8
+ from .registration import *
9
+ from ._inputs import *
10
+ from . import outputs