pulumi-gcp 8.36.0a1750439108__py3-none-any.whl → 8.36.0a1751060819__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 +35 -0
- pulumi_gcp/alloydb/_inputs.py +26 -0
- pulumi_gcp/alloydb/outputs.py +34 -1
- pulumi_gcp/apihub/__init__.py +1 -0
- pulumi_gcp/apihub/_inputs.py +983 -0
- pulumi_gcp/apihub/outputs.py +807 -0
- pulumi_gcp/apihub/plugin_instance.py +808 -0
- pulumi_gcp/bigquery/table.py +16 -12
- pulumi_gcp/bigqueryanalyticshub/_inputs.py +56 -6
- pulumi_gcp/bigqueryanalyticshub/data_exchange.py +73 -0
- pulumi_gcp/bigqueryanalyticshub/listing.py +201 -48
- pulumi_gcp/bigqueryanalyticshub/listing_subscription.py +28 -0
- pulumi_gcp/bigqueryanalyticshub/outputs.py +50 -4
- pulumi_gcp/bigtable/table.py +82 -0
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +64 -8
- pulumi_gcp/compute/_inputs.py +24 -12
- pulumi_gcp/compute/instance.py +2 -2
- pulumi_gcp/compute/instance_template.py +2 -2
- pulumi_gcp/compute/interconnect.py +43 -11
- pulumi_gcp/compute/node_template.py +21 -0
- pulumi_gcp/compute/outputs.py +16 -8
- pulumi_gcp/compute/service_attachment.py +76 -8
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/contactcenterinsights/__init__.py +9 -0
- pulumi_gcp/contactcenterinsights/view.py +526 -0
- pulumi_gcp/container/_inputs.py +72 -12
- pulumi_gcp/container/get_engine_versions.py +15 -1
- pulumi_gcp/container/outputs.py +73 -9
- pulumi_gcp/dataplex/_inputs.py +431 -6
- pulumi_gcp/dataplex/datascan.py +251 -0
- pulumi_gcp/dataplex/entry_type.py +2 -2
- pulumi_gcp/dataplex/glossary_category.py +8 -8
- pulumi_gcp/dataplex/glossary_term.py +8 -8
- pulumi_gcp/dataplex/outputs.py +353 -4
- pulumi_gcp/dataplex/task.py +16 -16
- pulumi_gcp/dataproc/__init__.py +1 -0
- pulumi_gcp/dataproc/_inputs.py +486 -0
- pulumi_gcp/dataproc/batch.py +10 -10
- pulumi_gcp/dataproc/outputs.py +407 -0
- pulumi_gcp/dataproc/session_template.py +1084 -0
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +48 -0
- pulumi_gcp/diagflow/cx_tool.py +2 -2
- pulumi_gcp/diagflow/encryption_spec.py +382 -0
- pulumi_gcp/diagflow/outputs.py +46 -0
- pulumi_gcp/firestore/field.py +6 -6
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +8 -8
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/lustre/get_instance.py +12 -1
- pulumi_gcp/lustre/instance.py +143 -86
- pulumi_gcp/managedkafka/connect_cluster.py +4 -4
- pulumi_gcp/managedkafka/connector.py +4 -4
- pulumi_gcp/networkconnectivity/spoke.py +14 -14
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/storage/bucket_object.py +56 -0
- pulumi_gcp/storage/get_bucket_object.py +12 -1
- pulumi_gcp/storage/get_bucket_object_content.py +12 -1
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- {pulumi_gcp-8.36.0a1750439108.dist-info → pulumi_gcp-8.36.0a1751060819.dist-info}/METADATA +2 -2
- {pulumi_gcp-8.36.0a1750439108.dist-info → pulumi_gcp-8.36.0a1751060819.dist-info}/RECORD +71 -66
- {pulumi_gcp-8.36.0a1750439108.dist-info → pulumi_gcp-8.36.0a1751060819.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.36.0a1750439108.dist-info → pulumi_gcp-8.36.0a1751060819.dist-info}/top_level.txt +0 -0
pulumi_gcp/apihub/_inputs.py
CHANGED
@@ -24,6 +24,32 @@ __all__ = [
|
|
24
24
|
'CurationEndpointApplicationIntegrationEndpointDetailsArgsDict',
|
25
25
|
'CurationPluginInstanceActionArgs',
|
26
26
|
'CurationPluginInstanceActionArgsDict',
|
27
|
+
'PluginInstanceActionArgs',
|
28
|
+
'PluginInstanceActionArgsDict',
|
29
|
+
'PluginInstanceActionCurationConfigArgs',
|
30
|
+
'PluginInstanceActionCurationConfigArgsDict',
|
31
|
+
'PluginInstanceActionCurationConfigCustomCurationArgs',
|
32
|
+
'PluginInstanceActionCurationConfigCustomCurationArgsDict',
|
33
|
+
'PluginInstanceActionHubInstanceActionArgs',
|
34
|
+
'PluginInstanceActionHubInstanceActionArgsDict',
|
35
|
+
'PluginInstanceActionHubInstanceActionLastExecutionArgs',
|
36
|
+
'PluginInstanceActionHubInstanceActionLastExecutionArgsDict',
|
37
|
+
'PluginInstanceAuthConfigArgs',
|
38
|
+
'PluginInstanceAuthConfigArgsDict',
|
39
|
+
'PluginInstanceAuthConfigApiKeyConfigArgs',
|
40
|
+
'PluginInstanceAuthConfigApiKeyConfigArgsDict',
|
41
|
+
'PluginInstanceAuthConfigApiKeyConfigApiKeyArgs',
|
42
|
+
'PluginInstanceAuthConfigApiKeyConfigApiKeyArgsDict',
|
43
|
+
'PluginInstanceAuthConfigGoogleServiceAccountConfigArgs',
|
44
|
+
'PluginInstanceAuthConfigGoogleServiceAccountConfigArgsDict',
|
45
|
+
'PluginInstanceAuthConfigOauth2ClientCredentialsConfigArgs',
|
46
|
+
'PluginInstanceAuthConfigOauth2ClientCredentialsConfigArgsDict',
|
47
|
+
'PluginInstanceAuthConfigOauth2ClientCredentialsConfigClientSecretArgs',
|
48
|
+
'PluginInstanceAuthConfigOauth2ClientCredentialsConfigClientSecretArgsDict',
|
49
|
+
'PluginInstanceAuthConfigUserPasswordConfigArgs',
|
50
|
+
'PluginInstanceAuthConfigUserPasswordConfigArgsDict',
|
51
|
+
'PluginInstanceAuthConfigUserPasswordConfigPasswordArgs',
|
52
|
+
'PluginInstanceAuthConfigUserPasswordConfigPasswordArgsDict',
|
27
53
|
]
|
28
54
|
|
29
55
|
MYPY = False
|
@@ -337,3 +363,960 @@ class CurationPluginInstanceActionArgs:
|
|
337
363
|
pulumi.set(self, "plugin_instance", value)
|
338
364
|
|
339
365
|
|
366
|
+
if not MYPY:
|
367
|
+
class PluginInstanceActionArgsDict(TypedDict):
|
368
|
+
action_id: pulumi.Input[builtins.str]
|
369
|
+
"""
|
370
|
+
This should map to one of the action id specified
|
371
|
+
in actions_config in the plugin.
|
372
|
+
"""
|
373
|
+
curation_config: NotRequired[pulumi.Input['PluginInstanceActionCurationConfigArgsDict']]
|
374
|
+
"""
|
375
|
+
The curation information for this plugin instance.
|
376
|
+
Structure is documented below.
|
377
|
+
"""
|
378
|
+
hub_instance_actions: NotRequired[pulumi.Input[Sequence[pulumi.Input['PluginInstanceActionHubInstanceActionArgsDict']]]]
|
379
|
+
"""
|
380
|
+
(Output)
|
381
|
+
The execution status for the plugin instance.
|
382
|
+
Structure is documented below.
|
383
|
+
"""
|
384
|
+
schedule_cron_expression: NotRequired[pulumi.Input[builtins.str]]
|
385
|
+
"""
|
386
|
+
The schedule for this plugin instance action. This can only be set if the
|
387
|
+
plugin supports API_HUB_SCHEDULE_TRIGGER mode for this action.
|
388
|
+
"""
|
389
|
+
schedule_time_zone: NotRequired[pulumi.Input[builtins.str]]
|
390
|
+
"""
|
391
|
+
The time zone for the schedule cron expression. If not provided, UTC will
|
392
|
+
be used.
|
393
|
+
|
394
|
+
|
395
|
+
<a name="nested_actions_actions_hub_instance_action"></a>The `hub_instance_action` block contains:
|
396
|
+
"""
|
397
|
+
state: NotRequired[pulumi.Input[builtins.str]]
|
398
|
+
"""
|
399
|
+
(Output)
|
400
|
+
The current state of the plugin action in the plugin instance.
|
401
|
+
Possible values:
|
402
|
+
STATE_UNSPECIFIED
|
403
|
+
ENABLED
|
404
|
+
DISABLED
|
405
|
+
ENABLING
|
406
|
+
DISABLING
|
407
|
+
ERROR
|
408
|
+
"""
|
409
|
+
elif False:
|
410
|
+
PluginInstanceActionArgsDict: TypeAlias = Mapping[str, Any]
|
411
|
+
|
412
|
+
@pulumi.input_type
|
413
|
+
class PluginInstanceActionArgs:
|
414
|
+
def __init__(__self__, *,
|
415
|
+
action_id: pulumi.Input[builtins.str],
|
416
|
+
curation_config: Optional[pulumi.Input['PluginInstanceActionCurationConfigArgs']] = None,
|
417
|
+
hub_instance_actions: Optional[pulumi.Input[Sequence[pulumi.Input['PluginInstanceActionHubInstanceActionArgs']]]] = None,
|
418
|
+
schedule_cron_expression: Optional[pulumi.Input[builtins.str]] = None,
|
419
|
+
schedule_time_zone: Optional[pulumi.Input[builtins.str]] = None,
|
420
|
+
state: Optional[pulumi.Input[builtins.str]] = None):
|
421
|
+
"""
|
422
|
+
:param pulumi.Input[builtins.str] action_id: This should map to one of the action id specified
|
423
|
+
in actions_config in the plugin.
|
424
|
+
:param pulumi.Input['PluginInstanceActionCurationConfigArgs'] curation_config: The curation information for this plugin instance.
|
425
|
+
Structure is documented below.
|
426
|
+
:param pulumi.Input[Sequence[pulumi.Input['PluginInstanceActionHubInstanceActionArgs']]] hub_instance_actions: (Output)
|
427
|
+
The execution status for the plugin instance.
|
428
|
+
Structure is documented below.
|
429
|
+
:param pulumi.Input[builtins.str] schedule_cron_expression: The schedule for this plugin instance action. This can only be set if the
|
430
|
+
plugin supports API_HUB_SCHEDULE_TRIGGER mode for this action.
|
431
|
+
:param pulumi.Input[builtins.str] schedule_time_zone: The time zone for the schedule cron expression. If not provided, UTC will
|
432
|
+
be used.
|
433
|
+
|
434
|
+
|
435
|
+
<a name="nested_actions_actions_hub_instance_action"></a>The `hub_instance_action` block contains:
|
436
|
+
:param pulumi.Input[builtins.str] state: (Output)
|
437
|
+
The current state of the plugin action in the plugin instance.
|
438
|
+
Possible values:
|
439
|
+
STATE_UNSPECIFIED
|
440
|
+
ENABLED
|
441
|
+
DISABLED
|
442
|
+
ENABLING
|
443
|
+
DISABLING
|
444
|
+
ERROR
|
445
|
+
"""
|
446
|
+
pulumi.set(__self__, "action_id", action_id)
|
447
|
+
if curation_config is not None:
|
448
|
+
pulumi.set(__self__, "curation_config", curation_config)
|
449
|
+
if hub_instance_actions is not None:
|
450
|
+
pulumi.set(__self__, "hub_instance_actions", hub_instance_actions)
|
451
|
+
if schedule_cron_expression is not None:
|
452
|
+
pulumi.set(__self__, "schedule_cron_expression", schedule_cron_expression)
|
453
|
+
if schedule_time_zone is not None:
|
454
|
+
pulumi.set(__self__, "schedule_time_zone", schedule_time_zone)
|
455
|
+
if state is not None:
|
456
|
+
pulumi.set(__self__, "state", state)
|
457
|
+
|
458
|
+
@property
|
459
|
+
@pulumi.getter(name="actionId")
|
460
|
+
def action_id(self) -> pulumi.Input[builtins.str]:
|
461
|
+
"""
|
462
|
+
This should map to one of the action id specified
|
463
|
+
in actions_config in the plugin.
|
464
|
+
"""
|
465
|
+
return pulumi.get(self, "action_id")
|
466
|
+
|
467
|
+
@action_id.setter
|
468
|
+
def action_id(self, value: pulumi.Input[builtins.str]):
|
469
|
+
pulumi.set(self, "action_id", value)
|
470
|
+
|
471
|
+
@property
|
472
|
+
@pulumi.getter(name="curationConfig")
|
473
|
+
def curation_config(self) -> Optional[pulumi.Input['PluginInstanceActionCurationConfigArgs']]:
|
474
|
+
"""
|
475
|
+
The curation information for this plugin instance.
|
476
|
+
Structure is documented below.
|
477
|
+
"""
|
478
|
+
return pulumi.get(self, "curation_config")
|
479
|
+
|
480
|
+
@curation_config.setter
|
481
|
+
def curation_config(self, value: Optional[pulumi.Input['PluginInstanceActionCurationConfigArgs']]):
|
482
|
+
pulumi.set(self, "curation_config", value)
|
483
|
+
|
484
|
+
@property
|
485
|
+
@pulumi.getter(name="hubInstanceActions")
|
486
|
+
def hub_instance_actions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PluginInstanceActionHubInstanceActionArgs']]]]:
|
487
|
+
"""
|
488
|
+
(Output)
|
489
|
+
The execution status for the plugin instance.
|
490
|
+
Structure is documented below.
|
491
|
+
"""
|
492
|
+
return pulumi.get(self, "hub_instance_actions")
|
493
|
+
|
494
|
+
@hub_instance_actions.setter
|
495
|
+
def hub_instance_actions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PluginInstanceActionHubInstanceActionArgs']]]]):
|
496
|
+
pulumi.set(self, "hub_instance_actions", value)
|
497
|
+
|
498
|
+
@property
|
499
|
+
@pulumi.getter(name="scheduleCronExpression")
|
500
|
+
def schedule_cron_expression(self) -> Optional[pulumi.Input[builtins.str]]:
|
501
|
+
"""
|
502
|
+
The schedule for this plugin instance action. This can only be set if the
|
503
|
+
plugin supports API_HUB_SCHEDULE_TRIGGER mode for this action.
|
504
|
+
"""
|
505
|
+
return pulumi.get(self, "schedule_cron_expression")
|
506
|
+
|
507
|
+
@schedule_cron_expression.setter
|
508
|
+
def schedule_cron_expression(self, value: Optional[pulumi.Input[builtins.str]]):
|
509
|
+
pulumi.set(self, "schedule_cron_expression", value)
|
510
|
+
|
511
|
+
@property
|
512
|
+
@pulumi.getter(name="scheduleTimeZone")
|
513
|
+
def schedule_time_zone(self) -> Optional[pulumi.Input[builtins.str]]:
|
514
|
+
"""
|
515
|
+
The time zone for the schedule cron expression. If not provided, UTC will
|
516
|
+
be used.
|
517
|
+
|
518
|
+
|
519
|
+
<a name="nested_actions_actions_hub_instance_action"></a>The `hub_instance_action` block contains:
|
520
|
+
"""
|
521
|
+
return pulumi.get(self, "schedule_time_zone")
|
522
|
+
|
523
|
+
@schedule_time_zone.setter
|
524
|
+
def schedule_time_zone(self, value: Optional[pulumi.Input[builtins.str]]):
|
525
|
+
pulumi.set(self, "schedule_time_zone", value)
|
526
|
+
|
527
|
+
@property
|
528
|
+
@pulumi.getter
|
529
|
+
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
530
|
+
"""
|
531
|
+
(Output)
|
532
|
+
The current state of the plugin action in the plugin instance.
|
533
|
+
Possible values:
|
534
|
+
STATE_UNSPECIFIED
|
535
|
+
ENABLED
|
536
|
+
DISABLED
|
537
|
+
ENABLING
|
538
|
+
DISABLING
|
539
|
+
ERROR
|
540
|
+
"""
|
541
|
+
return pulumi.get(self, "state")
|
542
|
+
|
543
|
+
@state.setter
|
544
|
+
def state(self, value: Optional[pulumi.Input[builtins.str]]):
|
545
|
+
pulumi.set(self, "state", value)
|
546
|
+
|
547
|
+
|
548
|
+
if not MYPY:
|
549
|
+
class PluginInstanceActionCurationConfigArgsDict(TypedDict):
|
550
|
+
curation_type: NotRequired[pulumi.Input[builtins.str]]
|
551
|
+
"""
|
552
|
+
Possible values:
|
553
|
+
CURATION_TYPE_UNSPECIFIED
|
554
|
+
DEFAULT_CURATION_FOR_API_METADATA
|
555
|
+
CUSTOM_CURATION_FOR_API_METADATA
|
556
|
+
"""
|
557
|
+
custom_curation: NotRequired[pulumi.Input['PluginInstanceActionCurationConfigCustomCurationArgsDict']]
|
558
|
+
"""
|
559
|
+
Custom curation information for this plugin instance.
|
560
|
+
Structure is documented below.
|
561
|
+
"""
|
562
|
+
elif False:
|
563
|
+
PluginInstanceActionCurationConfigArgsDict: TypeAlias = Mapping[str, Any]
|
564
|
+
|
565
|
+
@pulumi.input_type
|
566
|
+
class PluginInstanceActionCurationConfigArgs:
|
567
|
+
def __init__(__self__, *,
|
568
|
+
curation_type: Optional[pulumi.Input[builtins.str]] = None,
|
569
|
+
custom_curation: Optional[pulumi.Input['PluginInstanceActionCurationConfigCustomCurationArgs']] = None):
|
570
|
+
"""
|
571
|
+
:param pulumi.Input[builtins.str] curation_type: Possible values:
|
572
|
+
CURATION_TYPE_UNSPECIFIED
|
573
|
+
DEFAULT_CURATION_FOR_API_METADATA
|
574
|
+
CUSTOM_CURATION_FOR_API_METADATA
|
575
|
+
:param pulumi.Input['PluginInstanceActionCurationConfigCustomCurationArgs'] custom_curation: Custom curation information for this plugin instance.
|
576
|
+
Structure is documented below.
|
577
|
+
"""
|
578
|
+
if curation_type is not None:
|
579
|
+
pulumi.set(__self__, "curation_type", curation_type)
|
580
|
+
if custom_curation is not None:
|
581
|
+
pulumi.set(__self__, "custom_curation", custom_curation)
|
582
|
+
|
583
|
+
@property
|
584
|
+
@pulumi.getter(name="curationType")
|
585
|
+
def curation_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
586
|
+
"""
|
587
|
+
Possible values:
|
588
|
+
CURATION_TYPE_UNSPECIFIED
|
589
|
+
DEFAULT_CURATION_FOR_API_METADATA
|
590
|
+
CUSTOM_CURATION_FOR_API_METADATA
|
591
|
+
"""
|
592
|
+
return pulumi.get(self, "curation_type")
|
593
|
+
|
594
|
+
@curation_type.setter
|
595
|
+
def curation_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
596
|
+
pulumi.set(self, "curation_type", value)
|
597
|
+
|
598
|
+
@property
|
599
|
+
@pulumi.getter(name="customCuration")
|
600
|
+
def custom_curation(self) -> Optional[pulumi.Input['PluginInstanceActionCurationConfigCustomCurationArgs']]:
|
601
|
+
"""
|
602
|
+
Custom curation information for this plugin instance.
|
603
|
+
Structure is documented below.
|
604
|
+
"""
|
605
|
+
return pulumi.get(self, "custom_curation")
|
606
|
+
|
607
|
+
@custom_curation.setter
|
608
|
+
def custom_curation(self, value: Optional[pulumi.Input['PluginInstanceActionCurationConfigCustomCurationArgs']]):
|
609
|
+
pulumi.set(self, "custom_curation", value)
|
610
|
+
|
611
|
+
|
612
|
+
if not MYPY:
|
613
|
+
class PluginInstanceActionCurationConfigCustomCurationArgsDict(TypedDict):
|
614
|
+
curation: pulumi.Input[builtins.str]
|
615
|
+
"""
|
616
|
+
The unique name of the curation resource. This will be the name of the
|
617
|
+
curation resource in the format:
|
618
|
+
`projects/{project}/locations/{location}/curations/{curation}`
|
619
|
+
|
620
|
+
- - -
|
621
|
+
"""
|
622
|
+
elif False:
|
623
|
+
PluginInstanceActionCurationConfigCustomCurationArgsDict: TypeAlias = Mapping[str, Any]
|
624
|
+
|
625
|
+
@pulumi.input_type
|
626
|
+
class PluginInstanceActionCurationConfigCustomCurationArgs:
|
627
|
+
def __init__(__self__, *,
|
628
|
+
curation: pulumi.Input[builtins.str]):
|
629
|
+
"""
|
630
|
+
:param pulumi.Input[builtins.str] curation: The unique name of the curation resource. This will be the name of the
|
631
|
+
curation resource in the format:
|
632
|
+
`projects/{project}/locations/{location}/curations/{curation}`
|
633
|
+
|
634
|
+
- - -
|
635
|
+
"""
|
636
|
+
pulumi.set(__self__, "curation", curation)
|
637
|
+
|
638
|
+
@property
|
639
|
+
@pulumi.getter
|
640
|
+
def curation(self) -> pulumi.Input[builtins.str]:
|
641
|
+
"""
|
642
|
+
The unique name of the curation resource. This will be the name of the
|
643
|
+
curation resource in the format:
|
644
|
+
`projects/{project}/locations/{location}/curations/{curation}`
|
645
|
+
|
646
|
+
- - -
|
647
|
+
"""
|
648
|
+
return pulumi.get(self, "curation")
|
649
|
+
|
650
|
+
@curation.setter
|
651
|
+
def curation(self, value: pulumi.Input[builtins.str]):
|
652
|
+
pulumi.set(self, "curation", value)
|
653
|
+
|
654
|
+
|
655
|
+
if not MYPY:
|
656
|
+
class PluginInstanceActionHubInstanceActionArgsDict(TypedDict):
|
657
|
+
current_execution_state: NotRequired[pulumi.Input[builtins.str]]
|
658
|
+
"""
|
659
|
+
The current state of the execution.
|
660
|
+
Possible values:
|
661
|
+
CURRENT_EXECUTION_STATE_UNSPECIFIED
|
662
|
+
RUNNING
|
663
|
+
NOT_RUNNING
|
664
|
+
"""
|
665
|
+
last_executions: NotRequired[pulumi.Input[Sequence[pulumi.Input['PluginInstanceActionHubInstanceActionLastExecutionArgsDict']]]]
|
666
|
+
"""
|
667
|
+
The result of the last execution of the plugin instance.
|
668
|
+
"""
|
669
|
+
elif False:
|
670
|
+
PluginInstanceActionHubInstanceActionArgsDict: TypeAlias = Mapping[str, Any]
|
671
|
+
|
672
|
+
@pulumi.input_type
|
673
|
+
class PluginInstanceActionHubInstanceActionArgs:
|
674
|
+
def __init__(__self__, *,
|
675
|
+
current_execution_state: Optional[pulumi.Input[builtins.str]] = None,
|
676
|
+
last_executions: Optional[pulumi.Input[Sequence[pulumi.Input['PluginInstanceActionHubInstanceActionLastExecutionArgs']]]] = None):
|
677
|
+
"""
|
678
|
+
:param pulumi.Input[builtins.str] current_execution_state: The current state of the execution.
|
679
|
+
Possible values:
|
680
|
+
CURRENT_EXECUTION_STATE_UNSPECIFIED
|
681
|
+
RUNNING
|
682
|
+
NOT_RUNNING
|
683
|
+
:param pulumi.Input[Sequence[pulumi.Input['PluginInstanceActionHubInstanceActionLastExecutionArgs']]] last_executions: The result of the last execution of the plugin instance.
|
684
|
+
"""
|
685
|
+
if current_execution_state is not None:
|
686
|
+
pulumi.set(__self__, "current_execution_state", current_execution_state)
|
687
|
+
if last_executions is not None:
|
688
|
+
pulumi.set(__self__, "last_executions", last_executions)
|
689
|
+
|
690
|
+
@property
|
691
|
+
@pulumi.getter(name="currentExecutionState")
|
692
|
+
def current_execution_state(self) -> Optional[pulumi.Input[builtins.str]]:
|
693
|
+
"""
|
694
|
+
The current state of the execution.
|
695
|
+
Possible values:
|
696
|
+
CURRENT_EXECUTION_STATE_UNSPECIFIED
|
697
|
+
RUNNING
|
698
|
+
NOT_RUNNING
|
699
|
+
"""
|
700
|
+
return pulumi.get(self, "current_execution_state")
|
701
|
+
|
702
|
+
@current_execution_state.setter
|
703
|
+
def current_execution_state(self, value: Optional[pulumi.Input[builtins.str]]):
|
704
|
+
pulumi.set(self, "current_execution_state", value)
|
705
|
+
|
706
|
+
@property
|
707
|
+
@pulumi.getter(name="lastExecutions")
|
708
|
+
def last_executions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['PluginInstanceActionHubInstanceActionLastExecutionArgs']]]]:
|
709
|
+
"""
|
710
|
+
The result of the last execution of the plugin instance.
|
711
|
+
"""
|
712
|
+
return pulumi.get(self, "last_executions")
|
713
|
+
|
714
|
+
@last_executions.setter
|
715
|
+
def last_executions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['PluginInstanceActionHubInstanceActionLastExecutionArgs']]]]):
|
716
|
+
pulumi.set(self, "last_executions", value)
|
717
|
+
|
718
|
+
|
719
|
+
if not MYPY:
|
720
|
+
class PluginInstanceActionHubInstanceActionLastExecutionArgsDict(TypedDict):
|
721
|
+
end_time: NotRequired[pulumi.Input[builtins.str]]
|
722
|
+
"""
|
723
|
+
The last execution end time of the plugin instance.
|
724
|
+
"""
|
725
|
+
error_message: NotRequired[pulumi.Input[builtins.str]]
|
726
|
+
"""
|
727
|
+
Error message describing the failure, if any, during Create, Delete or
|
728
|
+
ApplyConfig operation corresponding to the plugin instance.This field will
|
729
|
+
only be populated if the plugin instance is in the ERROR or FAILED state.
|
730
|
+
"""
|
731
|
+
result: NotRequired[pulumi.Input[builtins.str]]
|
732
|
+
"""
|
733
|
+
The result of the last execution of the plugin instance.
|
734
|
+
Possible values:
|
735
|
+
RESULT_UNSPECIFIED
|
736
|
+
SUCCEEDED
|
737
|
+
FAILED
|
738
|
+
"""
|
739
|
+
start_time: NotRequired[pulumi.Input[builtins.str]]
|
740
|
+
"""
|
741
|
+
The last execution start time of the plugin instance.
|
742
|
+
"""
|
743
|
+
elif False:
|
744
|
+
PluginInstanceActionHubInstanceActionLastExecutionArgsDict: TypeAlias = Mapping[str, Any]
|
745
|
+
|
746
|
+
@pulumi.input_type
|
747
|
+
class PluginInstanceActionHubInstanceActionLastExecutionArgs:
|
748
|
+
def __init__(__self__, *,
|
749
|
+
end_time: Optional[pulumi.Input[builtins.str]] = None,
|
750
|
+
error_message: Optional[pulumi.Input[builtins.str]] = None,
|
751
|
+
result: Optional[pulumi.Input[builtins.str]] = None,
|
752
|
+
start_time: Optional[pulumi.Input[builtins.str]] = None):
|
753
|
+
"""
|
754
|
+
:param pulumi.Input[builtins.str] end_time: The last execution end time of the plugin instance.
|
755
|
+
:param pulumi.Input[builtins.str] error_message: Error message describing the failure, if any, during Create, Delete or
|
756
|
+
ApplyConfig operation corresponding to the plugin instance.This field will
|
757
|
+
only be populated if the plugin instance is in the ERROR or FAILED state.
|
758
|
+
:param pulumi.Input[builtins.str] result: The result of the last execution of the plugin instance.
|
759
|
+
Possible values:
|
760
|
+
RESULT_UNSPECIFIED
|
761
|
+
SUCCEEDED
|
762
|
+
FAILED
|
763
|
+
:param pulumi.Input[builtins.str] start_time: The last execution start time of the plugin instance.
|
764
|
+
"""
|
765
|
+
if end_time is not None:
|
766
|
+
pulumi.set(__self__, "end_time", end_time)
|
767
|
+
if error_message is not None:
|
768
|
+
pulumi.set(__self__, "error_message", error_message)
|
769
|
+
if result is not None:
|
770
|
+
pulumi.set(__self__, "result", result)
|
771
|
+
if start_time is not None:
|
772
|
+
pulumi.set(__self__, "start_time", start_time)
|
773
|
+
|
774
|
+
@property
|
775
|
+
@pulumi.getter(name="endTime")
|
776
|
+
def end_time(self) -> Optional[pulumi.Input[builtins.str]]:
|
777
|
+
"""
|
778
|
+
The last execution end time of the plugin instance.
|
779
|
+
"""
|
780
|
+
return pulumi.get(self, "end_time")
|
781
|
+
|
782
|
+
@end_time.setter
|
783
|
+
def end_time(self, value: Optional[pulumi.Input[builtins.str]]):
|
784
|
+
pulumi.set(self, "end_time", value)
|
785
|
+
|
786
|
+
@property
|
787
|
+
@pulumi.getter(name="errorMessage")
|
788
|
+
def error_message(self) -> Optional[pulumi.Input[builtins.str]]:
|
789
|
+
"""
|
790
|
+
Error message describing the failure, if any, during Create, Delete or
|
791
|
+
ApplyConfig operation corresponding to the plugin instance.This field will
|
792
|
+
only be populated if the plugin instance is in the ERROR or FAILED state.
|
793
|
+
"""
|
794
|
+
return pulumi.get(self, "error_message")
|
795
|
+
|
796
|
+
@error_message.setter
|
797
|
+
def error_message(self, value: Optional[pulumi.Input[builtins.str]]):
|
798
|
+
pulumi.set(self, "error_message", value)
|
799
|
+
|
800
|
+
@property
|
801
|
+
@pulumi.getter
|
802
|
+
def result(self) -> Optional[pulumi.Input[builtins.str]]:
|
803
|
+
"""
|
804
|
+
The result of the last execution of the plugin instance.
|
805
|
+
Possible values:
|
806
|
+
RESULT_UNSPECIFIED
|
807
|
+
SUCCEEDED
|
808
|
+
FAILED
|
809
|
+
"""
|
810
|
+
return pulumi.get(self, "result")
|
811
|
+
|
812
|
+
@result.setter
|
813
|
+
def result(self, value: Optional[pulumi.Input[builtins.str]]):
|
814
|
+
pulumi.set(self, "result", value)
|
815
|
+
|
816
|
+
@property
|
817
|
+
@pulumi.getter(name="startTime")
|
818
|
+
def start_time(self) -> Optional[pulumi.Input[builtins.str]]:
|
819
|
+
"""
|
820
|
+
The last execution start time of the plugin instance.
|
821
|
+
"""
|
822
|
+
return pulumi.get(self, "start_time")
|
823
|
+
|
824
|
+
@start_time.setter
|
825
|
+
def start_time(self, value: Optional[pulumi.Input[builtins.str]]):
|
826
|
+
pulumi.set(self, "start_time", value)
|
827
|
+
|
828
|
+
|
829
|
+
if not MYPY:
|
830
|
+
class PluginInstanceAuthConfigArgsDict(TypedDict):
|
831
|
+
auth_type: pulumi.Input[builtins.str]
|
832
|
+
"""
|
833
|
+
Possible values:
|
834
|
+
AUTH_TYPE_UNSPECIFIED
|
835
|
+
NO_AUTH
|
836
|
+
GOOGLE_SERVICE_ACCOUNT
|
837
|
+
USER_PASSWORD
|
838
|
+
API_KEY
|
839
|
+
OAUTH2_CLIENT_CREDENTIALS
|
840
|
+
"""
|
841
|
+
api_key_config: NotRequired[pulumi.Input['PluginInstanceAuthConfigApiKeyConfigArgsDict']]
|
842
|
+
"""
|
843
|
+
Config for authentication with API key.
|
844
|
+
Structure is documented below.
|
845
|
+
"""
|
846
|
+
google_service_account_config: NotRequired[pulumi.Input['PluginInstanceAuthConfigGoogleServiceAccountConfigArgsDict']]
|
847
|
+
"""
|
848
|
+
Config for Google service account authentication.
|
849
|
+
Structure is documented below.
|
850
|
+
"""
|
851
|
+
oauth2_client_credentials_config: NotRequired[pulumi.Input['PluginInstanceAuthConfigOauth2ClientCredentialsConfigArgsDict']]
|
852
|
+
"""
|
853
|
+
Parameters to support Oauth 2.0 client credentials grant authentication.
|
854
|
+
See https://tools.ietf.org/html/rfc6749#section-1.3.4 for more details.
|
855
|
+
Structure is documented below.
|
856
|
+
"""
|
857
|
+
user_password_config: NotRequired[pulumi.Input['PluginInstanceAuthConfigUserPasswordConfigArgsDict']]
|
858
|
+
"""
|
859
|
+
Parameters to support Username and Password Authentication.
|
860
|
+
Structure is documented below.
|
861
|
+
"""
|
862
|
+
elif False:
|
863
|
+
PluginInstanceAuthConfigArgsDict: TypeAlias = Mapping[str, Any]
|
864
|
+
|
865
|
+
@pulumi.input_type
|
866
|
+
class PluginInstanceAuthConfigArgs:
|
867
|
+
def __init__(__self__, *,
|
868
|
+
auth_type: pulumi.Input[builtins.str],
|
869
|
+
api_key_config: Optional[pulumi.Input['PluginInstanceAuthConfigApiKeyConfigArgs']] = None,
|
870
|
+
google_service_account_config: Optional[pulumi.Input['PluginInstanceAuthConfigGoogleServiceAccountConfigArgs']] = None,
|
871
|
+
oauth2_client_credentials_config: Optional[pulumi.Input['PluginInstanceAuthConfigOauth2ClientCredentialsConfigArgs']] = None,
|
872
|
+
user_password_config: Optional[pulumi.Input['PluginInstanceAuthConfigUserPasswordConfigArgs']] = None):
|
873
|
+
"""
|
874
|
+
:param pulumi.Input[builtins.str] auth_type: Possible values:
|
875
|
+
AUTH_TYPE_UNSPECIFIED
|
876
|
+
NO_AUTH
|
877
|
+
GOOGLE_SERVICE_ACCOUNT
|
878
|
+
USER_PASSWORD
|
879
|
+
API_KEY
|
880
|
+
OAUTH2_CLIENT_CREDENTIALS
|
881
|
+
:param pulumi.Input['PluginInstanceAuthConfigApiKeyConfigArgs'] api_key_config: Config for authentication with API key.
|
882
|
+
Structure is documented below.
|
883
|
+
:param pulumi.Input['PluginInstanceAuthConfigGoogleServiceAccountConfigArgs'] google_service_account_config: Config for Google service account authentication.
|
884
|
+
Structure is documented below.
|
885
|
+
:param pulumi.Input['PluginInstanceAuthConfigOauth2ClientCredentialsConfigArgs'] oauth2_client_credentials_config: Parameters to support Oauth 2.0 client credentials grant authentication.
|
886
|
+
See https://tools.ietf.org/html/rfc6749#section-1.3.4 for more details.
|
887
|
+
Structure is documented below.
|
888
|
+
:param pulumi.Input['PluginInstanceAuthConfigUserPasswordConfigArgs'] user_password_config: Parameters to support Username and Password Authentication.
|
889
|
+
Structure is documented below.
|
890
|
+
"""
|
891
|
+
pulumi.set(__self__, "auth_type", auth_type)
|
892
|
+
if api_key_config is not None:
|
893
|
+
pulumi.set(__self__, "api_key_config", api_key_config)
|
894
|
+
if google_service_account_config is not None:
|
895
|
+
pulumi.set(__self__, "google_service_account_config", google_service_account_config)
|
896
|
+
if oauth2_client_credentials_config is not None:
|
897
|
+
pulumi.set(__self__, "oauth2_client_credentials_config", oauth2_client_credentials_config)
|
898
|
+
if user_password_config is not None:
|
899
|
+
pulumi.set(__self__, "user_password_config", user_password_config)
|
900
|
+
|
901
|
+
@property
|
902
|
+
@pulumi.getter(name="authType")
|
903
|
+
def auth_type(self) -> pulumi.Input[builtins.str]:
|
904
|
+
"""
|
905
|
+
Possible values:
|
906
|
+
AUTH_TYPE_UNSPECIFIED
|
907
|
+
NO_AUTH
|
908
|
+
GOOGLE_SERVICE_ACCOUNT
|
909
|
+
USER_PASSWORD
|
910
|
+
API_KEY
|
911
|
+
OAUTH2_CLIENT_CREDENTIALS
|
912
|
+
"""
|
913
|
+
return pulumi.get(self, "auth_type")
|
914
|
+
|
915
|
+
@auth_type.setter
|
916
|
+
def auth_type(self, value: pulumi.Input[builtins.str]):
|
917
|
+
pulumi.set(self, "auth_type", value)
|
918
|
+
|
919
|
+
@property
|
920
|
+
@pulumi.getter(name="apiKeyConfig")
|
921
|
+
def api_key_config(self) -> Optional[pulumi.Input['PluginInstanceAuthConfigApiKeyConfigArgs']]:
|
922
|
+
"""
|
923
|
+
Config for authentication with API key.
|
924
|
+
Structure is documented below.
|
925
|
+
"""
|
926
|
+
return pulumi.get(self, "api_key_config")
|
927
|
+
|
928
|
+
@api_key_config.setter
|
929
|
+
def api_key_config(self, value: Optional[pulumi.Input['PluginInstanceAuthConfigApiKeyConfigArgs']]):
|
930
|
+
pulumi.set(self, "api_key_config", value)
|
931
|
+
|
932
|
+
@property
|
933
|
+
@pulumi.getter(name="googleServiceAccountConfig")
|
934
|
+
def google_service_account_config(self) -> Optional[pulumi.Input['PluginInstanceAuthConfigGoogleServiceAccountConfigArgs']]:
|
935
|
+
"""
|
936
|
+
Config for Google service account authentication.
|
937
|
+
Structure is documented below.
|
938
|
+
"""
|
939
|
+
return pulumi.get(self, "google_service_account_config")
|
940
|
+
|
941
|
+
@google_service_account_config.setter
|
942
|
+
def google_service_account_config(self, value: Optional[pulumi.Input['PluginInstanceAuthConfigGoogleServiceAccountConfigArgs']]):
|
943
|
+
pulumi.set(self, "google_service_account_config", value)
|
944
|
+
|
945
|
+
@property
|
946
|
+
@pulumi.getter(name="oauth2ClientCredentialsConfig")
|
947
|
+
def oauth2_client_credentials_config(self) -> Optional[pulumi.Input['PluginInstanceAuthConfigOauth2ClientCredentialsConfigArgs']]:
|
948
|
+
"""
|
949
|
+
Parameters to support Oauth 2.0 client credentials grant authentication.
|
950
|
+
See https://tools.ietf.org/html/rfc6749#section-1.3.4 for more details.
|
951
|
+
Structure is documented below.
|
952
|
+
"""
|
953
|
+
return pulumi.get(self, "oauth2_client_credentials_config")
|
954
|
+
|
955
|
+
@oauth2_client_credentials_config.setter
|
956
|
+
def oauth2_client_credentials_config(self, value: Optional[pulumi.Input['PluginInstanceAuthConfigOauth2ClientCredentialsConfigArgs']]):
|
957
|
+
pulumi.set(self, "oauth2_client_credentials_config", value)
|
958
|
+
|
959
|
+
@property
|
960
|
+
@pulumi.getter(name="userPasswordConfig")
|
961
|
+
def user_password_config(self) -> Optional[pulumi.Input['PluginInstanceAuthConfigUserPasswordConfigArgs']]:
|
962
|
+
"""
|
963
|
+
Parameters to support Username and Password Authentication.
|
964
|
+
Structure is documented below.
|
965
|
+
"""
|
966
|
+
return pulumi.get(self, "user_password_config")
|
967
|
+
|
968
|
+
@user_password_config.setter
|
969
|
+
def user_password_config(self, value: Optional[pulumi.Input['PluginInstanceAuthConfigUserPasswordConfigArgs']]):
|
970
|
+
pulumi.set(self, "user_password_config", value)
|
971
|
+
|
972
|
+
|
973
|
+
if not MYPY:
|
974
|
+
class PluginInstanceAuthConfigApiKeyConfigArgsDict(TypedDict):
|
975
|
+
api_key: pulumi.Input['PluginInstanceAuthConfigApiKeyConfigApiKeyArgsDict']
|
976
|
+
"""
|
977
|
+
Secret provides a reference to entries in Secret Manager.
|
978
|
+
Structure is documented below.
|
979
|
+
"""
|
980
|
+
http_element_location: pulumi.Input[builtins.str]
|
981
|
+
"""
|
982
|
+
The location of the API key.
|
983
|
+
The default value is QUERY.
|
984
|
+
Possible values:
|
985
|
+
HTTP_ELEMENT_LOCATION_UNSPECIFIED
|
986
|
+
QUERY
|
987
|
+
HEADER
|
988
|
+
PATH
|
989
|
+
BODY
|
990
|
+
COOKIE
|
991
|
+
"""
|
992
|
+
name: pulumi.Input[builtins.str]
|
993
|
+
"""
|
994
|
+
The parameter name of the API key.
|
995
|
+
E.g. If the API request is "https://example.com/act?api_key=",
|
996
|
+
"api_key" would be the parameter name.
|
997
|
+
"""
|
998
|
+
elif False:
|
999
|
+
PluginInstanceAuthConfigApiKeyConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1000
|
+
|
1001
|
+
@pulumi.input_type
|
1002
|
+
class PluginInstanceAuthConfigApiKeyConfigArgs:
|
1003
|
+
def __init__(__self__, *,
|
1004
|
+
api_key: pulumi.Input['PluginInstanceAuthConfigApiKeyConfigApiKeyArgs'],
|
1005
|
+
http_element_location: pulumi.Input[builtins.str],
|
1006
|
+
name: pulumi.Input[builtins.str]):
|
1007
|
+
"""
|
1008
|
+
:param pulumi.Input['PluginInstanceAuthConfigApiKeyConfigApiKeyArgs'] api_key: Secret provides a reference to entries in Secret Manager.
|
1009
|
+
Structure is documented below.
|
1010
|
+
:param pulumi.Input[builtins.str] http_element_location: The location of the API key.
|
1011
|
+
The default value is QUERY.
|
1012
|
+
Possible values:
|
1013
|
+
HTTP_ELEMENT_LOCATION_UNSPECIFIED
|
1014
|
+
QUERY
|
1015
|
+
HEADER
|
1016
|
+
PATH
|
1017
|
+
BODY
|
1018
|
+
COOKIE
|
1019
|
+
:param pulumi.Input[builtins.str] name: The parameter name of the API key.
|
1020
|
+
E.g. If the API request is "https://example.com/act?api_key=",
|
1021
|
+
"api_key" would be the parameter name.
|
1022
|
+
"""
|
1023
|
+
pulumi.set(__self__, "api_key", api_key)
|
1024
|
+
pulumi.set(__self__, "http_element_location", http_element_location)
|
1025
|
+
pulumi.set(__self__, "name", name)
|
1026
|
+
|
1027
|
+
@property
|
1028
|
+
@pulumi.getter(name="apiKey")
|
1029
|
+
def api_key(self) -> pulumi.Input['PluginInstanceAuthConfigApiKeyConfigApiKeyArgs']:
|
1030
|
+
"""
|
1031
|
+
Secret provides a reference to entries in Secret Manager.
|
1032
|
+
Structure is documented below.
|
1033
|
+
"""
|
1034
|
+
return pulumi.get(self, "api_key")
|
1035
|
+
|
1036
|
+
@api_key.setter
|
1037
|
+
def api_key(self, value: pulumi.Input['PluginInstanceAuthConfigApiKeyConfigApiKeyArgs']):
|
1038
|
+
pulumi.set(self, "api_key", value)
|
1039
|
+
|
1040
|
+
@property
|
1041
|
+
@pulumi.getter(name="httpElementLocation")
|
1042
|
+
def http_element_location(self) -> pulumi.Input[builtins.str]:
|
1043
|
+
"""
|
1044
|
+
The location of the API key.
|
1045
|
+
The default value is QUERY.
|
1046
|
+
Possible values:
|
1047
|
+
HTTP_ELEMENT_LOCATION_UNSPECIFIED
|
1048
|
+
QUERY
|
1049
|
+
HEADER
|
1050
|
+
PATH
|
1051
|
+
BODY
|
1052
|
+
COOKIE
|
1053
|
+
"""
|
1054
|
+
return pulumi.get(self, "http_element_location")
|
1055
|
+
|
1056
|
+
@http_element_location.setter
|
1057
|
+
def http_element_location(self, value: pulumi.Input[builtins.str]):
|
1058
|
+
pulumi.set(self, "http_element_location", value)
|
1059
|
+
|
1060
|
+
@property
|
1061
|
+
@pulumi.getter
|
1062
|
+
def name(self) -> pulumi.Input[builtins.str]:
|
1063
|
+
"""
|
1064
|
+
The parameter name of the API key.
|
1065
|
+
E.g. If the API request is "https://example.com/act?api_key=",
|
1066
|
+
"api_key" would be the parameter name.
|
1067
|
+
"""
|
1068
|
+
return pulumi.get(self, "name")
|
1069
|
+
|
1070
|
+
@name.setter
|
1071
|
+
def name(self, value: pulumi.Input[builtins.str]):
|
1072
|
+
pulumi.set(self, "name", value)
|
1073
|
+
|
1074
|
+
|
1075
|
+
if not MYPY:
|
1076
|
+
class PluginInstanceAuthConfigApiKeyConfigApiKeyArgsDict(TypedDict):
|
1077
|
+
secret_version: pulumi.Input[builtins.str]
|
1078
|
+
"""
|
1079
|
+
The resource name of the secret version in the format,
|
1080
|
+
format as: `projects/*/secrets/*/versions/*`.
|
1081
|
+
|
1082
|
+
<a name="nested_auth_config_oauth2_client_credentials_config"></a>The `oauth2_client_credentials_config` block supports:
|
1083
|
+
"""
|
1084
|
+
elif False:
|
1085
|
+
PluginInstanceAuthConfigApiKeyConfigApiKeyArgsDict: TypeAlias = Mapping[str, Any]
|
1086
|
+
|
1087
|
+
@pulumi.input_type
|
1088
|
+
class PluginInstanceAuthConfigApiKeyConfigApiKeyArgs:
|
1089
|
+
def __init__(__self__, *,
|
1090
|
+
secret_version: pulumi.Input[builtins.str]):
|
1091
|
+
"""
|
1092
|
+
:param pulumi.Input[builtins.str] secret_version: The resource name of the secret version in the format,
|
1093
|
+
format as: `projects/*/secrets/*/versions/*`.
|
1094
|
+
|
1095
|
+
<a name="nested_auth_config_oauth2_client_credentials_config"></a>The `oauth2_client_credentials_config` block supports:
|
1096
|
+
"""
|
1097
|
+
pulumi.set(__self__, "secret_version", secret_version)
|
1098
|
+
|
1099
|
+
@property
|
1100
|
+
@pulumi.getter(name="secretVersion")
|
1101
|
+
def secret_version(self) -> pulumi.Input[builtins.str]:
|
1102
|
+
"""
|
1103
|
+
The resource name of the secret version in the format,
|
1104
|
+
format as: `projects/*/secrets/*/versions/*`.
|
1105
|
+
|
1106
|
+
<a name="nested_auth_config_oauth2_client_credentials_config"></a>The `oauth2_client_credentials_config` block supports:
|
1107
|
+
"""
|
1108
|
+
return pulumi.get(self, "secret_version")
|
1109
|
+
|
1110
|
+
@secret_version.setter
|
1111
|
+
def secret_version(self, value: pulumi.Input[builtins.str]):
|
1112
|
+
pulumi.set(self, "secret_version", value)
|
1113
|
+
|
1114
|
+
|
1115
|
+
if not MYPY:
|
1116
|
+
class PluginInstanceAuthConfigGoogleServiceAccountConfigArgsDict(TypedDict):
|
1117
|
+
service_account: pulumi.Input[builtins.str]
|
1118
|
+
"""
|
1119
|
+
The service account to be used for authenticating request.
|
1120
|
+
The `iam.serviceAccounts.getAccessToken` permission should be granted on
|
1121
|
+
this service account to the impersonator service account.
|
1122
|
+
"""
|
1123
|
+
elif False:
|
1124
|
+
PluginInstanceAuthConfigGoogleServiceAccountConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1125
|
+
|
1126
|
+
@pulumi.input_type
|
1127
|
+
class PluginInstanceAuthConfigGoogleServiceAccountConfigArgs:
|
1128
|
+
def __init__(__self__, *,
|
1129
|
+
service_account: pulumi.Input[builtins.str]):
|
1130
|
+
"""
|
1131
|
+
:param pulumi.Input[builtins.str] service_account: The service account to be used for authenticating request.
|
1132
|
+
The `iam.serviceAccounts.getAccessToken` permission should be granted on
|
1133
|
+
this service account to the impersonator service account.
|
1134
|
+
"""
|
1135
|
+
pulumi.set(__self__, "service_account", service_account)
|
1136
|
+
|
1137
|
+
@property
|
1138
|
+
@pulumi.getter(name="serviceAccount")
|
1139
|
+
def service_account(self) -> pulumi.Input[builtins.str]:
|
1140
|
+
"""
|
1141
|
+
The service account to be used for authenticating request.
|
1142
|
+
The `iam.serviceAccounts.getAccessToken` permission should be granted on
|
1143
|
+
this service account to the impersonator service account.
|
1144
|
+
"""
|
1145
|
+
return pulumi.get(self, "service_account")
|
1146
|
+
|
1147
|
+
@service_account.setter
|
1148
|
+
def service_account(self, value: pulumi.Input[builtins.str]):
|
1149
|
+
pulumi.set(self, "service_account", value)
|
1150
|
+
|
1151
|
+
|
1152
|
+
if not MYPY:
|
1153
|
+
class PluginInstanceAuthConfigOauth2ClientCredentialsConfigArgsDict(TypedDict):
|
1154
|
+
client_id: pulumi.Input[builtins.str]
|
1155
|
+
"""
|
1156
|
+
The client identifier.
|
1157
|
+
"""
|
1158
|
+
client_secret: pulumi.Input['PluginInstanceAuthConfigOauth2ClientCredentialsConfigClientSecretArgsDict']
|
1159
|
+
"""
|
1160
|
+
Secret provides a reference to entries in Secret Manager.
|
1161
|
+
"""
|
1162
|
+
elif False:
|
1163
|
+
PluginInstanceAuthConfigOauth2ClientCredentialsConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1164
|
+
|
1165
|
+
@pulumi.input_type
|
1166
|
+
class PluginInstanceAuthConfigOauth2ClientCredentialsConfigArgs:
|
1167
|
+
def __init__(__self__, *,
|
1168
|
+
client_id: pulumi.Input[builtins.str],
|
1169
|
+
client_secret: pulumi.Input['PluginInstanceAuthConfigOauth2ClientCredentialsConfigClientSecretArgs']):
|
1170
|
+
"""
|
1171
|
+
:param pulumi.Input[builtins.str] client_id: The client identifier.
|
1172
|
+
:param pulumi.Input['PluginInstanceAuthConfigOauth2ClientCredentialsConfigClientSecretArgs'] client_secret: Secret provides a reference to entries in Secret Manager.
|
1173
|
+
"""
|
1174
|
+
pulumi.set(__self__, "client_id", client_id)
|
1175
|
+
pulumi.set(__self__, "client_secret", client_secret)
|
1176
|
+
|
1177
|
+
@property
|
1178
|
+
@pulumi.getter(name="clientId")
|
1179
|
+
def client_id(self) -> pulumi.Input[builtins.str]:
|
1180
|
+
"""
|
1181
|
+
The client identifier.
|
1182
|
+
"""
|
1183
|
+
return pulumi.get(self, "client_id")
|
1184
|
+
|
1185
|
+
@client_id.setter
|
1186
|
+
def client_id(self, value: pulumi.Input[builtins.str]):
|
1187
|
+
pulumi.set(self, "client_id", value)
|
1188
|
+
|
1189
|
+
@property
|
1190
|
+
@pulumi.getter(name="clientSecret")
|
1191
|
+
def client_secret(self) -> pulumi.Input['PluginInstanceAuthConfigOauth2ClientCredentialsConfigClientSecretArgs']:
|
1192
|
+
"""
|
1193
|
+
Secret provides a reference to entries in Secret Manager.
|
1194
|
+
"""
|
1195
|
+
return pulumi.get(self, "client_secret")
|
1196
|
+
|
1197
|
+
@client_secret.setter
|
1198
|
+
def client_secret(self, value: pulumi.Input['PluginInstanceAuthConfigOauth2ClientCredentialsConfigClientSecretArgs']):
|
1199
|
+
pulumi.set(self, "client_secret", value)
|
1200
|
+
|
1201
|
+
|
1202
|
+
if not MYPY:
|
1203
|
+
class PluginInstanceAuthConfigOauth2ClientCredentialsConfigClientSecretArgsDict(TypedDict):
|
1204
|
+
secret_version: pulumi.Input[builtins.str]
|
1205
|
+
"""
|
1206
|
+
The resource name of the secret version in the format,
|
1207
|
+
format as: `projects/*/secrets/*/versions/*`.
|
1208
|
+
"""
|
1209
|
+
elif False:
|
1210
|
+
PluginInstanceAuthConfigOauth2ClientCredentialsConfigClientSecretArgsDict: TypeAlias = Mapping[str, Any]
|
1211
|
+
|
1212
|
+
@pulumi.input_type
|
1213
|
+
class PluginInstanceAuthConfigOauth2ClientCredentialsConfigClientSecretArgs:
|
1214
|
+
def __init__(__self__, *,
|
1215
|
+
secret_version: pulumi.Input[builtins.str]):
|
1216
|
+
"""
|
1217
|
+
:param pulumi.Input[builtins.str] secret_version: The resource name of the secret version in the format,
|
1218
|
+
format as: `projects/*/secrets/*/versions/*`.
|
1219
|
+
"""
|
1220
|
+
pulumi.set(__self__, "secret_version", secret_version)
|
1221
|
+
|
1222
|
+
@property
|
1223
|
+
@pulumi.getter(name="secretVersion")
|
1224
|
+
def secret_version(self) -> pulumi.Input[builtins.str]:
|
1225
|
+
"""
|
1226
|
+
The resource name of the secret version in the format,
|
1227
|
+
format as: `projects/*/secrets/*/versions/*`.
|
1228
|
+
"""
|
1229
|
+
return pulumi.get(self, "secret_version")
|
1230
|
+
|
1231
|
+
@secret_version.setter
|
1232
|
+
def secret_version(self, value: pulumi.Input[builtins.str]):
|
1233
|
+
pulumi.set(self, "secret_version", value)
|
1234
|
+
|
1235
|
+
|
1236
|
+
if not MYPY:
|
1237
|
+
class PluginInstanceAuthConfigUserPasswordConfigArgsDict(TypedDict):
|
1238
|
+
password: pulumi.Input['PluginInstanceAuthConfigUserPasswordConfigPasswordArgsDict']
|
1239
|
+
"""
|
1240
|
+
Secret provides a reference to entries in Secret Manager.
|
1241
|
+
Structure is documented below.
|
1242
|
+
"""
|
1243
|
+
username: pulumi.Input[builtins.str]
|
1244
|
+
"""
|
1245
|
+
Username.
|
1246
|
+
"""
|
1247
|
+
elif False:
|
1248
|
+
PluginInstanceAuthConfigUserPasswordConfigArgsDict: TypeAlias = Mapping[str, Any]
|
1249
|
+
|
1250
|
+
@pulumi.input_type
|
1251
|
+
class PluginInstanceAuthConfigUserPasswordConfigArgs:
|
1252
|
+
def __init__(__self__, *,
|
1253
|
+
password: pulumi.Input['PluginInstanceAuthConfigUserPasswordConfigPasswordArgs'],
|
1254
|
+
username: pulumi.Input[builtins.str]):
|
1255
|
+
"""
|
1256
|
+
:param pulumi.Input['PluginInstanceAuthConfigUserPasswordConfigPasswordArgs'] password: Secret provides a reference to entries in Secret Manager.
|
1257
|
+
Structure is documented below.
|
1258
|
+
:param pulumi.Input[builtins.str] username: Username.
|
1259
|
+
"""
|
1260
|
+
pulumi.set(__self__, "password", password)
|
1261
|
+
pulumi.set(__self__, "username", username)
|
1262
|
+
|
1263
|
+
@property
|
1264
|
+
@pulumi.getter
|
1265
|
+
def password(self) -> pulumi.Input['PluginInstanceAuthConfigUserPasswordConfigPasswordArgs']:
|
1266
|
+
"""
|
1267
|
+
Secret provides a reference to entries in Secret Manager.
|
1268
|
+
Structure is documented below.
|
1269
|
+
"""
|
1270
|
+
return pulumi.get(self, "password")
|
1271
|
+
|
1272
|
+
@password.setter
|
1273
|
+
def password(self, value: pulumi.Input['PluginInstanceAuthConfigUserPasswordConfigPasswordArgs']):
|
1274
|
+
pulumi.set(self, "password", value)
|
1275
|
+
|
1276
|
+
@property
|
1277
|
+
@pulumi.getter
|
1278
|
+
def username(self) -> pulumi.Input[builtins.str]:
|
1279
|
+
"""
|
1280
|
+
Username.
|
1281
|
+
"""
|
1282
|
+
return pulumi.get(self, "username")
|
1283
|
+
|
1284
|
+
@username.setter
|
1285
|
+
def username(self, value: pulumi.Input[builtins.str]):
|
1286
|
+
pulumi.set(self, "username", value)
|
1287
|
+
|
1288
|
+
|
1289
|
+
if not MYPY:
|
1290
|
+
class PluginInstanceAuthConfigUserPasswordConfigPasswordArgsDict(TypedDict):
|
1291
|
+
secret_version: pulumi.Input[builtins.str]
|
1292
|
+
"""
|
1293
|
+
The resource name of the secret version in the format,
|
1294
|
+
format as: `projects/*/secrets/*/versions/*`.
|
1295
|
+
"""
|
1296
|
+
elif False:
|
1297
|
+
PluginInstanceAuthConfigUserPasswordConfigPasswordArgsDict: TypeAlias = Mapping[str, Any]
|
1298
|
+
|
1299
|
+
@pulumi.input_type
|
1300
|
+
class PluginInstanceAuthConfigUserPasswordConfigPasswordArgs:
|
1301
|
+
def __init__(__self__, *,
|
1302
|
+
secret_version: pulumi.Input[builtins.str]):
|
1303
|
+
"""
|
1304
|
+
:param pulumi.Input[builtins.str] secret_version: The resource name of the secret version in the format,
|
1305
|
+
format as: `projects/*/secrets/*/versions/*`.
|
1306
|
+
"""
|
1307
|
+
pulumi.set(__self__, "secret_version", secret_version)
|
1308
|
+
|
1309
|
+
@property
|
1310
|
+
@pulumi.getter(name="secretVersion")
|
1311
|
+
def secret_version(self) -> pulumi.Input[builtins.str]:
|
1312
|
+
"""
|
1313
|
+
The resource name of the secret version in the format,
|
1314
|
+
format as: `projects/*/secrets/*/versions/*`.
|
1315
|
+
"""
|
1316
|
+
return pulumi.get(self, "secret_version")
|
1317
|
+
|
1318
|
+
@secret_version.setter
|
1319
|
+
def secret_version(self, value: pulumi.Input[builtins.str]):
|
1320
|
+
pulumi.set(self, "secret_version", value)
|
1321
|
+
|
1322
|
+
|