pulumi-oci 2.1.0__py3-none-any.whl → 2.1.0a1719905039__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 +0 -43
- pulumi_oci/database/__init__.py +0 -11
- pulumi_oci/database/_inputs.py +0 -607
- pulumi_oci/database/db_node.py +0 -28
- pulumi_oci/database/get_backups.py +5 -22
- pulumi_oci/database/get_db_node.py +1 -14
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_gi_versions.py +5 -22
- pulumi_oci/database/outputs.py +0 -2050
- pulumi_oci/database/pluggable_database.py +7 -7
- pulumi_oci/databasemigration/__init__.py +0 -6
- pulumi_oci/databasemigration/_inputs.py +0 -1577
- pulumi_oci/databasemigration/get_job_advisor_report.py +10 -2
- pulumi_oci/databasemigration/get_migration_object_types.py +13 -24
- pulumi_oci/databasemigration/job.py +20 -16
- pulumi_oci/databasemigration/outputs.py +72 -4300
- pulumi_oci/filestorage/_inputs.py +18 -10
- pulumi_oci/filestorage/export.py +7 -28
- pulumi_oci/filestorage/file_system.py +35 -159
- pulumi_oci/filestorage/outputs.py +34 -55
- pulumi_oci/generativeai/_inputs.py +2 -50
- pulumi_oci/generativeai/dedicated_ai_cluster.py +2 -30
- pulumi_oci/generativeai/endpoint.py +2 -2
- pulumi_oci/generativeai/get_dedicated_ai_cluster.py +47 -2
- pulumi_oci/generativeai/get_dedicated_ai_clusters.py +14 -2
- pulumi_oci/generativeai/get_endpoint.py +26 -2
- pulumi_oci/generativeai/get_endpoints.py +8 -2
- pulumi_oci/generativeai/get_model.py +38 -2
- pulumi_oci/generativeai/get_models.py +8 -2
- pulumi_oci/generativeai/model.py +2 -2
- pulumi_oci/generativeai/outputs.py +310 -86
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.1.0.dist-info → pulumi_oci-2.1.0a1719905039.dist-info}/METADATA +1 -1
- {pulumi_oci-2.1.0.dist-info → pulumi_oci-2.1.0a1719905039.dist-info}/RECORD +36 -59
- pulumi_oci/database/exadb_vm_cluster.py +0 -1761
- pulumi_oci/database/exascale_db_storage_vault.py +0 -787
- pulumi_oci/database/get_exadb_vm_cluster.py +0 -614
- pulumi_oci/database/get_exadb_vm_cluster_update.py +0 -226
- pulumi_oci/database/get_exadb_vm_cluster_update_history_entries.py +0 -153
- pulumi_oci/database/get_exadb_vm_cluster_update_history_entry.py +0 -226
- pulumi_oci/database/get_exadb_vm_cluster_updates.py +0 -173
- pulumi_oci/database/get_exadb_vm_clusters.py +0 -196
- pulumi_oci/database/get_exascale_db_storage_vault.py +0 -301
- pulumi_oci/database/get_exascale_db_storage_vaults.py +0 -176
- pulumi_oci/database/get_gi_version_minor_versions.py +0 -221
- pulumi_oci/databasemigration/connection.py +0 -2019
- pulumi_oci/databasemigration/get_connection.py +0 -616
- pulumi_oci/databasemigration/get_connections.py +0 -225
- pulumi_oci/databasemigration/get_migration.py +0 -427
- pulumi_oci/databasemigration/get_migrations.py +0 -407
- pulumi_oci/databasemigration/migration.py +0 -1471
- pulumi_oci/resourcescheduler/__init__.py +0 -12
- pulumi_oci/resourcescheduler/_inputs.py +0 -224
- pulumi_oci/resourcescheduler/get_schedule.py +0 -340
- pulumi_oci/resourcescheduler/get_schedules.py +0 -193
- pulumi_oci/resourcescheduler/outputs.py +0 -687
- pulumi_oci/resourcescheduler/schedule.py +0 -977
- {pulumi_oci-2.1.0.dist-info → pulumi_oci-2.1.0a1719905039.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.1.0.dist-info → pulumi_oci-2.1.0a1719905039.dist-info}/top_level.txt +0 -0
@@ -1,193 +0,0 @@
|
|
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
|
-
import copy
|
6
|
-
import warnings
|
7
|
-
import pulumi
|
8
|
-
import pulumi.runtime
|
9
|
-
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
-
from .. import _utilities
|
11
|
-
from . import outputs
|
12
|
-
from ._inputs import *
|
13
|
-
|
14
|
-
__all__ = [
|
15
|
-
'GetSchedulesResult',
|
16
|
-
'AwaitableGetSchedulesResult',
|
17
|
-
'get_schedules',
|
18
|
-
'get_schedules_output',
|
19
|
-
]
|
20
|
-
|
21
|
-
@pulumi.output_type
|
22
|
-
class GetSchedulesResult:
|
23
|
-
"""
|
24
|
-
A collection of values returned by getSchedules.
|
25
|
-
"""
|
26
|
-
def __init__(__self__, compartment_id=None, display_name=None, filters=None, id=None, schedule_collections=None, schedule_id=None, state=None):
|
27
|
-
if compartment_id and not isinstance(compartment_id, str):
|
28
|
-
raise TypeError("Expected argument 'compartment_id' to be a str")
|
29
|
-
pulumi.set(__self__, "compartment_id", compartment_id)
|
30
|
-
if display_name and not isinstance(display_name, str):
|
31
|
-
raise TypeError("Expected argument 'display_name' to be a str")
|
32
|
-
pulumi.set(__self__, "display_name", display_name)
|
33
|
-
if filters and not isinstance(filters, list):
|
34
|
-
raise TypeError("Expected argument 'filters' to be a list")
|
35
|
-
pulumi.set(__self__, "filters", filters)
|
36
|
-
if id and not isinstance(id, str):
|
37
|
-
raise TypeError("Expected argument 'id' to be a str")
|
38
|
-
pulumi.set(__self__, "id", id)
|
39
|
-
if schedule_collections and not isinstance(schedule_collections, list):
|
40
|
-
raise TypeError("Expected argument 'schedule_collections' to be a list")
|
41
|
-
pulumi.set(__self__, "schedule_collections", schedule_collections)
|
42
|
-
if schedule_id and not isinstance(schedule_id, str):
|
43
|
-
raise TypeError("Expected argument 'schedule_id' to be a str")
|
44
|
-
pulumi.set(__self__, "schedule_id", schedule_id)
|
45
|
-
if state and not isinstance(state, str):
|
46
|
-
raise TypeError("Expected argument 'state' to be a str")
|
47
|
-
pulumi.set(__self__, "state", state)
|
48
|
-
|
49
|
-
@property
|
50
|
-
@pulumi.getter(name="compartmentId")
|
51
|
-
def compartment_id(self) -> Optional[str]:
|
52
|
-
"""
|
53
|
-
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the schedule is created
|
54
|
-
"""
|
55
|
-
return pulumi.get(self, "compartment_id")
|
56
|
-
|
57
|
-
@property
|
58
|
-
@pulumi.getter(name="displayName")
|
59
|
-
def display_name(self) -> Optional[str]:
|
60
|
-
"""
|
61
|
-
This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
|
62
|
-
"""
|
63
|
-
return pulumi.get(self, "display_name")
|
64
|
-
|
65
|
-
@property
|
66
|
-
@pulumi.getter
|
67
|
-
def filters(self) -> Optional[Sequence['outputs.GetSchedulesFilterResult']]:
|
68
|
-
return pulumi.get(self, "filters")
|
69
|
-
|
70
|
-
@property
|
71
|
-
@pulumi.getter
|
72
|
-
def id(self) -> str:
|
73
|
-
"""
|
74
|
-
The provider-assigned unique ID for this managed resource.
|
75
|
-
"""
|
76
|
-
return pulumi.get(self, "id")
|
77
|
-
|
78
|
-
@property
|
79
|
-
@pulumi.getter(name="scheduleCollections")
|
80
|
-
def schedule_collections(self) -> Sequence['outputs.GetSchedulesScheduleCollectionResult']:
|
81
|
-
"""
|
82
|
-
The list of schedule_collection.
|
83
|
-
"""
|
84
|
-
return pulumi.get(self, "schedule_collections")
|
85
|
-
|
86
|
-
@property
|
87
|
-
@pulumi.getter(name="scheduleId")
|
88
|
-
def schedule_id(self) -> Optional[str]:
|
89
|
-
return pulumi.get(self, "schedule_id")
|
90
|
-
|
91
|
-
@property
|
92
|
-
@pulumi.getter
|
93
|
-
def state(self) -> Optional[str]:
|
94
|
-
"""
|
95
|
-
This is the current state of a schedule.
|
96
|
-
"""
|
97
|
-
return pulumi.get(self, "state")
|
98
|
-
|
99
|
-
|
100
|
-
class AwaitableGetSchedulesResult(GetSchedulesResult):
|
101
|
-
# pylint: disable=using-constant-test
|
102
|
-
def __await__(self):
|
103
|
-
if False:
|
104
|
-
yield self
|
105
|
-
return GetSchedulesResult(
|
106
|
-
compartment_id=self.compartment_id,
|
107
|
-
display_name=self.display_name,
|
108
|
-
filters=self.filters,
|
109
|
-
id=self.id,
|
110
|
-
schedule_collections=self.schedule_collections,
|
111
|
-
schedule_id=self.schedule_id,
|
112
|
-
state=self.state)
|
113
|
-
|
114
|
-
|
115
|
-
def get_schedules(compartment_id: Optional[str] = None,
|
116
|
-
display_name: Optional[str] = None,
|
117
|
-
filters: Optional[Sequence[pulumi.InputType['GetSchedulesFilterArgs']]] = None,
|
118
|
-
schedule_id: Optional[str] = None,
|
119
|
-
state: Optional[str] = None,
|
120
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSchedulesResult:
|
121
|
-
"""
|
122
|
-
This data source provides the list of Schedules in Oracle Cloud Infrastructure Resource Scheduler service.
|
123
|
-
|
124
|
-
This API gets a list of schedules
|
125
|
-
|
126
|
-
## Example Usage
|
127
|
-
|
128
|
-
```python
|
129
|
-
import pulumi
|
130
|
-
import pulumi_oci as oci
|
131
|
-
|
132
|
-
test_schedules = oci.ResourceScheduler.get_schedules(compartment_id=compartment_id,
|
133
|
-
display_name=schedule_display_name,
|
134
|
-
schedule_id=test_schedule["id"],
|
135
|
-
state=schedule_state)
|
136
|
-
```
|
137
|
-
|
138
|
-
|
139
|
-
:param str compartment_id: This is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
140
|
-
:param str display_name: This is a filter to return only resources that match the given display name exactly.
|
141
|
-
:param str schedule_id: This is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the schedule.
|
142
|
-
:param str state: This is a filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
143
|
-
"""
|
144
|
-
__args__ = dict()
|
145
|
-
__args__['compartmentId'] = compartment_id
|
146
|
-
__args__['displayName'] = display_name
|
147
|
-
__args__['filters'] = filters
|
148
|
-
__args__['scheduleId'] = schedule_id
|
149
|
-
__args__['state'] = state
|
150
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
151
|
-
__ret__ = pulumi.runtime.invoke('oci:ResourceScheduler/getSchedules:getSchedules', __args__, opts=opts, typ=GetSchedulesResult).value
|
152
|
-
|
153
|
-
return AwaitableGetSchedulesResult(
|
154
|
-
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
155
|
-
display_name=pulumi.get(__ret__, 'display_name'),
|
156
|
-
filters=pulumi.get(__ret__, 'filters'),
|
157
|
-
id=pulumi.get(__ret__, 'id'),
|
158
|
-
schedule_collections=pulumi.get(__ret__, 'schedule_collections'),
|
159
|
-
schedule_id=pulumi.get(__ret__, 'schedule_id'),
|
160
|
-
state=pulumi.get(__ret__, 'state'))
|
161
|
-
|
162
|
-
|
163
|
-
@_utilities.lift_output_func(get_schedules)
|
164
|
-
def get_schedules_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
|
165
|
-
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
166
|
-
filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetSchedulesFilterArgs']]]]] = None,
|
167
|
-
schedule_id: Optional[pulumi.Input[Optional[str]]] = None,
|
168
|
-
state: Optional[pulumi.Input[Optional[str]]] = None,
|
169
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSchedulesResult]:
|
170
|
-
"""
|
171
|
-
This data source provides the list of Schedules in Oracle Cloud Infrastructure Resource Scheduler service.
|
172
|
-
|
173
|
-
This API gets a list of schedules
|
174
|
-
|
175
|
-
## Example Usage
|
176
|
-
|
177
|
-
```python
|
178
|
-
import pulumi
|
179
|
-
import pulumi_oci as oci
|
180
|
-
|
181
|
-
test_schedules = oci.ResourceScheduler.get_schedules(compartment_id=compartment_id,
|
182
|
-
display_name=schedule_display_name,
|
183
|
-
schedule_id=test_schedule["id"],
|
184
|
-
state=schedule_state)
|
185
|
-
```
|
186
|
-
|
187
|
-
|
188
|
-
:param str compartment_id: This is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
189
|
-
:param str display_name: This is a filter to return only resources that match the given display name exactly.
|
190
|
-
:param str schedule_id: This is the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the schedule.
|
191
|
-
:param str state: This is a filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
192
|
-
"""
|
193
|
-
...
|