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
@@ -10,6 +10,11 @@ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
10
  from .. import _utilities
11
11
 
12
12
  __all__ = [
13
+ 'AutomationRuleArgs',
14
+ 'AutomationRuleAdvanceRolloutRuleArgs',
15
+ 'AutomationRulePromoteReleaseRuleArgs',
16
+ 'AutomationSelectorArgs',
17
+ 'AutomationSelectorTargetArgs',
13
18
  'DeliveryPipelineConditionArgs',
14
19
  'DeliveryPipelineConditionPipelineReadyConditionArgs',
15
20
  'DeliveryPipelineConditionTargetsPresentConditionArgs',
@@ -41,6 +46,240 @@ __all__ = [
41
46
  'TargetRunArgs',
42
47
  ]
43
48
 
49
+ @pulumi.input_type
50
+ class AutomationRuleArgs:
51
+ def __init__(__self__, *,
52
+ advance_rollout_rule: Optional[pulumi.Input['AutomationRuleAdvanceRolloutRuleArgs']] = None,
53
+ promote_release_rule: Optional[pulumi.Input['AutomationRulePromoteReleaseRuleArgs']] = None):
54
+ """
55
+ :param pulumi.Input['AutomationRuleAdvanceRolloutRuleArgs'] advance_rollout_rule: Optional. The `AdvanceRolloutRule` will automatically advance a successful Rollout.
56
+ Structure is documented below.
57
+ :param pulumi.Input['AutomationRulePromoteReleaseRuleArgs'] promote_release_rule: Optional. `PromoteReleaseRule` will automatically promote a release from the current target to a specified target.
58
+ Structure is documented below.
59
+ """
60
+ if advance_rollout_rule is not None:
61
+ pulumi.set(__self__, "advance_rollout_rule", advance_rollout_rule)
62
+ if promote_release_rule is not None:
63
+ pulumi.set(__self__, "promote_release_rule", promote_release_rule)
64
+
65
+ @property
66
+ @pulumi.getter(name="advanceRolloutRule")
67
+ def advance_rollout_rule(self) -> Optional[pulumi.Input['AutomationRuleAdvanceRolloutRuleArgs']]:
68
+ """
69
+ Optional. The `AdvanceRolloutRule` will automatically advance a successful Rollout.
70
+ Structure is documented below.
71
+ """
72
+ return pulumi.get(self, "advance_rollout_rule")
73
+
74
+ @advance_rollout_rule.setter
75
+ def advance_rollout_rule(self, value: Optional[pulumi.Input['AutomationRuleAdvanceRolloutRuleArgs']]):
76
+ pulumi.set(self, "advance_rollout_rule", value)
77
+
78
+ @property
79
+ @pulumi.getter(name="promoteReleaseRule")
80
+ def promote_release_rule(self) -> Optional[pulumi.Input['AutomationRulePromoteReleaseRuleArgs']]:
81
+ """
82
+ Optional. `PromoteReleaseRule` will automatically promote a release from the current target to a specified target.
83
+ Structure is documented below.
84
+ """
85
+ return pulumi.get(self, "promote_release_rule")
86
+
87
+ @promote_release_rule.setter
88
+ def promote_release_rule(self, value: Optional[pulumi.Input['AutomationRulePromoteReleaseRuleArgs']]):
89
+ pulumi.set(self, "promote_release_rule", value)
90
+
91
+
92
+ @pulumi.input_type
93
+ class AutomationRuleAdvanceRolloutRuleArgs:
94
+ def __init__(__self__, *,
95
+ id: pulumi.Input[str],
96
+ source_phases: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
97
+ wait: Optional[pulumi.Input[str]] = None):
98
+ """
99
+ :param pulumi.Input[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}`.
100
+ :param pulumi.Input[Sequence[pulumi.Input[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?$`.
101
+
102
+ - - -
103
+ :param pulumi.Input[str] wait: Optional. How long to wait after a rollout is finished.
104
+ """
105
+ pulumi.set(__self__, "id", id)
106
+ if source_phases is not None:
107
+ pulumi.set(__self__, "source_phases", source_phases)
108
+ if wait is not None:
109
+ pulumi.set(__self__, "wait", wait)
110
+
111
+ @property
112
+ @pulumi.getter
113
+ def id(self) -> pulumi.Input[str]:
114
+ """
115
+ 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}`.
116
+ """
117
+ return pulumi.get(self, "id")
118
+
119
+ @id.setter
120
+ def id(self, value: pulumi.Input[str]):
121
+ pulumi.set(self, "id", value)
122
+
123
+ @property
124
+ @pulumi.getter(name="sourcePhases")
125
+ def source_phases(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
126
+ """
127
+ 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?$`.
128
+
129
+ - - -
130
+ """
131
+ return pulumi.get(self, "source_phases")
132
+
133
+ @source_phases.setter
134
+ def source_phases(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
135
+ pulumi.set(self, "source_phases", value)
136
+
137
+ @property
138
+ @pulumi.getter
139
+ def wait(self) -> Optional[pulumi.Input[str]]:
140
+ """
141
+ Optional. How long to wait after a rollout is finished.
142
+ """
143
+ return pulumi.get(self, "wait")
144
+
145
+ @wait.setter
146
+ def wait(self, value: Optional[pulumi.Input[str]]):
147
+ pulumi.set(self, "wait", value)
148
+
149
+
150
+ @pulumi.input_type
151
+ class AutomationRulePromoteReleaseRuleArgs:
152
+ def __init__(__self__, *,
153
+ id: pulumi.Input[str],
154
+ destination_phase: Optional[pulumi.Input[str]] = None,
155
+ destination_target_id: Optional[pulumi.Input[str]] = None,
156
+ wait: Optional[pulumi.Input[str]] = None):
157
+ """
158
+ :param pulumi.Input[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}`.
159
+ :param pulumi.Input[str] destination_phase: Optional. The starting phase of the rollout created by this operation. Default to the first phase.
160
+ :param pulumi.Input[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.
161
+ :param pulumi.Input[str] wait: Optional. How long the release need to be paused until being promoted to the next target.
162
+ """
163
+ pulumi.set(__self__, "id", id)
164
+ if destination_phase is not None:
165
+ pulumi.set(__self__, "destination_phase", destination_phase)
166
+ if destination_target_id is not None:
167
+ pulumi.set(__self__, "destination_target_id", destination_target_id)
168
+ if wait is not None:
169
+ pulumi.set(__self__, "wait", wait)
170
+
171
+ @property
172
+ @pulumi.getter
173
+ def id(self) -> pulumi.Input[str]:
174
+ """
175
+ 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}`.
176
+ """
177
+ return pulumi.get(self, "id")
178
+
179
+ @id.setter
180
+ def id(self, value: pulumi.Input[str]):
181
+ pulumi.set(self, "id", value)
182
+
183
+ @property
184
+ @pulumi.getter(name="destinationPhase")
185
+ def destination_phase(self) -> Optional[pulumi.Input[str]]:
186
+ """
187
+ Optional. The starting phase of the rollout created by this operation. Default to the first phase.
188
+ """
189
+ return pulumi.get(self, "destination_phase")
190
+
191
+ @destination_phase.setter
192
+ def destination_phase(self, value: Optional[pulumi.Input[str]]):
193
+ pulumi.set(self, "destination_phase", value)
194
+
195
+ @property
196
+ @pulumi.getter(name="destinationTargetId")
197
+ def destination_target_id(self) -> Optional[pulumi.Input[str]]:
198
+ """
199
+ 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.
200
+ """
201
+ return pulumi.get(self, "destination_target_id")
202
+
203
+ @destination_target_id.setter
204
+ def destination_target_id(self, value: Optional[pulumi.Input[str]]):
205
+ pulumi.set(self, "destination_target_id", value)
206
+
207
+ @property
208
+ @pulumi.getter
209
+ def wait(self) -> Optional[pulumi.Input[str]]:
210
+ """
211
+ Optional. How long the release need to be paused until being promoted to the next target.
212
+ """
213
+ return pulumi.get(self, "wait")
214
+
215
+ @wait.setter
216
+ def wait(self, value: Optional[pulumi.Input[str]]):
217
+ pulumi.set(self, "wait", value)
218
+
219
+
220
+ @pulumi.input_type
221
+ class AutomationSelectorArgs:
222
+ def __init__(__self__, *,
223
+ targets: pulumi.Input[Sequence[pulumi.Input['AutomationSelectorTargetArgs']]]):
224
+ """
225
+ :param pulumi.Input[Sequence[pulumi.Input['AutomationSelectorTargetArgs']]] targets: Contains attributes about a target.
226
+ Structure is documented below.
227
+ """
228
+ pulumi.set(__self__, "targets", targets)
229
+
230
+ @property
231
+ @pulumi.getter
232
+ def targets(self) -> pulumi.Input[Sequence[pulumi.Input['AutomationSelectorTargetArgs']]]:
233
+ """
234
+ Contains attributes about a target.
235
+ Structure is documented below.
236
+ """
237
+ return pulumi.get(self, "targets")
238
+
239
+ @targets.setter
240
+ def targets(self, value: pulumi.Input[Sequence[pulumi.Input['AutomationSelectorTargetArgs']]]):
241
+ pulumi.set(self, "targets", value)
242
+
243
+
244
+ @pulumi.input_type
245
+ class AutomationSelectorTargetArgs:
246
+ def __init__(__self__, *,
247
+ id: Optional[pulumi.Input[str]] = None,
248
+ labels: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
249
+ """
250
+ :param pulumi.Input[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.
251
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] labels: Target labels.
252
+ """
253
+ if id is not None:
254
+ pulumi.set(__self__, "id", id)
255
+ if labels is not None:
256
+ pulumi.set(__self__, "labels", labels)
257
+
258
+ @property
259
+ @pulumi.getter
260
+ def id(self) -> Optional[pulumi.Input[str]]:
261
+ """
262
+ 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.
263
+ """
264
+ return pulumi.get(self, "id")
265
+
266
+ @id.setter
267
+ def id(self, value: Optional[pulumi.Input[str]]):
268
+ pulumi.set(self, "id", value)
269
+
270
+ @property
271
+ @pulumi.getter
272
+ def labels(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
273
+ """
274
+ Target labels.
275
+ """
276
+ return pulumi.get(self, "labels")
277
+
278
+ @labels.setter
279
+ def labels(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
280
+ pulumi.set(self, "labels", value)
281
+
282
+
44
283
  @pulumi.input_type
45
284
  class DeliveryPipelineConditionArgs:
46
285
  def __init__(__self__, *,