pulumi-gcp 8.41.0a1755408441__py3-none-any.whl → 8.41.0a1755638986__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 +16 -0
- pulumi_gcp/artifactregistry/__init__.py +3 -0
- pulumi_gcp/artifactregistry/get_package.py +220 -0
- pulumi_gcp/artifactregistry/get_repositories.py +160 -0
- pulumi_gcp/artifactregistry/get_version.py +261 -0
- pulumi_gcp/artifactregistry/outputs.py +100 -0
- pulumi_gcp/backupdisasterrecovery/backup_plan.py +114 -7
- pulumi_gcp/backupdisasterrecovery/get_backup_plan.py +12 -1
- pulumi_gcp/bigquery/dataset.py +2 -2
- pulumi_gcp/composer/user_workloads_config_map.py +26 -2
- pulumi_gcp/compute/_inputs.py +355 -0
- pulumi_gcp/compute/get_region_backend_service.py +12 -1
- pulumi_gcp/compute/outputs.py +404 -0
- pulumi_gcp/compute/region_backend_service.py +257 -0
- pulumi_gcp/compute/region_security_policy.py +54 -0
- pulumi_gcp/compute/service_attachment.py +126 -0
- pulumi_gcp/container/_inputs.py +435 -15
- pulumi_gcp/container/outputs.py +494 -13
- pulumi_gcp/diagflow/__init__.py +1 -0
- pulumi_gcp/diagflow/_inputs.py +168 -0
- pulumi_gcp/diagflow/cx_playbook.py +967 -0
- pulumi_gcp/diagflow/outputs.py +117 -0
- pulumi_gcp/gkeonprem/vmware_admin_cluster.py +24 -3
- pulumi_gcp/memorystore/get_instance.py +12 -1
- pulumi_gcp/memorystore/instance.py +70 -0
- pulumi_gcp/pubsub/subscription.py +84 -0
- pulumi_gcp/pubsub/topic.py +80 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/sql/_inputs.py +82 -4
- pulumi_gcp/sql/database_instance.py +108 -7
- pulumi_gcp/sql/get_database_instance.py +12 -1
- pulumi_gcp/sql/outputs.py +154 -7
- pulumi_gcp/storage/_inputs.py +104 -12
- pulumi_gcp/storage/outputs.py +84 -7
- pulumi_gcp/vertex/__init__.py +1 -0
- pulumi_gcp/vertex/_inputs.py +122 -0
- pulumi_gcp/vertex/ai_rag_engine_config.py +354 -0
- pulumi_gcp/vertex/outputs.py +69 -0
- {pulumi_gcp-8.41.0a1755408441.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.41.0a1755408441.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/RECORD +42 -37
- {pulumi_gcp-8.41.0a1755408441.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.41.0a1755408441.dist-info → pulumi_gcp-8.41.0a1755638986.dist-info}/top_level.txt +0 -0
pulumi_gcp/diagflow/__init__.py
CHANGED
pulumi_gcp/diagflow/_inputs.py
CHANGED
@@ -323,6 +323,12 @@ __all__ = [
|
|
323
323
|
'CxPageTransitionRouteTriggerFulfillmentMessageTextArgsDict',
|
324
324
|
'CxPageTransitionRouteTriggerFulfillmentSetParameterActionArgs',
|
325
325
|
'CxPageTransitionRouteTriggerFulfillmentSetParameterActionArgsDict',
|
326
|
+
'CxPlaybookInstructionArgs',
|
327
|
+
'CxPlaybookInstructionArgsDict',
|
328
|
+
'CxPlaybookInstructionStepArgs',
|
329
|
+
'CxPlaybookInstructionStepArgsDict',
|
330
|
+
'CxPlaybookLlmModelSettingsArgs',
|
331
|
+
'CxPlaybookLlmModelSettingsArgsDict',
|
326
332
|
'CxSecuritySettingsAudioExportSettingsArgs',
|
327
333
|
'CxSecuritySettingsAudioExportSettingsArgsDict',
|
328
334
|
'CxSecuritySettingsInsightsExportSettingsArgs',
|
@@ -12480,6 +12486,168 @@ class CxPageTransitionRouteTriggerFulfillmentSetParameterActionArgs:
|
|
12480
12486
|
pulumi.set(self, "value", value)
|
12481
12487
|
|
12482
12488
|
|
12489
|
+
if not MYPY:
|
12490
|
+
class CxPlaybookInstructionArgsDict(TypedDict):
|
12491
|
+
guidelines: NotRequired[pulumi.Input[_builtins.str]]
|
12492
|
+
"""
|
12493
|
+
General guidelines for the playbook. These are unstructured instructions that are not directly part of the goal, e.g. "Always be polite". It's valid for this text to be long and used instead of steps altogether.
|
12494
|
+
"""
|
12495
|
+
steps: NotRequired[pulumi.Input[Sequence[pulumi.Input['CxPlaybookInstructionStepArgsDict']]]]
|
12496
|
+
"""
|
12497
|
+
Ordered list of step by step execution instructions to accomplish target goal.
|
12498
|
+
Structure is documented below.
|
12499
|
+
"""
|
12500
|
+
elif False:
|
12501
|
+
CxPlaybookInstructionArgsDict: TypeAlias = Mapping[str, Any]
|
12502
|
+
|
12503
|
+
@pulumi.input_type
|
12504
|
+
class CxPlaybookInstructionArgs:
|
12505
|
+
def __init__(__self__, *,
|
12506
|
+
guidelines: Optional[pulumi.Input[_builtins.str]] = None,
|
12507
|
+
steps: Optional[pulumi.Input[Sequence[pulumi.Input['CxPlaybookInstructionStepArgs']]]] = None):
|
12508
|
+
"""
|
12509
|
+
:param pulumi.Input[_builtins.str] guidelines: General guidelines for the playbook. These are unstructured instructions that are not directly part of the goal, e.g. "Always be polite". It's valid for this text to be long and used instead of steps altogether.
|
12510
|
+
:param pulumi.Input[Sequence[pulumi.Input['CxPlaybookInstructionStepArgs']]] steps: Ordered list of step by step execution instructions to accomplish target goal.
|
12511
|
+
Structure is documented below.
|
12512
|
+
"""
|
12513
|
+
if guidelines is not None:
|
12514
|
+
pulumi.set(__self__, "guidelines", guidelines)
|
12515
|
+
if steps is not None:
|
12516
|
+
pulumi.set(__self__, "steps", steps)
|
12517
|
+
|
12518
|
+
@_builtins.property
|
12519
|
+
@pulumi.getter
|
12520
|
+
def guidelines(self) -> Optional[pulumi.Input[_builtins.str]]:
|
12521
|
+
"""
|
12522
|
+
General guidelines for the playbook. These are unstructured instructions that are not directly part of the goal, e.g. "Always be polite". It's valid for this text to be long and used instead of steps altogether.
|
12523
|
+
"""
|
12524
|
+
return pulumi.get(self, "guidelines")
|
12525
|
+
|
12526
|
+
@guidelines.setter
|
12527
|
+
def guidelines(self, value: Optional[pulumi.Input[_builtins.str]]):
|
12528
|
+
pulumi.set(self, "guidelines", value)
|
12529
|
+
|
12530
|
+
@_builtins.property
|
12531
|
+
@pulumi.getter
|
12532
|
+
def steps(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['CxPlaybookInstructionStepArgs']]]]:
|
12533
|
+
"""
|
12534
|
+
Ordered list of step by step execution instructions to accomplish target goal.
|
12535
|
+
Structure is documented below.
|
12536
|
+
"""
|
12537
|
+
return pulumi.get(self, "steps")
|
12538
|
+
|
12539
|
+
@steps.setter
|
12540
|
+
def steps(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['CxPlaybookInstructionStepArgs']]]]):
|
12541
|
+
pulumi.set(self, "steps", value)
|
12542
|
+
|
12543
|
+
|
12544
|
+
if not MYPY:
|
12545
|
+
class CxPlaybookInstructionStepArgsDict(TypedDict):
|
12546
|
+
steps: NotRequired[pulumi.Input[_builtins.str]]
|
12547
|
+
"""
|
12548
|
+
Sub-processing needed to execute the current step.
|
12549
|
+
This field uses JSON data as a string. The value provided must be a valid JSON representation documented in [Step](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/projects.locations.agents.playbooks#step).
|
12550
|
+
"""
|
12551
|
+
text: NotRequired[pulumi.Input[_builtins.str]]
|
12552
|
+
"""
|
12553
|
+
Step instruction in text format.
|
12554
|
+
"""
|
12555
|
+
elif False:
|
12556
|
+
CxPlaybookInstructionStepArgsDict: TypeAlias = Mapping[str, Any]
|
12557
|
+
|
12558
|
+
@pulumi.input_type
|
12559
|
+
class CxPlaybookInstructionStepArgs:
|
12560
|
+
def __init__(__self__, *,
|
12561
|
+
steps: Optional[pulumi.Input[_builtins.str]] = None,
|
12562
|
+
text: Optional[pulumi.Input[_builtins.str]] = None):
|
12563
|
+
"""
|
12564
|
+
:param pulumi.Input[_builtins.str] steps: Sub-processing needed to execute the current step.
|
12565
|
+
This field uses JSON data as a string. The value provided must be a valid JSON representation documented in [Step](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/projects.locations.agents.playbooks#step).
|
12566
|
+
:param pulumi.Input[_builtins.str] text: Step instruction in text format.
|
12567
|
+
"""
|
12568
|
+
if steps is not None:
|
12569
|
+
pulumi.set(__self__, "steps", steps)
|
12570
|
+
if text is not None:
|
12571
|
+
pulumi.set(__self__, "text", text)
|
12572
|
+
|
12573
|
+
@_builtins.property
|
12574
|
+
@pulumi.getter
|
12575
|
+
def steps(self) -> Optional[pulumi.Input[_builtins.str]]:
|
12576
|
+
"""
|
12577
|
+
Sub-processing needed to execute the current step.
|
12578
|
+
This field uses JSON data as a string. The value provided must be a valid JSON representation documented in [Step](https://cloud.google.com/dialogflow/cx/docs/reference/rest/v3/projects.locations.agents.playbooks#step).
|
12579
|
+
"""
|
12580
|
+
return pulumi.get(self, "steps")
|
12581
|
+
|
12582
|
+
@steps.setter
|
12583
|
+
def steps(self, value: Optional[pulumi.Input[_builtins.str]]):
|
12584
|
+
pulumi.set(self, "steps", value)
|
12585
|
+
|
12586
|
+
@_builtins.property
|
12587
|
+
@pulumi.getter
|
12588
|
+
def text(self) -> Optional[pulumi.Input[_builtins.str]]:
|
12589
|
+
"""
|
12590
|
+
Step instruction in text format.
|
12591
|
+
"""
|
12592
|
+
return pulumi.get(self, "text")
|
12593
|
+
|
12594
|
+
@text.setter
|
12595
|
+
def text(self, value: Optional[pulumi.Input[_builtins.str]]):
|
12596
|
+
pulumi.set(self, "text", value)
|
12597
|
+
|
12598
|
+
|
12599
|
+
if not MYPY:
|
12600
|
+
class CxPlaybookLlmModelSettingsArgsDict(TypedDict):
|
12601
|
+
model: NotRequired[pulumi.Input[_builtins.str]]
|
12602
|
+
"""
|
12603
|
+
The selected LLM model.
|
12604
|
+
"""
|
12605
|
+
prompt_text: NotRequired[pulumi.Input[_builtins.str]]
|
12606
|
+
"""
|
12607
|
+
The custom prompt to use.
|
12608
|
+
"""
|
12609
|
+
elif False:
|
12610
|
+
CxPlaybookLlmModelSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
12611
|
+
|
12612
|
+
@pulumi.input_type
|
12613
|
+
class CxPlaybookLlmModelSettingsArgs:
|
12614
|
+
def __init__(__self__, *,
|
12615
|
+
model: Optional[pulumi.Input[_builtins.str]] = None,
|
12616
|
+
prompt_text: Optional[pulumi.Input[_builtins.str]] = None):
|
12617
|
+
"""
|
12618
|
+
:param pulumi.Input[_builtins.str] model: The selected LLM model.
|
12619
|
+
:param pulumi.Input[_builtins.str] prompt_text: The custom prompt to use.
|
12620
|
+
"""
|
12621
|
+
if model is not None:
|
12622
|
+
pulumi.set(__self__, "model", model)
|
12623
|
+
if prompt_text is not None:
|
12624
|
+
pulumi.set(__self__, "prompt_text", prompt_text)
|
12625
|
+
|
12626
|
+
@_builtins.property
|
12627
|
+
@pulumi.getter
|
12628
|
+
def model(self) -> Optional[pulumi.Input[_builtins.str]]:
|
12629
|
+
"""
|
12630
|
+
The selected LLM model.
|
12631
|
+
"""
|
12632
|
+
return pulumi.get(self, "model")
|
12633
|
+
|
12634
|
+
@model.setter
|
12635
|
+
def model(self, value: Optional[pulumi.Input[_builtins.str]]):
|
12636
|
+
pulumi.set(self, "model", value)
|
12637
|
+
|
12638
|
+
@_builtins.property
|
12639
|
+
@pulumi.getter(name="promptText")
|
12640
|
+
def prompt_text(self) -> Optional[pulumi.Input[_builtins.str]]:
|
12641
|
+
"""
|
12642
|
+
The custom prompt to use.
|
12643
|
+
"""
|
12644
|
+
return pulumi.get(self, "prompt_text")
|
12645
|
+
|
12646
|
+
@prompt_text.setter
|
12647
|
+
def prompt_text(self, value: Optional[pulumi.Input[_builtins.str]]):
|
12648
|
+
pulumi.set(self, "prompt_text", value)
|
12649
|
+
|
12650
|
+
|
12483
12651
|
if not MYPY:
|
12484
12652
|
class CxSecuritySettingsAudioExportSettingsArgsDict(TypedDict):
|
12485
12653
|
audio_export_pattern: NotRequired[pulumi.Input[_builtins.str]]
|