pulumi-oci 2.1.0a1719958917__py3-none-any.whl → 2.1.0a1720054142__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.
Files changed (59) hide show
  1. pulumi_oci/__init__.py +43 -0
  2. pulumi_oci/database/__init__.py +11 -0
  3. pulumi_oci/database/_inputs.py +607 -0
  4. pulumi_oci/database/db_node.py +28 -0
  5. pulumi_oci/database/exadb_vm_cluster.py +1761 -0
  6. pulumi_oci/database/exascale_db_storage_vault.py +787 -0
  7. pulumi_oci/database/get_backups.py +22 -5
  8. pulumi_oci/database/get_db_node.py +14 -1
  9. pulumi_oci/database/get_db_nodes.py +2 -2
  10. pulumi_oci/database/get_exadb_vm_cluster.py +614 -0
  11. pulumi_oci/database/get_exadb_vm_cluster_update.py +226 -0
  12. pulumi_oci/database/get_exadb_vm_cluster_update_history_entries.py +153 -0
  13. pulumi_oci/database/get_exadb_vm_cluster_update_history_entry.py +226 -0
  14. pulumi_oci/database/get_exadb_vm_cluster_updates.py +173 -0
  15. pulumi_oci/database/get_exadb_vm_clusters.py +196 -0
  16. pulumi_oci/database/get_exascale_db_storage_vault.py +301 -0
  17. pulumi_oci/database/get_exascale_db_storage_vaults.py +176 -0
  18. pulumi_oci/database/get_gi_version_minor_versions.py +221 -0
  19. pulumi_oci/database/get_gi_versions.py +22 -5
  20. pulumi_oci/database/outputs.py +2050 -0
  21. pulumi_oci/database/pluggable_database.py +7 -7
  22. pulumi_oci/databasemigration/__init__.py +6 -0
  23. pulumi_oci/databasemigration/_inputs.py +1577 -0
  24. pulumi_oci/databasemigration/connection.py +2019 -0
  25. pulumi_oci/databasemigration/get_connection.py +616 -0
  26. pulumi_oci/databasemigration/get_connections.py +225 -0
  27. pulumi_oci/databasemigration/get_job_advisor_report.py +2 -10
  28. pulumi_oci/databasemigration/get_migration.py +427 -0
  29. pulumi_oci/databasemigration/get_migration_object_types.py +24 -13
  30. pulumi_oci/databasemigration/get_migrations.py +407 -0
  31. pulumi_oci/databasemigration/job.py +16 -20
  32. pulumi_oci/databasemigration/migration.py +1471 -0
  33. pulumi_oci/databasemigration/outputs.py +4301 -73
  34. pulumi_oci/filestorage/_inputs.py +10 -18
  35. pulumi_oci/filestorage/export.py +28 -7
  36. pulumi_oci/filestorage/file_system.py +159 -35
  37. pulumi_oci/filestorage/outputs.py +55 -34
  38. pulumi_oci/generativeai/_inputs.py +50 -2
  39. pulumi_oci/generativeai/dedicated_ai_cluster.py +30 -2
  40. pulumi_oci/generativeai/endpoint.py +2 -2
  41. pulumi_oci/generativeai/get_dedicated_ai_cluster.py +2 -47
  42. pulumi_oci/generativeai/get_dedicated_ai_clusters.py +2 -14
  43. pulumi_oci/generativeai/get_endpoint.py +2 -26
  44. pulumi_oci/generativeai/get_endpoints.py +2 -8
  45. pulumi_oci/generativeai/get_model.py +2 -38
  46. pulumi_oci/generativeai/get_models.py +2 -8
  47. pulumi_oci/generativeai/model.py +2 -2
  48. pulumi_oci/generativeai/outputs.py +86 -310
  49. pulumi_oci/pulumi-plugin.json +1 -1
  50. pulumi_oci/resourcescheduler/__init__.py +12 -0
  51. pulumi_oci/resourcescheduler/_inputs.py +224 -0
  52. pulumi_oci/resourcescheduler/get_schedule.py +340 -0
  53. pulumi_oci/resourcescheduler/get_schedules.py +193 -0
  54. pulumi_oci/resourcescheduler/outputs.py +687 -0
  55. pulumi_oci/resourcescheduler/schedule.py +977 -0
  56. {pulumi_oci-2.1.0a1719958917.dist-info → pulumi_oci-2.1.0a1720054142.dist-info}/METADATA +1 -1
  57. {pulumi_oci-2.1.0a1719958917.dist-info → pulumi_oci-2.1.0a1720054142.dist-info}/RECORD +59 -36
  58. {pulumi_oci-2.1.0a1719958917.dist-info → pulumi_oci-2.1.0a1720054142.dist-info}/WHEEL +0 -0
  59. {pulumi_oci-2.1.0a1719958917.dist-info → pulumi_oci-2.1.0a1720054142.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,193 @@
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
+ ...