pulumi-oci 3.1.0a1751948424__py3-none-any.whl → 3.2.0a1752121229__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_oci/__init__.py +40 -0
- pulumi_oci/bigdataservice/__init__.py +10 -0
- pulumi_oci/bigdataservice/_inputs.py +378 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup.py +481 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup_configuration.py +611 -0
- pulumi_oci/bigdataservice/bds_instance_node_replace_configuration.py +538 -0
- pulumi_oci/bigdataservice/bds_instance_replace_node_action.py +406 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup.py +245 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configuration.py +263 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configurations.py +192 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backups.py +211 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configuration.py +246 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configurations.py +192 -0
- pulumi_oci/bigdataservice/outputs.py +798 -0
- pulumi_oci/generativeai/__init__.py +3 -0
- pulumi_oci/generativeai/_inputs.py +1479 -132
- pulumi_oci/generativeai/agent_agent.py +66 -11
- pulumi_oci/generativeai/agent_agent_endpoint.py +296 -25
- pulumi_oci/generativeai/agent_data_source.py +70 -21
- pulumi_oci/generativeai/agent_tool.py +619 -0
- pulumi_oci/generativeai/get_agent_agent.py +17 -2
- pulumi_oci/generativeai/get_agent_agent_endpoint.py +72 -6
- pulumi_oci/generativeai/get_agent_agent_endpoints.py +0 -4
- pulumi_oci/generativeai/get_agent_data_source.py +15 -1
- pulumi_oci/generativeai/get_agent_tool.py +283 -0
- pulumi_oci/generativeai/get_agent_tools.py +214 -0
- pulumi_oci/generativeai/outputs.py +4001 -1259
- pulumi_oci/kms/vault_verification.py +62 -2
- pulumi_oci/ospgateway/_inputs.py +20 -0
- pulumi_oci/ospgateway/get_subscription.py +15 -1
- pulumi_oci/ospgateway/outputs.py +47 -0
- pulumi_oci/ospgateway/subscription.py +28 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-3.1.0a1751948424.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1751948424.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/RECORD +37 -24
- {pulumi_oci-3.1.0a1751948424.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1751948424.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/top_level.txt +0 -0
@@ -14,6 +14,8 @@ if sys.version_info >= (3, 11):
|
|
14
14
|
else:
|
15
15
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
16
|
from .. import _utilities
|
17
|
+
from . import outputs
|
18
|
+
from ._inputs import *
|
17
19
|
|
18
20
|
__all__ = ['AgentAgentArgs', 'AgentAgent']
|
19
21
|
|
@@ -26,6 +28,7 @@ class AgentAgentArgs:
|
|
26
28
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
27
29
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
28
30
|
knowledge_base_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
31
|
+
llm_config: Optional[pulumi.Input['AgentAgentLlmConfigArgs']] = None,
|
29
32
|
welcome_message: Optional[pulumi.Input[builtins.str]] = None):
|
30
33
|
"""
|
31
34
|
The set of arguments for constructing a AgentAgent resource.
|
@@ -34,7 +37,8 @@ class AgentAgentArgs:
|
|
34
37
|
:param pulumi.Input[builtins.str] description: (Updatable) Description about the agent.
|
35
38
|
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
36
39
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
37
|
-
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] knowledge_base_ids: (Updatable) List of [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the knowledgeBases associated with agent.
|
40
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] knowledge_base_ids: (Updatable) List of [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the knowledgeBases associated with agent. This field is deprecated and will be removed after March 26 2026.
|
41
|
+
:param pulumi.Input['AgentAgentLlmConfigArgs'] llm_config: (Updatable) Configuration to Agent LLM.
|
38
42
|
:param pulumi.Input[builtins.str] welcome_message: (Updatable) Details about purpose and responsibility of the agent
|
39
43
|
|
40
44
|
|
@@ -52,6 +56,8 @@ class AgentAgentArgs:
|
|
52
56
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
53
57
|
if knowledge_base_ids is not None:
|
54
58
|
pulumi.set(__self__, "knowledge_base_ids", knowledge_base_ids)
|
59
|
+
if llm_config is not None:
|
60
|
+
pulumi.set(__self__, "llm_config", llm_config)
|
55
61
|
if welcome_message is not None:
|
56
62
|
pulumi.set(__self__, "welcome_message", welcome_message)
|
57
63
|
|
@@ -119,7 +125,7 @@ class AgentAgentArgs:
|
|
119
125
|
@pulumi.getter(name="knowledgeBaseIds")
|
120
126
|
def knowledge_base_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
121
127
|
"""
|
122
|
-
(Updatable) List of [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the knowledgeBases associated with agent.
|
128
|
+
(Updatable) List of [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the knowledgeBases associated with agent. This field is deprecated and will be removed after March 26 2026.
|
123
129
|
"""
|
124
130
|
return pulumi.get(self, "knowledge_base_ids")
|
125
131
|
|
@@ -127,6 +133,18 @@ class AgentAgentArgs:
|
|
127
133
|
def knowledge_base_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
128
134
|
pulumi.set(self, "knowledge_base_ids", value)
|
129
135
|
|
136
|
+
@property
|
137
|
+
@pulumi.getter(name="llmConfig")
|
138
|
+
def llm_config(self) -> Optional[pulumi.Input['AgentAgentLlmConfigArgs']]:
|
139
|
+
"""
|
140
|
+
(Updatable) Configuration to Agent LLM.
|
141
|
+
"""
|
142
|
+
return pulumi.get(self, "llm_config")
|
143
|
+
|
144
|
+
@llm_config.setter
|
145
|
+
def llm_config(self, value: Optional[pulumi.Input['AgentAgentLlmConfigArgs']]):
|
146
|
+
pulumi.set(self, "llm_config", value)
|
147
|
+
|
130
148
|
@property
|
131
149
|
@pulumi.getter(name="welcomeMessage")
|
132
150
|
def welcome_message(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -154,6 +172,7 @@ class _AgentAgentState:
|
|
154
172
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
155
173
|
knowledge_base_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
156
174
|
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
175
|
+
llm_config: Optional[pulumi.Input['AgentAgentLlmConfigArgs']] = None,
|
157
176
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
158
177
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
159
178
|
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -166,8 +185,9 @@ class _AgentAgentState:
|
|
166
185
|
:param pulumi.Input[builtins.str] description: (Updatable) Description about the agent.
|
167
186
|
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
168
187
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
169
|
-
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] knowledge_base_ids: (Updatable) List of [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the knowledgeBases associated with agent.
|
188
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] knowledge_base_ids: (Updatable) List of [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the knowledgeBases associated with agent. This field is deprecated and will be removed after March 26 2026.
|
170
189
|
:param pulumi.Input[builtins.str] lifecycle_details: A message that describes the current state of the agent in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
190
|
+
:param pulumi.Input['AgentAgentLlmConfigArgs'] llm_config: (Updatable) Configuration to Agent LLM.
|
171
191
|
:param pulumi.Input[builtins.str] state: The current state of the agent.
|
172
192
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
173
193
|
:param pulumi.Input[builtins.str] time_created: The date and time the agent was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
@@ -192,6 +212,8 @@ class _AgentAgentState:
|
|
192
212
|
pulumi.set(__self__, "knowledge_base_ids", knowledge_base_ids)
|
193
213
|
if lifecycle_details is not None:
|
194
214
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
215
|
+
if llm_config is not None:
|
216
|
+
pulumi.set(__self__, "llm_config", llm_config)
|
195
217
|
if state is not None:
|
196
218
|
pulumi.set(__self__, "state", state)
|
197
219
|
if system_tags is not None:
|
@@ -267,7 +289,7 @@ class _AgentAgentState:
|
|
267
289
|
@pulumi.getter(name="knowledgeBaseIds")
|
268
290
|
def knowledge_base_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
269
291
|
"""
|
270
|
-
(Updatable) List of [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the knowledgeBases associated with agent.
|
292
|
+
(Updatable) List of [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the knowledgeBases associated with agent. This field is deprecated and will be removed after March 26 2026.
|
271
293
|
"""
|
272
294
|
return pulumi.get(self, "knowledge_base_ids")
|
273
295
|
|
@@ -287,6 +309,18 @@ class _AgentAgentState:
|
|
287
309
|
def lifecycle_details(self, value: Optional[pulumi.Input[builtins.str]]):
|
288
310
|
pulumi.set(self, "lifecycle_details", value)
|
289
311
|
|
312
|
+
@property
|
313
|
+
@pulumi.getter(name="llmConfig")
|
314
|
+
def llm_config(self) -> Optional[pulumi.Input['AgentAgentLlmConfigArgs']]:
|
315
|
+
"""
|
316
|
+
(Updatable) Configuration to Agent LLM.
|
317
|
+
"""
|
318
|
+
return pulumi.get(self, "llm_config")
|
319
|
+
|
320
|
+
@llm_config.setter
|
321
|
+
def llm_config(self, value: Optional[pulumi.Input['AgentAgentLlmConfigArgs']]):
|
322
|
+
pulumi.set(self, "llm_config", value)
|
323
|
+
|
290
324
|
@property
|
291
325
|
@pulumi.getter
|
292
326
|
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -364,13 +398,12 @@ class AgentAgent(pulumi.CustomResource):
|
|
364
398
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
365
399
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
366
400
|
knowledge_base_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
401
|
+
llm_config: Optional[pulumi.Input[Union['AgentAgentLlmConfigArgs', 'AgentAgentLlmConfigArgsDict']]] = None,
|
367
402
|
welcome_message: Optional[pulumi.Input[builtins.str]] = None,
|
368
403
|
__props__=None):
|
369
404
|
"""
|
370
405
|
This resource provides the Agent resource in Oracle Cloud Infrastructure Generative Ai Agent service.
|
371
406
|
|
372
|
-
**CreateAgent**
|
373
|
-
|
374
407
|
Creates an agent.
|
375
408
|
|
376
409
|
## Example Usage
|
@@ -390,6 +423,11 @@ class AgentAgent(pulumi.CustomResource):
|
|
390
423
|
"Department": "Finance",
|
391
424
|
},
|
392
425
|
knowledge_base_ids=agent_knowledge_base_ids,
|
426
|
+
llm_config={
|
427
|
+
"routing_llm_customization": {
|
428
|
+
"instruction": agent_llm_config_routing_llm_customization_instruction,
|
429
|
+
},
|
430
|
+
},
|
393
431
|
welcome_message=agent_welcome_message)
|
394
432
|
```
|
395
433
|
|
@@ -408,7 +446,8 @@ class AgentAgent(pulumi.CustomResource):
|
|
408
446
|
:param pulumi.Input[builtins.str] description: (Updatable) Description about the agent.
|
409
447
|
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
410
448
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
411
|
-
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] knowledge_base_ids: (Updatable) List of [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the knowledgeBases associated with agent.
|
449
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] knowledge_base_ids: (Updatable) List of [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the knowledgeBases associated with agent. This field is deprecated and will be removed after March 26 2026.
|
450
|
+
:param pulumi.Input[Union['AgentAgentLlmConfigArgs', 'AgentAgentLlmConfigArgsDict']] llm_config: (Updatable) Configuration to Agent LLM.
|
412
451
|
:param pulumi.Input[builtins.str] welcome_message: (Updatable) Details about purpose and responsibility of the agent
|
413
452
|
|
414
453
|
|
@@ -424,8 +463,6 @@ class AgentAgent(pulumi.CustomResource):
|
|
424
463
|
"""
|
425
464
|
This resource provides the Agent resource in Oracle Cloud Infrastructure Generative Ai Agent service.
|
426
465
|
|
427
|
-
**CreateAgent**
|
428
|
-
|
429
466
|
Creates an agent.
|
430
467
|
|
431
468
|
## Example Usage
|
@@ -445,6 +482,11 @@ class AgentAgent(pulumi.CustomResource):
|
|
445
482
|
"Department": "Finance",
|
446
483
|
},
|
447
484
|
knowledge_base_ids=agent_knowledge_base_ids,
|
485
|
+
llm_config={
|
486
|
+
"routing_llm_customization": {
|
487
|
+
"instruction": agent_llm_config_routing_llm_customization_instruction,
|
488
|
+
},
|
489
|
+
},
|
448
490
|
welcome_message=agent_welcome_message)
|
449
491
|
```
|
450
492
|
|
@@ -477,6 +519,7 @@ class AgentAgent(pulumi.CustomResource):
|
|
477
519
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
478
520
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
479
521
|
knowledge_base_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
522
|
+
llm_config: Optional[pulumi.Input[Union['AgentAgentLlmConfigArgs', 'AgentAgentLlmConfigArgsDict']]] = None,
|
480
523
|
welcome_message: Optional[pulumi.Input[builtins.str]] = None,
|
481
524
|
__props__=None):
|
482
525
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
@@ -495,6 +538,7 @@ class AgentAgent(pulumi.CustomResource):
|
|
495
538
|
__props__.__dict__["display_name"] = display_name
|
496
539
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
497
540
|
__props__.__dict__["knowledge_base_ids"] = knowledge_base_ids
|
541
|
+
__props__.__dict__["llm_config"] = llm_config
|
498
542
|
__props__.__dict__["welcome_message"] = welcome_message
|
499
543
|
__props__.__dict__["lifecycle_details"] = None
|
500
544
|
__props__.__dict__["state"] = None
|
@@ -518,6 +562,7 @@ class AgentAgent(pulumi.CustomResource):
|
|
518
562
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
519
563
|
knowledge_base_ids: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
520
564
|
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
565
|
+
llm_config: Optional[pulumi.Input[Union['AgentAgentLlmConfigArgs', 'AgentAgentLlmConfigArgsDict']]] = None,
|
521
566
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
522
567
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
523
568
|
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -535,8 +580,9 @@ class AgentAgent(pulumi.CustomResource):
|
|
535
580
|
:param pulumi.Input[builtins.str] description: (Updatable) Description about the agent.
|
536
581
|
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
537
582
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
538
|
-
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] knowledge_base_ids: (Updatable) List of [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the knowledgeBases associated with agent.
|
583
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] knowledge_base_ids: (Updatable) List of [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the knowledgeBases associated with agent. This field is deprecated and will be removed after March 26 2026.
|
539
584
|
:param pulumi.Input[builtins.str] lifecycle_details: A message that describes the current state of the agent in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
585
|
+
:param pulumi.Input[Union['AgentAgentLlmConfigArgs', 'AgentAgentLlmConfigArgsDict']] llm_config: (Updatable) Configuration to Agent LLM.
|
540
586
|
:param pulumi.Input[builtins.str] state: The current state of the agent.
|
541
587
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
542
588
|
:param pulumi.Input[builtins.str] time_created: The date and time the agent was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
@@ -558,6 +604,7 @@ class AgentAgent(pulumi.CustomResource):
|
|
558
604
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
559
605
|
__props__.__dict__["knowledge_base_ids"] = knowledge_base_ids
|
560
606
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
607
|
+
__props__.__dict__["llm_config"] = llm_config
|
561
608
|
__props__.__dict__["state"] = state
|
562
609
|
__props__.__dict__["system_tags"] = system_tags
|
563
610
|
__props__.__dict__["time_created"] = time_created
|
@@ -609,7 +656,7 @@ class AgentAgent(pulumi.CustomResource):
|
|
609
656
|
@pulumi.getter(name="knowledgeBaseIds")
|
610
657
|
def knowledge_base_ids(self) -> pulumi.Output[Sequence[builtins.str]]:
|
611
658
|
"""
|
612
|
-
(Updatable) List of [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the knowledgeBases associated with agent.
|
659
|
+
(Updatable) List of [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the knowledgeBases associated with agent. This field is deprecated and will be removed after March 26 2026.
|
613
660
|
"""
|
614
661
|
return pulumi.get(self, "knowledge_base_ids")
|
615
662
|
|
@@ -621,6 +668,14 @@ class AgentAgent(pulumi.CustomResource):
|
|
621
668
|
"""
|
622
669
|
return pulumi.get(self, "lifecycle_details")
|
623
670
|
|
671
|
+
@property
|
672
|
+
@pulumi.getter(name="llmConfig")
|
673
|
+
def llm_config(self) -> pulumi.Output['outputs.AgentAgentLlmConfig']:
|
674
|
+
"""
|
675
|
+
(Updatable) Configuration to Agent LLM.
|
676
|
+
"""
|
677
|
+
return pulumi.get(self, "llm_config")
|
678
|
+
|
624
679
|
@property
|
625
680
|
@pulumi.getter
|
626
681
|
def state(self) -> pulumi.Output[builtins.str]:
|