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.
Files changed (59) hide show
  1. pulumi_oci/__init__.py +0 -43
  2. pulumi_oci/database/__init__.py +0 -11
  3. pulumi_oci/database/_inputs.py +0 -607
  4. pulumi_oci/database/db_node.py +0 -28
  5. pulumi_oci/database/get_backups.py +5 -22
  6. pulumi_oci/database/get_db_node.py +1 -14
  7. pulumi_oci/database/get_db_nodes.py +2 -2
  8. pulumi_oci/database/get_gi_versions.py +5 -22
  9. pulumi_oci/database/outputs.py +0 -2050
  10. pulumi_oci/database/pluggable_database.py +7 -7
  11. pulumi_oci/databasemigration/__init__.py +0 -6
  12. pulumi_oci/databasemigration/_inputs.py +0 -1577
  13. pulumi_oci/databasemigration/get_job_advisor_report.py +10 -2
  14. pulumi_oci/databasemigration/get_migration_object_types.py +13 -24
  15. pulumi_oci/databasemigration/job.py +20 -16
  16. pulumi_oci/databasemigration/outputs.py +72 -4300
  17. pulumi_oci/filestorage/_inputs.py +18 -10
  18. pulumi_oci/filestorage/export.py +7 -28
  19. pulumi_oci/filestorage/file_system.py +35 -159
  20. pulumi_oci/filestorage/outputs.py +34 -55
  21. pulumi_oci/generativeai/_inputs.py +2 -50
  22. pulumi_oci/generativeai/dedicated_ai_cluster.py +2 -30
  23. pulumi_oci/generativeai/endpoint.py +2 -2
  24. pulumi_oci/generativeai/get_dedicated_ai_cluster.py +47 -2
  25. pulumi_oci/generativeai/get_dedicated_ai_clusters.py +14 -2
  26. pulumi_oci/generativeai/get_endpoint.py +26 -2
  27. pulumi_oci/generativeai/get_endpoints.py +8 -2
  28. pulumi_oci/generativeai/get_model.py +38 -2
  29. pulumi_oci/generativeai/get_models.py +8 -2
  30. pulumi_oci/generativeai/model.py +2 -2
  31. pulumi_oci/generativeai/outputs.py +310 -86
  32. pulumi_oci/pulumi-plugin.json +1 -1
  33. {pulumi_oci-2.1.0.dist-info → pulumi_oci-2.1.0a1719905039.dist-info}/METADATA +1 -1
  34. {pulumi_oci-2.1.0.dist-info → pulumi_oci-2.1.0a1719905039.dist-info}/RECORD +36 -59
  35. pulumi_oci/database/exadb_vm_cluster.py +0 -1761
  36. pulumi_oci/database/exascale_db_storage_vault.py +0 -787
  37. pulumi_oci/database/get_exadb_vm_cluster.py +0 -614
  38. pulumi_oci/database/get_exadb_vm_cluster_update.py +0 -226
  39. pulumi_oci/database/get_exadb_vm_cluster_update_history_entries.py +0 -153
  40. pulumi_oci/database/get_exadb_vm_cluster_update_history_entry.py +0 -226
  41. pulumi_oci/database/get_exadb_vm_cluster_updates.py +0 -173
  42. pulumi_oci/database/get_exadb_vm_clusters.py +0 -196
  43. pulumi_oci/database/get_exascale_db_storage_vault.py +0 -301
  44. pulumi_oci/database/get_exascale_db_storage_vaults.py +0 -176
  45. pulumi_oci/database/get_gi_version_minor_versions.py +0 -221
  46. pulumi_oci/databasemigration/connection.py +0 -2019
  47. pulumi_oci/databasemigration/get_connection.py +0 -616
  48. pulumi_oci/databasemigration/get_connections.py +0 -225
  49. pulumi_oci/databasemigration/get_migration.py +0 -427
  50. pulumi_oci/databasemigration/get_migrations.py +0 -407
  51. pulumi_oci/databasemigration/migration.py +0 -1471
  52. pulumi_oci/resourcescheduler/__init__.py +0 -12
  53. pulumi_oci/resourcescheduler/_inputs.py +0 -224
  54. pulumi_oci/resourcescheduler/get_schedule.py +0 -340
  55. pulumi_oci/resourcescheduler/get_schedules.py +0 -193
  56. pulumi_oci/resourcescheduler/outputs.py +0 -687
  57. pulumi_oci/resourcescheduler/schedule.py +0 -977
  58. {pulumi_oci-2.1.0.dist-info → pulumi_oci-2.1.0a1719905039.dist-info}/WHEEL +0 -0
  59. {pulumi_oci-2.1.0.dist-info → pulumi_oci-2.1.0a1719905039.dist-info}/top_level.txt +0 -0
