pulumi-oci 1.20.0a1705991859__py3-none-any.whl → 1.21.0a1706309702__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 +35 -0
- pulumi_oci/core/get_boot_volume_attachments.py +36 -2
- pulumi_oci/database/autonomous_database_wallet.py +18 -0
- pulumi_oci/database/vm_cluster_network.py +20 -7
- pulumi_oci/generativeai/__init__.py +18 -0
- pulumi_oci/generativeai/_inputs.py +534 -0
- pulumi_oci/generativeai/dedicated_ai_cluster.py +808 -0
- pulumi_oci/generativeai/endpoint.py +717 -0
- pulumi_oci/generativeai/get_dedicated_ai_cluster.py +288 -0
- pulumi_oci/generativeai/get_dedicated_ai_clusters.py +183 -0
- pulumi_oci/generativeai/get_endpoint.py +275 -0
- pulumi_oci/generativeai/get_endpoints.py +183 -0
- pulumi_oci/generativeai/get_model.py +353 -0
- pulumi_oci/generativeai/get_models.py +220 -0
- pulumi_oci/generativeai/model.py +858 -0
- pulumi_oci/generativeai/outputs.py +1721 -0
- pulumi_oci/loadbalancer/_inputs.py +12 -0
- pulumi_oci/loadbalancer/outputs.py +12 -0
- pulumi_oci/marketplace/get_publication.py +14 -1
- pulumi_oci/marketplace/outputs.py +11 -0
- pulumi_oci/marketplace/publication.py +28 -0
- pulumi_oci/stackmonitoring/__init__.py +3 -0
- pulumi_oci/stackmonitoring/_inputs.py +143 -0
- pulumi_oci/stackmonitoring/get_process_set.py +236 -0
- pulumi_oci/stackmonitoring/get_process_sets.py +156 -0
- pulumi_oci/stackmonitoring/outputs.py +422 -0
- pulumi_oci/stackmonitoring/process_set.py +548 -0
- {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0a1706309702.dist-info}/METADATA +1 -1
- {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0a1706309702.dist-info}/RECORD +31 -16
- {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0a1706309702.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.20.0a1705991859.dist-info → pulumi_oci-1.21.0a1706309702.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py
CHANGED
@@ -107,6 +107,8 @@ if typing.TYPE_CHECKING:
|
|
107
107
|
functions = __functions
|
108
108
|
import pulumi_oci.fusionapps as __fusionapps
|
109
109
|
fusionapps = __fusionapps
|
110
|
+
import pulumi_oci.generativeai as __generativeai
|
111
|
+
generativeai = __generativeai
|
110
112
|
import pulumi_oci.genericartifactscontent as __genericartifactscontent
|
111
113
|
genericartifactscontent = __genericartifactscontent
|
112
114
|
import pulumi_oci.goldengate as __goldengate
|
@@ -281,6 +283,7 @@ else:
|
|
281
283
|
filestorage = _utilities.lazy_import('pulumi_oci.filestorage')
|
282
284
|
functions = _utilities.lazy_import('pulumi_oci.functions')
|
283
285
|
fusionapps = _utilities.lazy_import('pulumi_oci.fusionapps')
|
286
|
+
generativeai = _utilities.lazy_import('pulumi_oci.generativeai')
|
284
287
|
genericartifactscontent = _utilities.lazy_import('pulumi_oci.genericartifactscontent')
|
285
288
|
goldengate = _utilities.lazy_import('pulumi_oci.goldengate')
|
286
289
|
healthchecks = _utilities.lazy_import('pulumi_oci.healthchecks')
|
@@ -3299,6 +3302,30 @@ _utilities.register(
|
|
3299
3302
|
"oci:FusionApps/fusionEnvironmentServiceAttachment:FusionEnvironmentServiceAttachment": "FusionEnvironmentServiceAttachment"
|
3300
3303
|
}
|
3301
3304
|
},
|
3305
|
+
{
|
3306
|
+
"pkg": "oci",
|
3307
|
+
"mod": "GenerativeAi/dedicatedAiCluster",
|
3308
|
+
"fqn": "pulumi_oci.generativeai",
|
3309
|
+
"classes": {
|
3310
|
+
"oci:GenerativeAi/dedicatedAiCluster:DedicatedAiCluster": "DedicatedAiCluster"
|
3311
|
+
}
|
3312
|
+
},
|
3313
|
+
{
|
3314
|
+
"pkg": "oci",
|
3315
|
+
"mod": "GenerativeAi/endpoint",
|
3316
|
+
"fqn": "pulumi_oci.generativeai",
|
3317
|
+
"classes": {
|
3318
|
+
"oci:GenerativeAi/endpoint:Endpoint": "Endpoint"
|
3319
|
+
}
|
3320
|
+
},
|
3321
|
+
{
|
3322
|
+
"pkg": "oci",
|
3323
|
+
"mod": "GenerativeAi/model",
|
3324
|
+
"fqn": "pulumi_oci.generativeai",
|
3325
|
+
"classes": {
|
3326
|
+
"oci:GenerativeAi/model:Model": "Model"
|
3327
|
+
}
|
3328
|
+
},
|
3302
3329
|
{
|
3303
3330
|
"pkg": "oci",
|
3304
3331
|
"mod": "GenericArtifactsContent/artifactByPath",
|
@@ -5307,6 +5334,14 @@ _utilities.register(
|
|
5307
5334
|
"oci:StackMonitoring/monitoredResourcesSearchAssociation:MonitoredResourcesSearchAssociation": "MonitoredResourcesSearchAssociation"
|
5308
5335
|
}
|
5309
5336
|
},
|
5337
|
+
{
|
5338
|
+
"pkg": "oci",
|
5339
|
+
"mod": "StackMonitoring/processSet",
|
5340
|
+
"fqn": "pulumi_oci.stackmonitoring",
|
5341
|
+
"classes": {
|
5342
|
+
"oci:StackMonitoring/processSet:ProcessSet": "ProcessSet"
|
5343
|
+
}
|
5344
|
+
},
|
5310
5345
|
{
|
5311
5346
|
"pkg": "oci",
|
5312
5347
|
"mod": "Streaming/connectHarness",
|
@@ -122,7 +122,24 @@ def get_boot_volume_attachments(availability_domain: Optional[str] = None,
|
|
122
122
|
instance_id: Optional[str] = None,
|
123
123
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBootVolumeAttachmentsResult:
|
124
124
|
"""
|
125
|
-
|
125
|
+
This data source provides the list of Boot Volume Attachments in Oracle Cloud Infrastructure Core service.
|
126
|
+
|
127
|
+
Lists the boot volume attachments in the specified compartment. You can filter the
|
128
|
+
list by specifying an instance OCID, boot volume OCID, or both.
|
129
|
+
|
130
|
+
## Example Usage
|
131
|
+
|
132
|
+
```python
|
133
|
+
import pulumi
|
134
|
+
import pulumi_oci as oci
|
135
|
+
|
136
|
+
test_boot_volume_attachments = oci.Core.get_boot_volume_attachments(availability_domain=var["boot_volume_attachment_availability_domain"],
|
137
|
+
compartment_id=var["compartment_id"],
|
138
|
+
boot_volume_id=oci_core_boot_volume["test_boot_volume"]["id"],
|
139
|
+
instance_id=oci_core_instance["test_instance"]["id"])
|
140
|
+
```
|
141
|
+
For more detailed implementation refer the instance example
|
142
|
+
|
126
143
|
|
127
144
|
:param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
128
145
|
:param str boot_volume_id: The OCID of the boot volume.
|
@@ -156,7 +173,24 @@ def get_boot_volume_attachments_output(availability_domain: Optional[pulumi.Inpu
|
|
156
173
|
instance_id: Optional[pulumi.Input[Optional[str]]] = None,
|
157
174
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBootVolumeAttachmentsResult]:
|
158
175
|
"""
|
159
|
-
|
176
|
+
This data source provides the list of Boot Volume Attachments in Oracle Cloud Infrastructure Core service.
|
177
|
+
|
178
|
+
Lists the boot volume attachments in the specified compartment. You can filter the
|
179
|
+
list by specifying an instance OCID, boot volume OCID, or both.
|
180
|
+
|
181
|
+
## Example Usage
|
182
|
+
|
183
|
+
```python
|
184
|
+
import pulumi
|
185
|
+
import pulumi_oci as oci
|
186
|
+
|
187
|
+
test_boot_volume_attachments = oci.Core.get_boot_volume_attachments(availability_domain=var["boot_volume_attachment_availability_domain"],
|
188
|
+
compartment_id=var["compartment_id"],
|
189
|
+
boot_volume_id=oci_core_boot_volume["test_boot_volume"]["id"],
|
190
|
+
instance_id=oci_core_instance["test_instance"]["id"])
|
191
|
+
```
|
192
|
+
For more detailed implementation refer the instance example
|
193
|
+
|
160
194
|
|
161
195
|
:param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
|
162
196
|
:param str boot_volume_id: The OCID of the boot volume.
|
@@ -229,6 +229,15 @@ class AutonomousDatabaseWallet(pulumi.CustomResource):
|
|
229
229
|
password: Optional[pulumi.Input[str]] = None,
|
230
230
|
__props__=None):
|
231
231
|
"""
|
232
|
+
This resource provides the Autonomous Database Wallet resource in Oracle Cloud Infrastructure Database service.
|
233
|
+
|
234
|
+
Creates and downloads a wallet for the specified Autonomous Database.
|
235
|
+
|
236
|
+
If passing the base64 encoded content to a `local_file` resource, please use the `content_base64` attribute of the `local_file` resource.
|
237
|
+
See this example for more details.
|
238
|
+
|
239
|
+
Recreate the resource to create and download a new wallet.
|
240
|
+
|
232
241
|
## Example Usage
|
233
242
|
|
234
243
|
```python
|
@@ -267,6 +276,15 @@ class AutonomousDatabaseWallet(pulumi.CustomResource):
|
|
267
276
|
args: AutonomousDatabaseWalletArgs,
|
268
277
|
opts: Optional[pulumi.ResourceOptions] = None):
|
269
278
|
"""
|
279
|
+
This resource provides the Autonomous Database Wallet resource in Oracle Cloud Infrastructure Database service.
|
280
|
+
|
281
|
+
Creates and downloads a wallet for the specified Autonomous Database.
|
282
|
+
|
283
|
+
If passing the base64 encoded content to a `local_file` resource, please use the `content_base64` attribute of the `local_file` resource.
|
284
|
+
See this example for more details.
|
285
|
+
|
286
|
+
Recreate the resource to create and download a new wallet.
|
287
|
+
|
270
288
|
## Example Usage
|
271
289
|
|
272
290
|
```python
|
@@ -34,12 +34,13 @@ class VmClusterNetworkArgs:
|
|
34
34
|
:param pulumi.Input[str] display_name: The user-friendly name for the Exadata Cloud@Customer VM cluster network. The name does not need to be unique.
|
35
35
|
:param pulumi.Input[str] exadata_infrastructure_id: The Exadata infrastructure [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
36
36
|
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkScanArgs']]] scans: (Updatable) The SCAN details.
|
37
|
-
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]] vm_networks:
|
37
|
+
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]] vm_networks: Details of the client and backup networks.
|
38
38
|
:param pulumi.Input[Mapping[str, Any]] 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).
|
39
39
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] dns: (Updatable) The list of DNS server IP addresses. Maximum of 3 allowed.
|
40
40
|
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkDrScanArgs']]] dr_scans: (Updatable) The SCAN details for DR network
|
41
41
|
:param pulumi.Input[Mapping[str, Any]] 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"}`
|
42
42
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ntps: (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
|
43
|
+
:param pulumi.Input[bool] validate_vm_cluster_network: (Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
43
44
|
"""
|
44
45
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
45
46
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -113,7 +114,7 @@ class VmClusterNetworkArgs:
|
|
113
114
|
@pulumi.getter(name="vmNetworks")
|
114
115
|
def vm_networks(self) -> pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]]:
|
115
116
|
"""
|
116
|
-
|
117
|
+
Details of the client and backup networks.
|
117
118
|
"""
|
118
119
|
return pulumi.get(self, "vm_networks")
|
119
120
|
|
@@ -193,6 +194,9 @@ class VmClusterNetworkArgs:
|
|
193
194
|
@property
|
194
195
|
@pulumi.getter(name="validateVmClusterNetwork")
|
195
196
|
def validate_vm_cluster_network(self) -> Optional[pulumi.Input[bool]]:
|
197
|
+
"""
|
198
|
+
(Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
199
|
+
"""
|
196
200
|
return pulumi.get(self, "validate_vm_cluster_network")
|
197
201
|
|
198
202
|
@validate_vm_cluster_network.setter
|
@@ -233,8 +237,9 @@ class _VmClusterNetworkState:
|
|
233
237
|
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkScanArgs']]] scans: (Updatable) The SCAN details.
|
234
238
|
:param pulumi.Input[str] state: (Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.
|
235
239
|
:param pulumi.Input[str] time_created: The date and time when the VM cluster network was created.
|
240
|
+
:param pulumi.Input[bool] validate_vm_cluster_network: (Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
236
241
|
:param pulumi.Input[str] vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated VM Cluster.
|
237
|
-
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]] vm_networks:
|
242
|
+
:param pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]] vm_networks: Details of the client and backup networks.
|
238
243
|
"""
|
239
244
|
if action is not None:
|
240
245
|
pulumi.set(__self__, "action", action)
|
@@ -425,6 +430,9 @@ class _VmClusterNetworkState:
|
|
425
430
|
@property
|
426
431
|
@pulumi.getter(name="validateVmClusterNetwork")
|
427
432
|
def validate_vm_cluster_network(self) -> Optional[pulumi.Input[bool]]:
|
433
|
+
"""
|
434
|
+
(Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
435
|
+
"""
|
428
436
|
return pulumi.get(self, "validate_vm_cluster_network")
|
429
437
|
|
430
438
|
@validate_vm_cluster_network.setter
|
@@ -447,7 +455,7 @@ class _VmClusterNetworkState:
|
|
447
455
|
@pulumi.getter(name="vmNetworks")
|
448
456
|
def vm_networks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['VmClusterNetworkVmNetworkArgs']]]]:
|
449
457
|
"""
|
450
|
-
|
458
|
+
Details of the client and backup networks.
|
451
459
|
"""
|
452
460
|
return pulumi.get(self, "vm_networks")
|
453
461
|
|
@@ -545,7 +553,8 @@ class VmClusterNetwork(pulumi.CustomResource):
|
|
545
553
|
:param pulumi.Input[Mapping[str, Any]] 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"}`
|
546
554
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ntps: (Updatable) The list of NTP server IP addresses. Maximum of 3 allowed.
|
547
555
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VmClusterNetworkScanArgs']]]] scans: (Updatable) The SCAN details.
|
548
|
-
:param pulumi.Input[
|
556
|
+
:param pulumi.Input[bool] validate_vm_cluster_network: (Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
557
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VmClusterNetworkVmNetworkArgs']]]] vm_networks: Details of the client and backup networks.
|
549
558
|
"""
|
550
559
|
...
|
551
560
|
@overload
|
@@ -720,8 +729,9 @@ class VmClusterNetwork(pulumi.CustomResource):
|
|
720
729
|
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VmClusterNetworkScanArgs']]]] scans: (Updatable) The SCAN details.
|
721
730
|
:param pulumi.Input[str] state: (Updatable) The current state of the VM cluster network nodes. CREATING - The resource is being created REQUIRES_VALIDATION - The resource is created and may not be usable until it is validated. VALIDATING - The resource is being validated and not available to use. VALIDATED - The resource is validated and is available for consumption by VM cluster. VALIDATION_FAILED - The resource validation has failed and might require user input to be corrected. UPDATING - The resource is being updated and not available to use. ALLOCATED - The resource is currently being used by VM cluster. TERMINATING - The resource is being deleted and not available to use. TERMINATED - The resource is deleted and unavailable. FAILED - The resource is in a failed state due to validation or other errors.
|
722
731
|
:param pulumi.Input[str] time_created: The date and time when the VM cluster network was created.
|
732
|
+
:param pulumi.Input[bool] validate_vm_cluster_network: (Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
723
733
|
:param pulumi.Input[str] vm_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the associated VM Cluster.
|
724
|
-
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VmClusterNetworkVmNetworkArgs']]]] vm_networks:
|
734
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['VmClusterNetworkVmNetworkArgs']]]] vm_networks: Details of the client and backup networks.
|
725
735
|
"""
|
726
736
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
727
737
|
|
@@ -849,6 +859,9 @@ class VmClusterNetwork(pulumi.CustomResource):
|
|
849
859
|
@property
|
850
860
|
@pulumi.getter(name="validateVmClusterNetwork")
|
851
861
|
def validate_vm_cluster_network(self) -> pulumi.Output[Optional[bool]]:
|
862
|
+
"""
|
863
|
+
(Updatable) A boolean flag indicating whether or not to validate VM cluster network after creation. Updates are not allowed on validated exadata VM cluster network. Note: Deleting a VM Cluster (Updatable) Details of the client and backup networks.
|
864
|
+
"""
|
852
865
|
return pulumi.get(self, "validate_vm_cluster_network")
|
853
866
|
|
854
867
|
@property
|
@@ -863,7 +876,7 @@ class VmClusterNetwork(pulumi.CustomResource):
|
|
863
876
|
@pulumi.getter(name="vmNetworks")
|
864
877
|
def vm_networks(self) -> pulumi.Output[Sequence['outputs.VmClusterNetworkVmNetwork']]:
|
865
878
|
"""
|
866
|
-
|
879
|
+
Details of the client and backup networks.
|
867
880
|
"""
|
868
881
|
return pulumi.get(self, "vm_networks")
|
869
882
|
|
@@ -0,0 +1,18 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
from .. import _utilities
|
6
|
+
import typing
|
7
|
+
# Export this package's modules as members:
|
8
|
+
from .dedicated_ai_cluster import *
|
9
|
+
from .endpoint import *
|
10
|
+
from .get_dedicated_ai_cluster import *
|
11
|
+
from .get_dedicated_ai_clusters import *
|
12
|
+
from .get_endpoint import *
|
13
|
+
from .get_endpoints import *
|
14
|
+
from .get_model import *
|
15
|
+
from .get_models import *
|
16
|
+
from .model import *
|
17
|
+
from ._inputs import *
|
18
|
+
from . import outputs
|