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
@@ -28,7 +28,8 @@ class AgentDataSourceArgs:
|
|
28
28
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
29
29
|
description: Optional[pulumi.Input[builtins.str]] = None,
|
30
30
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
31
|
-
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None
|
31
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
32
|
+
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None):
|
32
33
|
"""
|
33
34
|
The set of arguments for constructing a AgentDataSource resource.
|
34
35
|
:param pulumi.Input[builtins.str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the data source in.
|
@@ -36,14 +37,15 @@ class AgentDataSourceArgs:
|
|
36
37
|
|
37
38
|
The details of data source.
|
38
39
|
:param pulumi.Input[builtins.str] knowledge_base_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the parent KnowledgeBase.
|
39
|
-
|
40
|
-
|
41
|
-
** IMPORTANT **
|
42
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
43
40
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
44
41
|
:param pulumi.Input[builtins.str] description: (Updatable) A description of the data source.
|
45
42
|
: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.
|
46
43
|
: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"}`
|
44
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] metadata: (Updatable) Key-value pairs to allow additional configurations.
|
45
|
+
|
46
|
+
|
47
|
+
** IMPORTANT **
|
48
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
47
49
|
"""
|
48
50
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
49
51
|
pulumi.set(__self__, "data_source_config", data_source_config)
|
@@ -56,6 +58,8 @@ class AgentDataSourceArgs:
|
|
56
58
|
pulumi.set(__self__, "display_name", display_name)
|
57
59
|
if freeform_tags is not None:
|
58
60
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
61
|
+
if metadata is not None:
|
62
|
+
pulumi.set(__self__, "metadata", metadata)
|
59
63
|
|
60
64
|
@property
|
61
65
|
@pulumi.getter(name="compartmentId")
|
@@ -88,10 +92,6 @@ class AgentDataSourceArgs:
|
|
88
92
|
def knowledge_base_id(self) -> pulumi.Input[builtins.str]:
|
89
93
|
"""
|
90
94
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the parent KnowledgeBase.
|
91
|
-
|
92
|
-
|
93
|
-
** IMPORTANT **
|
94
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
95
95
|
"""
|
96
96
|
return pulumi.get(self, "knowledge_base_id")
|
97
97
|
|
@@ -147,6 +147,22 @@ class AgentDataSourceArgs:
|
|
147
147
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
148
148
|
pulumi.set(self, "freeform_tags", value)
|
149
149
|
|
150
|
+
@property
|
151
|
+
@pulumi.getter
|
152
|
+
def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
153
|
+
"""
|
154
|
+
(Updatable) Key-value pairs to allow additional configurations.
|
155
|
+
|
156
|
+
|
157
|
+
** IMPORTANT **
|
158
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
159
|
+
"""
|
160
|
+
return pulumi.get(self, "metadata")
|
161
|
+
|
162
|
+
@metadata.setter
|
163
|
+
def metadata(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
164
|
+
pulumi.set(self, "metadata", value)
|
165
|
+
|
150
166
|
|
151
167
|
@pulumi.input_type
|
152
168
|
class _AgentDataSourceState:
|
@@ -159,6 +175,7 @@ class _AgentDataSourceState:
|
|
159
175
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
160
176
|
knowledge_base_id: Optional[pulumi.Input[builtins.str]] = None,
|
161
177
|
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
178
|
+
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
162
179
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
163
180
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
164
181
|
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -174,11 +191,12 @@ class _AgentDataSourceState:
|
|
174
191
|
: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.
|
175
192
|
: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"}`
|
176
193
|
:param pulumi.Input[builtins.str] knowledge_base_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the parent KnowledgeBase.
|
194
|
+
:param pulumi.Input[builtins.str] lifecycle_details: A message that describes the current state of the data source in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
195
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] metadata: (Updatable) Key-value pairs to allow additional configurations.
|
177
196
|
|
178
197
|
|
179
198
|
** IMPORTANT **
|
180
199
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
181
|
-
:param pulumi.Input[builtins.str] lifecycle_details: A message that describes the current state of the data source in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
182
200
|
:param pulumi.Input[builtins.str] state: The current state of the data source.
|
183
201
|
: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"}`
|
184
202
|
:param pulumi.Input[builtins.str] time_created: The date and time the data source was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
@@ -200,6 +218,8 @@ class _AgentDataSourceState:
|
|
200
218
|
pulumi.set(__self__, "knowledge_base_id", knowledge_base_id)
|
201
219
|
if lifecycle_details is not None:
|
202
220
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
221
|
+
if metadata is not None:
|
222
|
+
pulumi.set(__self__, "metadata", metadata)
|
203
223
|
if state is not None:
|
204
224
|
pulumi.set(__self__, "state", state)
|
205
225
|
if system_tags is not None:
|
@@ -288,10 +308,6 @@ class _AgentDataSourceState:
|
|
288
308
|
def knowledge_base_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
289
309
|
"""
|
290
310
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the parent KnowledgeBase.
|
291
|
-
|
292
|
-
|
293
|
-
** IMPORTANT **
|
294
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
295
311
|
"""
|
296
312
|
return pulumi.get(self, "knowledge_base_id")
|
297
313
|
|
@@ -311,6 +327,22 @@ class _AgentDataSourceState:
|
|
311
327
|
def lifecycle_details(self, value: Optional[pulumi.Input[builtins.str]]):
|
312
328
|
pulumi.set(self, "lifecycle_details", value)
|
313
329
|
|
330
|
+
@property
|
331
|
+
@pulumi.getter
|
332
|
+
def metadata(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
333
|
+
"""
|
334
|
+
(Updatable) Key-value pairs to allow additional configurations.
|
335
|
+
|
336
|
+
|
337
|
+
** IMPORTANT **
|
338
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
339
|
+
"""
|
340
|
+
return pulumi.get(self, "metadata")
|
341
|
+
|
342
|
+
@metadata.setter
|
343
|
+
def metadata(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
344
|
+
pulumi.set(self, "metadata", value)
|
345
|
+
|
314
346
|
@property
|
315
347
|
@pulumi.getter
|
316
348
|
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
@@ -373,6 +405,7 @@ class AgentDataSource(pulumi.CustomResource):
|
|
373
405
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
374
406
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
375
407
|
knowledge_base_id: Optional[pulumi.Input[builtins.str]] = None,
|
408
|
+
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
376
409
|
__props__=None):
|
377
410
|
"""
|
378
411
|
This resource provides the Data Source resource in Oracle Cloud Infrastructure Generative Ai Agent service.
|
@@ -405,7 +438,8 @@ class AgentDataSource(pulumi.CustomResource):
|
|
405
438
|
display_name=data_source_display_name,
|
406
439
|
freeform_tags={
|
407
440
|
"Department": "Finance",
|
408
|
-
}
|
441
|
+
},
|
442
|
+
metadata=data_source_metadata)
|
409
443
|
```
|
410
444
|
|
411
445
|
## Import
|
@@ -427,6 +461,7 @@ class AgentDataSource(pulumi.CustomResource):
|
|
427
461
|
: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.
|
428
462
|
: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"}`
|
429
463
|
:param pulumi.Input[builtins.str] knowledge_base_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the parent KnowledgeBase.
|
464
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] metadata: (Updatable) Key-value pairs to allow additional configurations.
|
430
465
|
|
431
466
|
|
432
467
|
** IMPORTANT **
|
@@ -469,7 +504,8 @@ class AgentDataSource(pulumi.CustomResource):
|
|
469
504
|
display_name=data_source_display_name,
|
470
505
|
freeform_tags={
|
471
506
|
"Department": "Finance",
|
472
|
-
}
|
507
|
+
},
|
508
|
+
metadata=data_source_metadata)
|
473
509
|
```
|
474
510
|
|
475
511
|
## Import
|
@@ -502,6 +538,7 @@ class AgentDataSource(pulumi.CustomResource):
|
|
502
538
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
503
539
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
504
540
|
knowledge_base_id: Optional[pulumi.Input[builtins.str]] = None,
|
541
|
+
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
505
542
|
__props__=None):
|
506
543
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
507
544
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -524,6 +561,7 @@ class AgentDataSource(pulumi.CustomResource):
|
|
524
561
|
if knowledge_base_id is None and not opts.urn:
|
525
562
|
raise TypeError("Missing required property 'knowledge_base_id'")
|
526
563
|
__props__.__dict__["knowledge_base_id"] = knowledge_base_id
|
564
|
+
__props__.__dict__["metadata"] = metadata
|
527
565
|
__props__.__dict__["lifecycle_details"] = None
|
528
566
|
__props__.__dict__["state"] = None
|
529
567
|
__props__.__dict__["system_tags"] = None
|
@@ -547,6 +585,7 @@ class AgentDataSource(pulumi.CustomResource):
|
|
547
585
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
548
586
|
knowledge_base_id: Optional[pulumi.Input[builtins.str]] = None,
|
549
587
|
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
588
|
+
metadata: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
550
589
|
state: Optional[pulumi.Input[builtins.str]] = None,
|
551
590
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
552
591
|
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
@@ -567,11 +606,12 @@ class AgentDataSource(pulumi.CustomResource):
|
|
567
606
|
: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.
|
568
607
|
: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"}`
|
569
608
|
:param pulumi.Input[builtins.str] knowledge_base_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the parent KnowledgeBase.
|
609
|
+
:param pulumi.Input[builtins.str] lifecycle_details: A message that describes the current state of the data source in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
610
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] metadata: (Updatable) Key-value pairs to allow additional configurations.
|
570
611
|
|
571
612
|
|
572
613
|
** IMPORTANT **
|
573
614
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
574
|
-
:param pulumi.Input[builtins.str] lifecycle_details: A message that describes the current state of the data source in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
575
615
|
:param pulumi.Input[builtins.str] state: The current state of the data source.
|
576
616
|
: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"}`
|
577
617
|
:param pulumi.Input[builtins.str] time_created: The date and time the data source was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
@@ -589,6 +629,7 @@ class AgentDataSource(pulumi.CustomResource):
|
|
589
629
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
590
630
|
__props__.__dict__["knowledge_base_id"] = knowledge_base_id
|
591
631
|
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
632
|
+
__props__.__dict__["metadata"] = metadata
|
592
633
|
__props__.__dict__["state"] = state
|
593
634
|
__props__.__dict__["system_tags"] = system_tags
|
594
635
|
__props__.__dict__["time_created"] = time_created
|
@@ -650,10 +691,6 @@ class AgentDataSource(pulumi.CustomResource):
|
|
650
691
|
def knowledge_base_id(self) -> pulumi.Output[builtins.str]:
|
651
692
|
"""
|
652
693
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the parent KnowledgeBase.
|
653
|
-
|
654
|
-
|
655
|
-
** IMPORTANT **
|
656
|
-
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
657
694
|
"""
|
658
695
|
return pulumi.get(self, "knowledge_base_id")
|
659
696
|
|
@@ -665,6 +702,18 @@ class AgentDataSource(pulumi.CustomResource):
|
|
665
702
|
"""
|
666
703
|
return pulumi.get(self, "lifecycle_details")
|
667
704
|
|
705
|
+
@property
|
706
|
+
@pulumi.getter
|
707
|
+
def metadata(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
708
|
+
"""
|
709
|
+
(Updatable) Key-value pairs to allow additional configurations.
|
710
|
+
|
711
|
+
|
712
|
+
** IMPORTANT **
|
713
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
714
|
+
"""
|
715
|
+
return pulumi.get(self, "metadata")
|
716
|
+
|
668
717
|
@property
|
669
718
|
@pulumi.getter
|
670
719
|
def state(self) -> pulumi.Output[builtins.str]:
|