pulumi-gcp 8.34.0a1749538186__py3-none-any.whl → 8.34.0a1749648575__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.
- pulumi_gcp/__init__.py +32 -0
- pulumi_gcp/alloydb/cluster.py +16 -64
- pulumi_gcp/apigee/_inputs.py +89 -0
- pulumi_gcp/apigee/environment.py +68 -2
- pulumi_gcp/apigee/outputs.py +88 -0
- pulumi_gcp/apihub/__init__.py +1 -0
- pulumi_gcp/apihub/_inputs.py +184 -0
- pulumi_gcp/apihub/curation.py +812 -0
- pulumi_gcp/apihub/outputs.py +165 -0
- pulumi_gcp/beyondcorp/get_security_gateway.py +12 -1
- pulumi_gcp/beyondcorp/security_gateway.py +28 -0
- pulumi_gcp/cloudrunv2/_inputs.py +463 -0
- pulumi_gcp/cloudrunv2/outputs.py +581 -1
- pulumi_gcp/cloudrunv2/worker_pool.py +0 -8
- pulumi_gcp/colab/runtime_template.py +4 -26
- pulumi_gcp/compute/__init__.py +3 -0
- pulumi_gcp/compute/_inputs.py +1551 -0
- pulumi_gcp/compute/interconnect.py +32 -0
- pulumi_gcp/compute/interconnect_attachment.py +28 -0
- pulumi_gcp/compute/interconnect_attachment_group.py +636 -0
- pulumi_gcp/compute/interconnect_group.py +586 -0
- pulumi_gcp/compute/outputs.py +1087 -0
- pulumi_gcp/compute/snapshot_settings.py +285 -0
- pulumi_gcp/container/_inputs.py +51 -18
- pulumi_gcp/container/cluster.py +47 -0
- pulumi_gcp/container/get_cluster.py +12 -1
- pulumi_gcp/container/outputs.py +71 -16
- pulumi_gcp/dataplex/_inputs.py +20 -0
- pulumi_gcp/dataplex/datascan.py +2 -0
- pulumi_gcp/dataplex/outputs.py +15 -1
- pulumi_gcp/eventarc/_inputs.py +12 -5
- pulumi_gcp/eventarc/outputs.py +8 -3
- pulumi_gcp/eventarc/pipeline.py +0 -12
- pulumi_gcp/gemini/data_sharing_with_google_setting.py +58 -9
- pulumi_gcp/gemini/data_sharing_with_google_setting_binding.py +11 -16
- pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +51 -2
- pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +11 -16
- pulumi_gcp/gkehub/_inputs.py +84 -7
- pulumi_gcp/gkehub/feature.py +38 -0
- pulumi_gcp/gkehub/outputs.py +102 -7
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +54 -2
- pulumi_gcp/gkeonprem/_inputs.py +54 -0
- pulumi_gcp/gkeonprem/outputs.py +49 -0
- pulumi_gcp/gkeonprem/vmware_admin_cluster.py +71 -0
- pulumi_gcp/iam/workload_identity_pool_namespace.py +4 -4
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/managedkafka/connect_cluster.py +4 -4
- pulumi_gcp/managedkafka/connector.py +4 -4
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/networksecurity/backend_authentication_config.py +64 -0
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/pubsub/_inputs.py +392 -0
- pulumi_gcp/pubsub/get_subscription.py +12 -1
- pulumi_gcp/pubsub/get_topic.py +12 -1
- pulumi_gcp/pubsub/outputs.py +548 -0
- pulumi_gcp/pubsub/subscription.py +67 -6
- pulumi_gcp/pubsub/topic.py +61 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- {pulumi_gcp-8.34.0a1749538186.dist-info → pulumi_gcp-8.34.0a1749648575.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.34.0a1749538186.dist-info → pulumi_gcp-8.34.0a1749648575.dist-info}/RECORD +65 -61
- {pulumi_gcp-8.34.0a1749538186.dist-info → pulumi_gcp-8.34.0a1749648575.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.34.0a1749538186.dist-info → pulumi_gcp-8.34.0a1749648575.dist-info}/top_level.txt +0 -0
pulumi_gcp/apihub/_inputs.py
CHANGED
@@ -18,6 +18,12 @@ from .. import _utilities
|
|
18
18
|
__all__ = [
|
19
19
|
'ApiHubInstanceConfigArgs',
|
20
20
|
'ApiHubInstanceConfigArgsDict',
|
21
|
+
'CurationEndpointArgs',
|
22
|
+
'CurationEndpointArgsDict',
|
23
|
+
'CurationEndpointApplicationIntegrationEndpointDetailsArgs',
|
24
|
+
'CurationEndpointApplicationIntegrationEndpointDetailsArgsDict',
|
25
|
+
'CurationPluginInstanceActionArgs',
|
26
|
+
'CurationPluginInstanceActionArgsDict',
|
21
27
|
]
|
22
28
|
|
23
29
|
MYPY = False
|
@@ -153,3 +159,181 @@ class ApiHubInstanceConfigArgs:
|
|
153
159
|
pulumi.set(self, "vertex_location", value)
|
154
160
|
|
155
161
|
|
162
|
+
if not MYPY:
|
163
|
+
class CurationEndpointArgsDict(TypedDict):
|
164
|
+
application_integration_endpoint_details: pulumi.Input['CurationEndpointApplicationIntegrationEndpointDetailsArgsDict']
|
165
|
+
"""
|
166
|
+
The details of the Application Integration endpoint to be triggered for
|
167
|
+
curation.
|
168
|
+
Structure is documented below.
|
169
|
+
"""
|
170
|
+
elif False:
|
171
|
+
CurationEndpointArgsDict: TypeAlias = Mapping[str, Any]
|
172
|
+
|
173
|
+
@pulumi.input_type
|
174
|
+
class CurationEndpointArgs:
|
175
|
+
def __init__(__self__, *,
|
176
|
+
application_integration_endpoint_details: pulumi.Input['CurationEndpointApplicationIntegrationEndpointDetailsArgs']):
|
177
|
+
"""
|
178
|
+
:param pulumi.Input['CurationEndpointApplicationIntegrationEndpointDetailsArgs'] application_integration_endpoint_details: The details of the Application Integration endpoint to be triggered for
|
179
|
+
curation.
|
180
|
+
Structure is documented below.
|
181
|
+
"""
|
182
|
+
pulumi.set(__self__, "application_integration_endpoint_details", application_integration_endpoint_details)
|
183
|
+
|
184
|
+
@property
|
185
|
+
@pulumi.getter(name="applicationIntegrationEndpointDetails")
|
186
|
+
def application_integration_endpoint_details(self) -> pulumi.Input['CurationEndpointApplicationIntegrationEndpointDetailsArgs']:
|
187
|
+
"""
|
188
|
+
The details of the Application Integration endpoint to be triggered for
|
189
|
+
curation.
|
190
|
+
Structure is documented below.
|
191
|
+
"""
|
192
|
+
return pulumi.get(self, "application_integration_endpoint_details")
|
193
|
+
|
194
|
+
@application_integration_endpoint_details.setter
|
195
|
+
def application_integration_endpoint_details(self, value: pulumi.Input['CurationEndpointApplicationIntegrationEndpointDetailsArgs']):
|
196
|
+
pulumi.set(self, "application_integration_endpoint_details", value)
|
197
|
+
|
198
|
+
|
199
|
+
if not MYPY:
|
200
|
+
class CurationEndpointApplicationIntegrationEndpointDetailsArgsDict(TypedDict):
|
201
|
+
trigger_id: pulumi.Input[builtins.str]
|
202
|
+
"""
|
203
|
+
The API trigger ID of the Application Integration workflow.
|
204
|
+
"""
|
205
|
+
uri: pulumi.Input[builtins.str]
|
206
|
+
"""
|
207
|
+
The endpoint URI should be a valid REST URI for triggering an Application
|
208
|
+
Integration.
|
209
|
+
Format:
|
210
|
+
`https://integrations.googleapis.com/v1/{name=projects/*/locations/*/integrations/*}:execute`
|
211
|
+
or
|
212
|
+
`https://{location}-integrations.googleapis.com/v1/{name=projects/*/locations/*/integrations/*}:execute`
|
213
|
+
|
214
|
+
- - -
|
215
|
+
"""
|
216
|
+
elif False:
|
217
|
+
CurationEndpointApplicationIntegrationEndpointDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
218
|
+
|
219
|
+
@pulumi.input_type
|
220
|
+
class CurationEndpointApplicationIntegrationEndpointDetailsArgs:
|
221
|
+
def __init__(__self__, *,
|
222
|
+
trigger_id: pulumi.Input[builtins.str],
|
223
|
+
uri: pulumi.Input[builtins.str]):
|
224
|
+
"""
|
225
|
+
:param pulumi.Input[builtins.str] trigger_id: The API trigger ID of the Application Integration workflow.
|
226
|
+
:param pulumi.Input[builtins.str] uri: The endpoint URI should be a valid REST URI for triggering an Application
|
227
|
+
Integration.
|
228
|
+
Format:
|
229
|
+
`https://integrations.googleapis.com/v1/{name=projects/*/locations/*/integrations/*}:execute`
|
230
|
+
or
|
231
|
+
`https://{location}-integrations.googleapis.com/v1/{name=projects/*/locations/*/integrations/*}:execute`
|
232
|
+
|
233
|
+
- - -
|
234
|
+
"""
|
235
|
+
pulumi.set(__self__, "trigger_id", trigger_id)
|
236
|
+
pulumi.set(__self__, "uri", uri)
|
237
|
+
|
238
|
+
@property
|
239
|
+
@pulumi.getter(name="triggerId")
|
240
|
+
def trigger_id(self) -> pulumi.Input[builtins.str]:
|
241
|
+
"""
|
242
|
+
The API trigger ID of the Application Integration workflow.
|
243
|
+
"""
|
244
|
+
return pulumi.get(self, "trigger_id")
|
245
|
+
|
246
|
+
@trigger_id.setter
|
247
|
+
def trigger_id(self, value: pulumi.Input[builtins.str]):
|
248
|
+
pulumi.set(self, "trigger_id", value)
|
249
|
+
|
250
|
+
@property
|
251
|
+
@pulumi.getter
|
252
|
+
def uri(self) -> pulumi.Input[builtins.str]:
|
253
|
+
"""
|
254
|
+
The endpoint URI should be a valid REST URI for triggering an Application
|
255
|
+
Integration.
|
256
|
+
Format:
|
257
|
+
`https://integrations.googleapis.com/v1/{name=projects/*/locations/*/integrations/*}:execute`
|
258
|
+
or
|
259
|
+
`https://{location}-integrations.googleapis.com/v1/{name=projects/*/locations/*/integrations/*}:execute`
|
260
|
+
|
261
|
+
- - -
|
262
|
+
"""
|
263
|
+
return pulumi.get(self, "uri")
|
264
|
+
|
265
|
+
@uri.setter
|
266
|
+
def uri(self, value: pulumi.Input[builtins.str]):
|
267
|
+
pulumi.set(self, "uri", value)
|
268
|
+
|
269
|
+
|
270
|
+
if not MYPY:
|
271
|
+
class CurationPluginInstanceActionArgsDict(TypedDict):
|
272
|
+
action_id: NotRequired[pulumi.Input[builtins.str]]
|
273
|
+
"""
|
274
|
+
(Output)
|
275
|
+
The action ID that is using the curation.
|
276
|
+
This should map to one of the action IDs specified
|
277
|
+
in action configs in the plugin.
|
278
|
+
"""
|
279
|
+
plugin_instance: NotRequired[pulumi.Input[builtins.str]]
|
280
|
+
"""
|
281
|
+
(Output)
|
282
|
+
Plugin instance that is using the curation.
|
283
|
+
Format is
|
284
|
+
`projects/{project}/locations/{locati on}/plugins/{plugin}/instances/{instance}`
|
285
|
+
"""
|
286
|
+
elif False:
|
287
|
+
CurationPluginInstanceActionArgsDict: TypeAlias = Mapping[str, Any]
|
288
|
+
|
289
|
+
@pulumi.input_type
|
290
|
+
class CurationPluginInstanceActionArgs:
|
291
|
+
def __init__(__self__, *,
|
292
|
+
action_id: Optional[pulumi.Input[builtins.str]] = None,
|
293
|
+
plugin_instance: Optional[pulumi.Input[builtins.str]] = None):
|
294
|
+
"""
|
295
|
+
:param pulumi.Input[builtins.str] action_id: (Output)
|
296
|
+
The action ID that is using the curation.
|
297
|
+
This should map to one of the action IDs specified
|
298
|
+
in action configs in the plugin.
|
299
|
+
:param pulumi.Input[builtins.str] plugin_instance: (Output)
|
300
|
+
Plugin instance that is using the curation.
|
301
|
+
Format is
|
302
|
+
`projects/{project}/locations/{locati on}/plugins/{plugin}/instances/{instance}`
|
303
|
+
"""
|
304
|
+
if action_id is not None:
|
305
|
+
pulumi.set(__self__, "action_id", action_id)
|
306
|
+
if plugin_instance is not None:
|
307
|
+
pulumi.set(__self__, "plugin_instance", plugin_instance)
|
308
|
+
|
309
|
+
@property
|
310
|
+
@pulumi.getter(name="actionId")
|
311
|
+
def action_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
312
|
+
"""
|
313
|
+
(Output)
|
314
|
+
The action ID that is using the curation.
|
315
|
+
This should map to one of the action IDs specified
|
316
|
+
in action configs in the plugin.
|
317
|
+
"""
|
318
|
+
return pulumi.get(self, "action_id")
|
319
|
+
|
320
|
+
@action_id.setter
|
321
|
+
def action_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
322
|
+
pulumi.set(self, "action_id", value)
|
323
|
+
|
324
|
+
@property
|
325
|
+
@pulumi.getter(name="pluginInstance")
|
326
|
+
def plugin_instance(self) -> Optional[pulumi.Input[builtins.str]]:
|
327
|
+
"""
|
328
|
+
(Output)
|
329
|
+
Plugin instance that is using the curation.
|
330
|
+
Format is
|
331
|
+
`projects/{project}/locations/{locati on}/plugins/{plugin}/instances/{instance}`
|
332
|
+
"""
|
333
|
+
return pulumi.get(self, "plugin_instance")
|
334
|
+
|
335
|
+
@plugin_instance.setter
|
336
|
+
def plugin_instance(self, value: Optional[pulumi.Input[builtins.str]]):
|
337
|
+
pulumi.set(self, "plugin_instance", value)
|
338
|
+
|
339
|
+
|