@@ -97,7 +97,7 @@ class GetJobAdvisorReportResult:
97
97
  @pulumi.getter(name="reportLocationDetails")
98
98
  def report_location_details(self) -> Sequence['outputs.GetJobAdvisorReportReportLocationDetailResult']:
99
99
  """
100
- Details to access Premigration Advisor report.
100
+ Details to access Pre-Migration Advisor report.
101
101
  """
102
102
  return pulumi.get(self, "report_location_details")
103
103
 
@@ -105,7 +105,7 @@ class GetJobAdvisorReportResult:
105
105
  @pulumi.getter
106
106
  def result(self) -> str:
107
107
  """
108
- Premigration Advisor result.
108
+ Pre-Migration advisor result.
109
109
  """
110
110
  return pulumi.get(self, "result")
111
111
 
@@ -129,6 +129,10 @@ class AwaitableGetJobAdvisorReportResult(GetJobAdvisorReportResult):
129
129
  def get_job_advisor_report(job_id: Optional[str] = None,
130
130
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetJobAdvisorReportResult:
131
131
  """
132
+ This data source provides details about a specific Job Advisor Report resource in Oracle Cloud Infrastructure Database Migration service.
133
+
134
+ Get the Pre-Migration Advisor report details
135
+
132
136
  ## Example Usage
133
137
 
134
138
  ```python
@@ -161,6 +165,10 @@ def get_job_advisor_report(job_id: Optional[str] = None,
161
165
  def get_job_advisor_report_output(job_id: Optional[pulumi.Input[str]] = None,
162
166
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetJobAdvisorReportResult]:
163
167
  """
168
+ This data source provides details about a specific Job Advisor Report resource in Oracle Cloud Infrastructure Database Migration service.
169
+
170
+ Get the Pre-Migration Advisor report details
171
+
164
172
  ## Example Usage
165
173
 
166
174
  ```python
@@ -23,10 +23,7 @@ class GetMigrationObjectTypesResult:
23
23
  """
24
24
  A collection of values returned by getMigrationObjectTypes.
25
25
  """
26
- def __init__(__self__, connection_type=None, filters=None, id=None, migration_object_type_summary_collections=None):
27
- if connection_type and not isinstance(connection_type, str):
28
- raise TypeError("Expected argument 'connection_type' to be a str")
29
- pulumi.set(__self__, "connection_type", connection_type)
26
+ def __init__(__self__, filters=None, id=None, migration_object_type_summary_collections=None):
30
27
  if filters and not isinstance(filters, list):
31
28
  raise TypeError("Expected argument 'filters' to be a list")
32
29
  pulumi.set(__self__, "filters", filters)
@@ -37,11 +34,6 @@ class GetMigrationObjectTypesResult:
37
34
  raise TypeError("Expected argument 'migration_object_type_summary_collections' to be a list")
38
35
  pulumi.set(__self__, "migration_object_type_summary_collections", migration_object_type_summary_collections)
39
36
 
40
- @property
41
- @pulumi.getter(name="connectionType")
42
- def connection_type(self) -> str:
43
- return pulumi.get(self, "connection_type")
44
-
45
37
  @property
46
38
  @pulumi.getter
47
39
  def filters(self) -> Optional[Sequence['outputs.GetMigrationObjectTypesFilterResult']]:
@@ -70,56 +62,53 @@ class AwaitableGetMigrationObjectTypesResult(GetMigrationObjectTypesResult):
70
62
  if False:
71
63
  yield self
72
64
  return GetMigrationObjectTypesResult(
73
- connection_type=self.connection_type,
74
65
  filters=self.filters,
75
66
  id=self.id,
76
67
  migration_object_type_summary_collections=self.migration_object_type_summary_collections)
77
68
 
78
69
 
79
- def get_migration_object_types(connection_type: Optional[str] = None,
80
- filters: Optional[Sequence[pulumi.InputType['GetMigrationObjectTypesFilterArgs']]] = None,
70
+ def get_migration_object_types(filters: Optional[Sequence[pulumi.InputType['GetMigrationObjectTypesFilterArgs']]] = None,
81
71
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMigrationObjectTypesResult:
82
72
  """
73
+ This data source provides the list of Migration Object Types in Oracle Cloud Infrastructure Database Migration service.
74
+
75
+ Display sample object types to exclude or include for a Migration.
76
+
83
77
  ## Example Usage
84
78
 
85
79
  ```python
86
80
  import pulumi
87
81
  import pulumi_oci as oci
88
82
 
89
- test_migration_object_types = oci.DatabaseMigration.get_migration_object_types(connection_type=migration_object_type_connection_type)
83
+ test_migration_object_types = oci.DatabaseMigration.get_migration_object_types()
90
84
  ```
91
-
92
-
93
- :param str connection_type: The connection type for migration objects.
94
85
  """
95
86
  __args__ = dict()
96
- __args__['connectionType'] = connection_type
97
87
  __args__['filters'] = filters
98
88
  opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
99
89
  __ret__ = pulumi.runtime.invoke('oci:DatabaseMigration/getMigrationObjectTypes:getMigrationObjectTypes', __args__, opts=opts, typ=GetMigrationObjectTypesResult).value
100
90
 
101
91
  return AwaitableGetMigrationObjectTypesResult(
102
- connection_type=pulumi.get(__ret__, 'connection_type'),
103
92
  filters=pulumi.get(__ret__, 'filters'),
104
93
  id=pulumi.get(__ret__, 'id'),
105
94
  migration_object_type_summary_collections=pulumi.get(__ret__, 'migration_object_type_summary_collections'))
106
95
 
107
96
 
108
97
  @_utilities.lift_output_func(get_migration_object_types)
109
- def get_migration_object_types_output(connection_type: Optional[pulumi.Input[str]] = None,
110
- filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetMigrationObjectTypesFilterArgs']]]]] = None,
98
+ def get_migration_object_types_output(filters: Optional[pulumi.Input[Optional[Sequence[pulumi.InputType['GetMigrationObjectTypesFilterArgs']]]]] = None,
111
99
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetMigrationObjectTypesResult]:
112
100
  """
101
+ This data source provides the list of Migration Object Types in Oracle Cloud Infrastructure Database Migration service.
102
+
103
+ Display sample object types to exclude or include for a Migration.
104
+
113
105
  ## Example Usage
114
106
 
115
107
  ```python
116
108
  import pulumi
117
109
  import pulumi_oci as oci
118
110
 
119
- test_migration_object_types = oci.DatabaseMigration.get_migration_object_types(connection_type=migration_object_type_connection_type)
111
+ test_migration_object_types = oci.DatabaseMigration.get_migration_object_types()
120
112
  ```
121
-
122
-
123
- :param str connection_type: The connection type for migration objects.
124
113
  """
125
114
  ...
@@ -22,14 +22,14 @@ class JobArgs:
22
22
  freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None):
23
23
  """
24
24
  The set of arguments for constructing a Job resource.
25
- :param pulumi.Input[str] job_id: The OCID of the job
25
+ :param pulumi.Input[str] job_id: The OCID of the job
26
26
 
27
27
 
28
28
  ** IMPORTANT **
29
29
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
30
30
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
31
31
  :param pulumi.Input[str] display_name: (Updatable) Name of the job.
32
- :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. Example: {"Department": "Finance"}
32
+ :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
33
33
  """
34
34
  pulumi.set(__self__, "job_id", job_id)
35
35
  if defined_tags is not None:
@@ -43,7 +43,7 @@ class JobArgs:
43
43
  @pulumi.getter(name="jobId")
44
44
  def job_id(self) -> pulumi.Input[str]:
45
45
  """
46
- The OCID of the job
46
+ The OCID of the job
47
47
 
48
48
 
49
49
  ** IMPORTANT **
@@ -83,7 +83,7 @@ class JobArgs:
83
83
  @pulumi.getter(name="freeformTags")
84
84
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
85
85
  """
86
- (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. Example: {"Department": "Finance"}
86
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
87
87
  """
88
88
  return pulumi.get(self, "freeform_tags")
89
89
 
@@ -112,8 +112,8 @@ class _JobState:
112
112
  Input properties used for looking up and filtering Job resources.
113
113
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
114
114
  :param pulumi.Input[str] display_name: (Updatable) Name of the job.
115
- :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. Example: {"Department": "Finance"}
116
- :param pulumi.Input[str] job_id: The OCID of the job
115
+ :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
116
+ :param pulumi.Input[str] job_id: The OCID of the job
117
117
 
118
118
 
119
119
  ** IMPORTANT **
@@ -183,7 +183,7 @@ class _JobState:
183
183
  @pulumi.getter(name="freeformTags")
184
184
  def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
185
185
  """
186
- (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. Example: {"Department": "Finance"}
186
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
187
187
  """
188
188
  return pulumi.get(self, "freeform_tags")
189
189
 
@@ -195,7 +195,7 @@ class _JobState:
195
195
  @pulumi.getter(name="jobId")
196
196
  def job_id(self) -> Optional[pulumi.Input[str]]:
197
197
  """
198
- The OCID of the job
198
+ The OCID of the job
199
199
 
200
200
 
201
201
  ** IMPORTANT **
@@ -327,7 +327,9 @@ class Job(pulumi.CustomResource):
327
327
  job_id: Optional[pulumi.Input[str]] = None,
328
328
  __props__=None):
329
329
  """
330
- ## Example Usage
330
+ This resource provides the Job resource in Oracle Cloud Infrastructure Database Migration service.
331
+
332
+ Update Migration Job resource details.
331
333
 
332
334
  ## Import
333
335
 
@@ -341,8 +343,8 @@ class Job(pulumi.CustomResource):
341
343
  :param pulumi.ResourceOptions opts: Options for the resource.
342
344
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
343
345
  :param pulumi.Input[str] display_name: (Updatable) Name of the job.
344
- :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. Example: {"Department": "Finance"}
345
- :param pulumi.Input[str] job_id: The OCID of the job
346
+ :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
347
+ :param pulumi.Input[str] job_id: The OCID of the job
346
348
 
347
349
 
348
350
  ** IMPORTANT **
@@ -355,7 +357,9 @@ class Job(pulumi.CustomResource):
355
357
  args: JobArgs,
356
358
  opts: Optional[pulumi.ResourceOptions] = None):
357
359
  """
358
- ## Example Usage
360
+ This resource provides the Job resource in Oracle Cloud Infrastructure Database Migration service.
361
+
362
+ Update Migration Job resource details.
359
363
 
360
364
  ## Import
361
365
 
@@ -440,8 +444,8 @@ class Job(pulumi.CustomResource):
440
444
  :param pulumi.ResourceOptions opts: Options for the resource.
441
445
  :param pulumi.Input[Mapping[str, Any]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
442
446
  :param pulumi.Input[str] display_name: (Updatable) Name of the job.
443
- :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. Example: {"Department": "Finance"}
444
- :param pulumi.Input[str] job_id: The OCID of the job
447
+ :param pulumi.Input[Mapping[str, Any]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
448
+ :param pulumi.Input[str] job_id: The OCID of the job
445
449
 
446
450
 
447
451
  ** IMPORTANT **
@@ -495,7 +499,7 @@ class Job(pulumi.CustomResource):
495
499
  @pulumi.getter(name="freeformTags")
496
500
  def freeform_tags(self) -> pulumi.Output[Mapping[str, Any]]:
497
501
  """
498
- (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. Example: {"Department": "Finance"}
502
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
499
503
  """
500
504
  return pulumi.get(self, "freeform_tags")
501
505
 
@@ -503,7 +507,7 @@ class Job(pulumi.CustomResource):
503
507
  @pulumi.getter(name="jobId")
504
508
  def job_id(self) -> pulumi.Output[str]:
505
509
  """
506
- The OCID of the job
510
+ The OCID of the job
507
511
 
508
512
 
509
513
  ** IMPORTANT **