pulumi-oci 1.23.0a1708018020__py3-none-any.whl → 1.24.0__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.
@@ -11,11 +11,13 @@ from .. import _utilities
11
11
 
12
12
  __all__ = [
13
13
  'JobJobConfigurationDetailsArgs',
14
+ 'JobJobEnvironmentConfigurationDetailsArgs',
14
15
  'JobJobInfrastructureConfigurationDetailsArgs',
15
16
  'JobJobInfrastructureConfigurationDetailsJobShapeConfigDetailsArgs',
16
17
  'JobJobLogConfigurationDetailsArgs',
17
18
  'JobJobStorageMountConfigurationDetailsListArgs',
18
19
  'JobRunJobConfigurationOverrideDetailsArgs',
20
+ 'JobRunJobEnvironmentConfigurationOverrideDetailsArgs',
19
21
  'JobRunJobInfrastructureConfigurationDetailArgs',
20
22
  'JobRunJobInfrastructureConfigurationDetailJobShapeConfigDetailArgs',
21
23
  'JobRunJobLogConfigurationOverrideDetailsArgs',
@@ -142,6 +144,107 @@ class JobJobConfigurationDetailsArgs:
142
144
  pulumi.set(self, "maximum_runtime_in_minutes", value)
143
145
 
144
146
 
147
+ @pulumi.input_type
148
+ class JobJobEnvironmentConfigurationDetailsArgs:
149
+ def __init__(__self__, *,
150
+ image: pulumi.Input[str],
151
+ job_environment_type: pulumi.Input[str],
152
+ cmds: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
153
+ entrypoints: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
154
+ image_digest: Optional[pulumi.Input[str]] = None,
155
+ image_signature_id: Optional[pulumi.Input[str]] = None):
156
+ """
157
+ :param pulumi.Input[str] image: The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format. Acceptable format: `<region>.ocir.io/<registry>/<image>:<tag>` `<region>.ocir.io/<registry>/<image>:<tag>@digest`
158
+ :param pulumi.Input[str] job_environment_type: The environment configuration type used for job runtime.
159
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] cmds: The container image run [CMD](https://docs.docker.com/engine/reference/builder/#cmd) as a list of strings. Use `CMD` as arguments to the `ENTRYPOINT` or the only command to run in the absence of an `ENTRYPOINT`. The combined size of `CMD` and `ENTRYPOINT` must be less than 2048 bytes.
160
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] entrypoints: The container image run [ENTRYPOINT](https://docs.docker.com/engine/reference/builder/#entrypoint) as a list of strings. Accept the `CMD` as extra arguments. The combined size of `CMD` and `ENTRYPOINT` must be less than 2048 bytes. More information on how `CMD` and `ENTRYPOINT` interact are [here](https://docs.docker.com/engine/reference/builder/#understand-how-cmd-and-entrypoint-interact).
161
+ :param pulumi.Input[str] image_digest: The digest of the container image. For example, `sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030`
162
+ :param pulumi.Input[str] image_signature_id: OCID of the container image signature
163
+ """
164
+ pulumi.set(__self__, "image", image)
165
+ pulumi.set(__self__, "job_environment_type", job_environment_type)
166
+ if cmds is not None:
167
+ pulumi.set(__self__, "cmds", cmds)
168
+ if entrypoints is not None:
169
+ pulumi.set(__self__, "entrypoints", entrypoints)
170
+ if image_digest is not None:
171
+ pulumi.set(__self__, "image_digest", image_digest)
172
+ if image_signature_id is not None:
173
+ pulumi.set(__self__, "image_signature_id", image_signature_id)
174
+
175
+ @property
176
+ @pulumi.getter
177
+ def image(self) -> pulumi.Input[str]:
178
+ """
179
+ The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format. Acceptable format: `<region>.ocir.io/<registry>/<image>:<tag>` `<region>.ocir.io/<registry>/<image>:<tag>@digest`
180
+ """
181
+ return pulumi.get(self, "image")
182
+
183
+ @image.setter
184
+ def image(self, value: pulumi.Input[str]):
185
+ pulumi.set(self, "image", value)
186
+
187
+ @property
188
+ @pulumi.getter(name="jobEnvironmentType")
189
+ def job_environment_type(self) -> pulumi.Input[str]:
190
+ """
191
+ The environment configuration type used for job runtime.
192
+ """
193
+ return pulumi.get(self, "job_environment_type")
194
+
195
+ @job_environment_type.setter
196
+ def job_environment_type(self, value: pulumi.Input[str]):
197
+ pulumi.set(self, "job_environment_type", value)
198
+
199
+ @property
200
+ @pulumi.getter
201
+ def cmds(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
202
+ """
203
+ The container image run [CMD](https://docs.docker.com/engine/reference/builder/#cmd) as a list of strings. Use `CMD` as arguments to the `ENTRYPOINT` or the only command to run in the absence of an `ENTRYPOINT`. The combined size of `CMD` and `ENTRYPOINT` must be less than 2048 bytes.
204
+ """
205
+ return pulumi.get(self, "cmds")
206
+
207
+ @cmds.setter
208
+ def cmds(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
209
+ pulumi.set(self, "cmds", value)
210
+
211
+ @property
212
+ @pulumi.getter
213
+ def entrypoints(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
214
+ """
215
+ The container image run [ENTRYPOINT](https://docs.docker.com/engine/reference/builder/#entrypoint) as a list of strings. Accept the `CMD` as extra arguments. The combined size of `CMD` and `ENTRYPOINT` must be less than 2048 bytes. More information on how `CMD` and `ENTRYPOINT` interact are [here](https://docs.docker.com/engine/reference/builder/#understand-how-cmd-and-entrypoint-interact).
216
+ """
217
+ return pulumi.get(self, "entrypoints")
218
+
219
+ @entrypoints.setter
220
+ def entrypoints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
221
+ pulumi.set(self, "entrypoints", value)
222
+
223
+ @property
224
+ @pulumi.getter(name="imageDigest")
225
+ def image_digest(self) -> Optional[pulumi.Input[str]]:
226
+ """
227
+ The digest of the container image. For example, `sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030`
228
+ """
229
+ return pulumi.get(self, "image_digest")
230
+
231
+ @image_digest.setter
232
+ def image_digest(self, value: Optional[pulumi.Input[str]]):
233
+ pulumi.set(self, "image_digest", value)
234
+
235
+ @property
236
+ @pulumi.getter(name="imageSignatureId")
237
+ def image_signature_id(self) -> Optional[pulumi.Input[str]]:
238
+ """
239
+ OCID of the container image signature
240
+ """
241
+ return pulumi.get(self, "image_signature_id")
242
+
243
+ @image_signature_id.setter
244
+ def image_signature_id(self, value: Optional[pulumi.Input[str]]):
245
+ pulumi.set(self, "image_signature_id", value)
246
+
247
+
145
248
  @pulumi.input_type
146
249
  class JobJobInfrastructureConfigurationDetailsArgs:
147
250
  def __init__(__self__, *,
@@ -539,6 +642,107 @@ class JobRunJobConfigurationOverrideDetailsArgs:
539
642
  pulumi.set(self, "maximum_runtime_in_minutes", value)
540
643
 
541
644
 
645
+ @pulumi.input_type
646
+ class JobRunJobEnvironmentConfigurationOverrideDetailsArgs:
647
+ def __init__(__self__, *,
648
+ image: pulumi.Input[str],
649
+ job_environment_type: pulumi.Input[str],
650
+ cmds: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
651
+ entrypoints: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
652
+ image_digest: Optional[pulumi.Input[str]] = None,
653
+ image_signature_id: Optional[pulumi.Input[str]] = None):
654
+ """
655
+ :param pulumi.Input[str] image: The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format. Acceptable format: `<region>.ocir.io/<registry>/<image>:<tag>` `<region>.ocir.io/<registry>/<image>:<tag>@digest`
656
+ :param pulumi.Input[str] job_environment_type: The environment configuration type used for job runtime.
657
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] cmds: The container image run [CMD](https://docs.docker.com/engine/reference/builder/#cmd) as a list of strings. Use `CMD` as arguments to the `ENTRYPOINT` or the only command to run in the absence of an `ENTRYPOINT`. The combined size of `CMD` and `ENTRYPOINT` must be less than 2048 bytes.
658
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] entrypoints: The container image run [ENTRYPOINT](https://docs.docker.com/engine/reference/builder/#entrypoint) as a list of strings. Accept the `CMD` as extra arguments. The combined size of `CMD` and `ENTRYPOINT` must be less than 2048 bytes. More information on how `CMD` and `ENTRYPOINT` interact are [here](https://docs.docker.com/engine/reference/builder/#understand-how-cmd-and-entrypoint-interact).
659
+ :param pulumi.Input[str] image_digest: The digest of the container image. For example, `sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030`
660
+ :param pulumi.Input[str] image_signature_id: OCID of the container image signature
661
+ """
662
+ pulumi.set(__self__, "image", image)
663
+ pulumi.set(__self__, "job_environment_type", job_environment_type)
664
+ if cmds is not None:
665
+ pulumi.set(__self__, "cmds", cmds)
666
+ if entrypoints is not None:
667
+ pulumi.set(__self__, "entrypoints", entrypoints)
668
+ if image_digest is not None:
669
+ pulumi.set(__self__, "image_digest", image_digest)
670
+ if image_signature_id is not None:
671
+ pulumi.set(__self__, "image_signature_id", image_signature_id)
672
+
673
+ @property
674
+ @pulumi.getter
675
+ def image(self) -> pulumi.Input[str]:
676
+ """
677
+ The full path to the Oracle Container Repository (OCIR) registry, image, and tag in a canonical format. Acceptable format: `<region>.ocir.io/<registry>/<image>:<tag>` `<region>.ocir.io/<registry>/<image>:<tag>@digest`
678
+ """
679
+ return pulumi.get(self, "image")
680
+
681
+ @image.setter
682
+ def image(self, value: pulumi.Input[str]):
683
+ pulumi.set(self, "image", value)
684
+
685
+ @property
686
+ @pulumi.getter(name="jobEnvironmentType")
687
+ def job_environment_type(self) -> pulumi.Input[str]:
688
+ """
689
+ The environment configuration type used for job runtime.
690
+ """
691
+ return pulumi.get(self, "job_environment_type")
692
+
693
+ @job_environment_type.setter
694
+ def job_environment_type(self, value: pulumi.Input[str]):
695
+ pulumi.set(self, "job_environment_type", value)
696
+
697
+ @property
698
+ @pulumi.getter
699
+ def cmds(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
700
+ """
701
+ The container image run [CMD](https://docs.docker.com/engine/reference/builder/#cmd) as a list of strings. Use `CMD` as arguments to the `ENTRYPOINT` or the only command to run in the absence of an `ENTRYPOINT`. The combined size of `CMD` and `ENTRYPOINT` must be less than 2048 bytes.
702
+ """
703
+ return pulumi.get(self, "cmds")
704
+
705
+ @cmds.setter
706
+ def cmds(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
707
+ pulumi.set(self, "cmds", value)
708
+
709
+ @property
710
+ @pulumi.getter
711
+ def entrypoints(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
712
+ """
713
+ The container image run [ENTRYPOINT](https://docs.docker.com/engine/reference/builder/#entrypoint) as a list of strings. Accept the `CMD` as extra arguments. The combined size of `CMD` and `ENTRYPOINT` must be less than 2048 bytes. More information on how `CMD` and `ENTRYPOINT` interact are [here](https://docs.docker.com/engine/reference/builder/#understand-how-cmd-and-entrypoint-interact).
714
+ """
715
+ return pulumi.get(self, "entrypoints")
716
+
717
+ @entrypoints.setter
718
+ def entrypoints(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
719
+ pulumi.set(self, "entrypoints", value)
720
+
721
+ @property
722
+ @pulumi.getter(name="imageDigest")
723
+ def image_digest(self) -> Optional[pulumi.Input[str]]:
724
+ """
725
+ The digest of the container image. For example, `sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030`
726
+ """
727
+ return pulumi.get(self, "image_digest")
728
+
729
+ @image_digest.setter
730
+ def image_digest(self, value: Optional[pulumi.Input[str]]):
731
+ pulumi.set(self, "image_digest", value)
732
+
733
+ @property
734
+ @pulumi.getter(name="imageSignatureId")
735
+ def image_signature_id(self) -> Optional[pulumi.Input[str]]:
736
+ """
737
+ OCID of the container image signature
738
+ """
739
+ return pulumi.get(self, "image_signature_id")
740
+
741
+ @image_signature_id.setter
742
+ def image_signature_id(self, value: Optional[pulumi.Input[str]]):
743
+ pulumi.set(self, "image_signature_id", value)
744
+
745
+
542
746
  @pulumi.input_type
543
747
  class JobRunJobInfrastructureConfigurationDetailArgs:
544
748
  def __init__(__self__, *,
@@ -22,7 +22,7 @@ class GetJobResult:
22
22
  """
23
23
  A collection of values returned by getJob.
24
24
  """
25
- def __init__(__self__, artifact_content_disposition=None, artifact_content_length=None, artifact_content_md5=None, artifact_last_modified=None, compartment_id=None, created_by=None, defined_tags=None, delete_related_job_runs=None, description=None, display_name=None, empty_artifact=None, freeform_tags=None, id=None, job_artifact=None, job_configuration_details=None, job_id=None, job_infrastructure_configuration_details=None, job_log_configuration_details=None, job_storage_mount_configuration_details_lists=None, lifecycle_details=None, project_id=None, state=None, time_created=None):
25
+ def __init__(__self__, artifact_content_disposition=None, artifact_content_length=None, artifact_content_md5=None, artifact_last_modified=None, compartment_id=None, created_by=None, defined_tags=None, delete_related_job_runs=None, description=None, display_name=None, empty_artifact=None, freeform_tags=None, id=None, job_artifact=None, job_configuration_details=None, job_environment_configuration_details=None, job_id=None, job_infrastructure_configuration_details=None, job_log_configuration_details=None, job_storage_mount_configuration_details_lists=None, lifecycle_details=None, project_id=None, state=None, time_created=None):
26
26
  if artifact_content_disposition and not isinstance(artifact_content_disposition, str):
27
27
  raise TypeError("Expected argument 'artifact_content_disposition' to be a str")
28
28
  pulumi.set(__self__, "artifact_content_disposition", artifact_content_disposition)
@@ -68,6 +68,9 @@ class GetJobResult:
68
68
  if job_configuration_details and not isinstance(job_configuration_details, list):
69
69
  raise TypeError("Expected argument 'job_configuration_details' to be a list")
70
70
  pulumi.set(__self__, "job_configuration_details", job_configuration_details)
71
+ if job_environment_configuration_details and not isinstance(job_environment_configuration_details, list):
72
+ raise TypeError("Expected argument 'job_environment_configuration_details' to be a list")
73
+ pulumi.set(__self__, "job_environment_configuration_details", job_environment_configuration_details)
71
74
  if job_id and not isinstance(job_id, str):
72
75
  raise TypeError("Expected argument 'job_id' to be a str")
73
76
  pulumi.set(__self__, "job_id", job_id)
@@ -192,6 +195,14 @@ class GetJobResult:
192
195
  """
193
196
  return pulumi.get(self, "job_configuration_details")
194
197
 
198
+ @property
199
+ @pulumi.getter(name="jobEnvironmentConfigurationDetails")
200
+ def job_environment_configuration_details(self) -> Sequence['outputs.GetJobJobEnvironmentConfigurationDetailResult']:
201
+ """
202
+ Environment configuration to capture job runtime dependencies.
203
+ """
204
+ return pulumi.get(self, "job_environment_configuration_details")
205
+
195
206
  @property
196
207
  @pulumi.getter(name="jobId")
197
208
  def job_id(self) -> str:
@@ -275,6 +286,7 @@ class AwaitableGetJobResult(GetJobResult):
275
286
  id=self.id,
276
287
  job_artifact=self.job_artifact,
277
288
  job_configuration_details=self.job_configuration_details,
289
+ job_environment_configuration_details=self.job_environment_configuration_details,
278
290
  job_id=self.job_id,
279
291
  job_infrastructure_configuration_details=self.job_infrastructure_configuration_details,
280
292
  job_log_configuration_details=self.job_log_configuration_details,
@@ -325,6 +337,7 @@ def get_job(job_id: Optional[str] = None,
325
337
  id=pulumi.get(__ret__, 'id'),
326
338
  job_artifact=pulumi.get(__ret__, 'job_artifact'),
327
339
  job_configuration_details=pulumi.get(__ret__, 'job_configuration_details'),
340
+ job_environment_configuration_details=pulumi.get(__ret__, 'job_environment_configuration_details'),
328
341
  job_id=pulumi.get(__ret__, 'job_id'),
329
342
  job_infrastructure_configuration_details=pulumi.get(__ret__, 'job_infrastructure_configuration_details'),
330
343
  job_log_configuration_details=pulumi.get(__ret__, 'job_log_configuration_details'),
@@ -22,7 +22,7 @@ class GetJobRunResult:
22
22
  """
23
23
  A collection of values returned by getJobRun.
24
24
  """
25
- def __init__(__self__, asynchronous=None, compartment_id=None, created_by=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, job_configuration_override_details=None, job_id=None, job_infrastructure_configuration_details=None, job_log_configuration_override_details=None, job_run_id=None, job_storage_mount_configuration_details_lists=None, lifecycle_details=None, log_details=None, project_id=None, state=None, time_accepted=None, time_finished=None, time_started=None):
25
+ def __init__(__self__, asynchronous=None, compartment_id=None, created_by=None, defined_tags=None, display_name=None, freeform_tags=None, id=None, job_configuration_override_details=None, job_environment_configuration_override_details=None, job_id=None, job_infrastructure_configuration_details=None, job_log_configuration_override_details=None, job_run_id=None, job_storage_mount_configuration_details_lists=None, lifecycle_details=None, log_details=None, project_id=None, state=None, time_accepted=None, time_finished=None, time_started=None):
26
26
  if asynchronous and not isinstance(asynchronous, bool):
27
27
  raise TypeError("Expected argument 'asynchronous' to be a bool")
28
28
  pulumi.set(__self__, "asynchronous", asynchronous)
@@ -47,6 +47,9 @@ class GetJobRunResult:
47
47
  if job_configuration_override_details and not isinstance(job_configuration_override_details, list):
48
48
  raise TypeError("Expected argument 'job_configuration_override_details' to be a list")
49
49
  pulumi.set(__self__, "job_configuration_override_details", job_configuration_override_details)
50
+ if job_environment_configuration_override_details and not isinstance(job_environment_configuration_override_details, list):
51
+ raise TypeError("Expected argument 'job_environment_configuration_override_details' to be a list")
52
+ pulumi.set(__self__, "job_environment_configuration_override_details", job_environment_configuration_override_details)
50
53
  if job_id and not isinstance(job_id, str):
51
54
  raise TypeError("Expected argument 'job_id' to be a str")
52
55
  pulumi.set(__self__, "job_id", job_id)
@@ -145,6 +148,14 @@ class GetJobRunResult:
145
148
  """
146
149
  return pulumi.get(self, "job_configuration_override_details")
147
150
 
151
+ @property
152
+ @pulumi.getter(name="jobEnvironmentConfigurationOverrideDetails")
153
+ def job_environment_configuration_override_details(self) -> Sequence['outputs.GetJobRunJobEnvironmentConfigurationOverrideDetailResult']:
154
+ """
155
+ Environment configuration to capture job runtime dependencies.
156
+ """
157
+ return pulumi.get(self, "job_environment_configuration_override_details")
158
+
148
159
  @property
149
160
  @pulumi.getter(name="jobId")
150
161
  def job_id(self) -> str:
@@ -253,6 +264,7 @@ class AwaitableGetJobRunResult(GetJobRunResult):
253
264
  freeform_tags=self.freeform_tags,
254
265
  id=self.id,
255
266
  job_configuration_override_details=self.job_configuration_override_details,
267
+ job_environment_configuration_override_details=self.job_environment_configuration_override_details,
256
268
  job_id=self.job_id,
257
269
  job_infrastructure_configuration_details=self.job_infrastructure_configuration_details,
258
270
  job_log_configuration_override_details=self.job_log_configuration_override_details,
@@ -300,6 +312,7 @@ def get_job_run(job_run_id: Optional[str] = None,
300
312
  freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
301
313
  id=pulumi.get(__ret__, 'id'),
302
314
  job_configuration_override_details=pulumi.get(__ret__, 'job_configuration_override_details'),
315
+ job_environment_configuration_override_details=pulumi.get(__ret__, 'job_environment_configuration_override_details'),
303
316
  job_id=pulumi.get(__ret__, 'job_id'),
304
317
  job_infrastructure_configuration_details=pulumi.get(__ret__, 'job_infrastructure_configuration_details'),
305
318
  job_log_configuration_override_details=pulumi.get(__ret__, 'job_log_configuration_override_details'),
@@ -21,7 +21,7 @@ class GetModelVersionSetResult:
21
21
  """
22
22
  A collection of values returned by getModelVersionSet.
23
23
  """
24
- def __init__(__self__, compartment_id=None, created_by=None, defined_tags=None, description=None, freeform_tags=None, id=None, model_version_set_id=None, name=None, project_id=None, state=None, time_created=None, time_updated=None):
24
+ def __init__(__self__, compartment_id=None, created_by=None, defined_tags=None, description=None, freeform_tags=None, id=None, model_version_set_id=None, name=None, project_id=None, state=None, system_tags=None, time_created=None, time_updated=None):
25
25
  if compartment_id and not isinstance(compartment_id, str):
26
26
  raise TypeError("Expected argument 'compartment_id' to be a str")
27
27
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -52,6 +52,9 @@ class GetModelVersionSetResult:
52
52
  if state and not isinstance(state, str):
53
53
  raise TypeError("Expected argument 'state' to be a str")
54
54
  pulumi.set(__self__, "state", state)
55
+ if system_tags and not isinstance(system_tags, dict):
56
+ raise TypeError("Expected argument 'system_tags' to be a dict")
57
+ pulumi.set(__self__, "system_tags", system_tags)
55
58
  if time_created and not isinstance(time_created, str):
56
59
  raise TypeError("Expected argument 'time_created' to be a str")
57
60
  pulumi.set(__self__, "time_created", time_created)
@@ -136,6 +139,14 @@ class GetModelVersionSetResult:
136
139
  """
137
140
  return pulumi.get(self, "state")
138
141
 
142
+ @property
143
+ @pulumi.getter(name="systemTags")
144
+ def system_tags(self) -> Mapping[str, Any]:
145
+ """
146
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
147
+ """
148
+ return pulumi.get(self, "system_tags")
149
+
139
150
  @property
140
151
  @pulumi.getter(name="timeCreated")
141
152
  def time_created(self) -> str:
@@ -169,6 +180,7 @@ class AwaitableGetModelVersionSetResult(GetModelVersionSetResult):
169
180
  name=self.name,
170
181
  project_id=self.project_id,
171
182
  state=self.state,
183
+ system_tags=self.system_tags,
172
184
  time_created=self.time_created,
173
185
  time_updated=self.time_updated)
174
186
 
@@ -208,6 +220,7 @@ def get_model_version_set(model_version_set_id: Optional[str] = None,
208
220
  name=pulumi.get(__ret__, 'name'),
209
221
  project_id=pulumi.get(__ret__, 'project_id'),
210
222
  state=pulumi.get(__ret__, 'state'),
223
+ system_tags=pulumi.get(__ret__, 'system_tags'),
211
224
  time_created=pulumi.get(__ret__, 'time_created'),
212
225
  time_updated=pulumi.get(__ret__, 'time_updated'))
213
226
 
@@ -21,7 +21,7 @@ class GetPrivateEndpointResult:
21
21
  """
22
22
  A collection of values returned by getPrivateEndpoint.
23
23
  """
24
- def __init__(__self__, compartment_id=None, created_by=None, data_science_private_endpoint_id=None, data_science_resource_type=None, defined_tags=None, description=None, display_name=None, fqdn=None, freeform_tags=None, id=None, lifecycle_details=None, nsg_ids=None, state=None, sub_domain=None, subnet_id=None, time_created=None, time_updated=None):
24
+ def __init__(__self__, compartment_id=None, created_by=None, data_science_private_endpoint_id=None, data_science_resource_type=None, defined_tags=None, description=None, display_name=None, fqdn=None, freeform_tags=None, id=None, lifecycle_details=None, nsg_ids=None, state=None, sub_domain=None, subnet_id=None, system_tags=None, time_created=None, time_updated=None):
25
25
  if compartment_id and not isinstance(compartment_id, str):
26
26
  raise TypeError("Expected argument 'compartment_id' to be a str")
27
27
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -67,6 +67,9 @@ class GetPrivateEndpointResult:
67
67
  if subnet_id and not isinstance(subnet_id, str):
68
68
  raise TypeError("Expected argument 'subnet_id' to be a str")
69
69
  pulumi.set(__self__, "subnet_id", subnet_id)
70
+ if system_tags and not isinstance(system_tags, dict):
71
+ raise TypeError("Expected argument 'system_tags' to be a dict")
72
+ pulumi.set(__self__, "system_tags", system_tags)
70
73
  if time_created and not isinstance(time_created, str):
71
74
  raise TypeError("Expected argument 'time_created' to be a str")
72
75
  pulumi.set(__self__, "time_created", time_created)
@@ -188,6 +191,14 @@ class GetPrivateEndpointResult:
188
191
  """
189
192
  return pulumi.get(self, "subnet_id")
190
193
 
194
+ @property
195
+ @pulumi.getter(name="systemTags")
196
+ def system_tags(self) -> Mapping[str, Any]:
197
+ """
198
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
199
+ """
200
+ return pulumi.get(self, "system_tags")
201
+
191
202
  @property
192
203
  @pulumi.getter(name="timeCreated")
193
204
  def time_created(self) -> str:
@@ -226,6 +237,7 @@ class AwaitableGetPrivateEndpointResult(GetPrivateEndpointResult):
226
237
  state=self.state,
227
238
  sub_domain=self.sub_domain,
228
239
  subnet_id=self.subnet_id,
240
+ system_tags=self.system_tags,
229
241
  time_created=self.time_created,
230
242
  time_updated=self.time_updated)
231
243
 
@@ -270,6 +282,7 @@ def get_private_endpoint(data_science_private_endpoint_id: Optional[str] = None,
270
282
  state=pulumi.get(__ret__, 'state'),
271
283
  sub_domain=pulumi.get(__ret__, 'sub_domain'),
272
284
  subnet_id=pulumi.get(__ret__, 'subnet_id'),
285
+ system_tags=pulumi.get(__ret__, 'system_tags'),
273
286
  time_created=pulumi.get(__ret__, 'time_created'),
274
287
  time_updated=pulumi.get(__ret__, 'time_updated'))
275
288
 
@@ -21,7 +21,7 @@ class GetProjectResult:
21
21
  """
22
22
  A collection of values returned by getProject.
23
23
  """
24
- def __init__(__self__, compartment_id=None, created_by=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, project_id=None, state=None, time_created=None):
24
+ def __init__(__self__, compartment_id=None, created_by=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, project_id=None, state=None, system_tags=None, time_created=None):
25
25
  if compartment_id and not isinstance(compartment_id, str):
26
26
  raise TypeError("Expected argument 'compartment_id' to be a str")
27
27
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -49,6 +49,9 @@ class GetProjectResult:
49
49
  if state and not isinstance(state, str):
50
50
  raise TypeError("Expected argument 'state' to be a str")
51
51
  pulumi.set(__self__, "state", state)
52
+ if system_tags and not isinstance(system_tags, dict):
53
+ raise TypeError("Expected argument 'system_tags' to be a dict")
54
+ pulumi.set(__self__, "system_tags", system_tags)
52
55
  if time_created and not isinstance(time_created, str):
53
56
  raise TypeError("Expected argument 'time_created' to be a str")
54
57
  pulumi.set(__self__, "time_created", time_created)
@@ -122,6 +125,14 @@ class GetProjectResult:
122
125
  """
123
126
  return pulumi.get(self, "state")
124
127
 
128
+ @property
129
+ @pulumi.getter(name="systemTags")
130
+ def system_tags(self) -> Mapping[str, Any]:
131
+ """
132
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
133
+ """
134
+ return pulumi.get(self, "system_tags")
135
+
125
136
  @property
126
137
  @pulumi.getter(name="timeCreated")
127
138
  def time_created(self) -> str:
@@ -146,6 +157,7 @@ class AwaitableGetProjectResult(GetProjectResult):
146
157
  id=self.id,
147
158
  project_id=self.project_id,
148
159
  state=self.state,
160
+ system_tags=self.system_tags,
149
161
  time_created=self.time_created)
150
162
 
151
163
 
@@ -183,6 +195,7 @@ def get_project(project_id: Optional[str] = None,
183
195
  id=pulumi.get(__ret__, 'id'),
184
196
  project_id=pulumi.get(__ret__, 'project_id'),
185
197
  state=pulumi.get(__ret__, 'state'),
198
+ system_tags=pulumi.get(__ret__, 'system_tags'),
186
199
  time_created=pulumi.get(__ret__, 'time_created'))
187
200
 
188
201