pulumi-oci 1.23.0a1707980719__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.
Files changed (40) hide show
  1. pulumi_oci/__init__.py +8 -0
  2. pulumi_oci/core/_inputs.py +6 -6
  3. pulumi_oci/core/instance.py +7 -7
  4. pulumi_oci/core/outputs.py +6 -6
  5. pulumi_oci/database/_inputs.py +49 -1
  6. pulumi_oci/database/autonomous_database.py +47 -0
  7. pulumi_oci/database/get_autonomous_database.py +14 -1
  8. pulumi_oci/database/outputs.py +128 -4
  9. pulumi_oci/dataintegration/__init__.py +3 -0
  10. pulumi_oci/dataintegration/_inputs.py +749 -0
  11. pulumi_oci/dataintegration/get_workspace_application_schedule.py +316 -0
  12. pulumi_oci/dataintegration/get_workspace_application_schedules.py +230 -0
  13. pulumi_oci/dataintegration/outputs.py +2826 -912
  14. pulumi_oci/dataintegration/workspace_application_schedule.py +926 -0
  15. pulumi_oci/datascience/_inputs.py +204 -0
  16. pulumi_oci/datascience/get_job.py +14 -1
  17. pulumi_oci/datascience/get_job_run.py +14 -1
  18. pulumi_oci/datascience/get_model_version_set.py +14 -1
  19. pulumi_oci/datascience/get_private_endpoint.py +14 -1
  20. pulumi_oci/datascience/get_project.py +14 -1
  21. pulumi_oci/datascience/job.py +63 -0
  22. pulumi_oci/datascience/job_run.py +63 -0
  23. pulumi_oci/datascience/model_version_set.py +28 -0
  24. pulumi_oci/datascience/outputs.py +549 -0
  25. pulumi_oci/datascience/private_endpoint.py +28 -0
  26. pulumi_oci/datascience/project.py +28 -0
  27. pulumi_oci/loganalytics/_inputs.py +80 -0
  28. pulumi_oci/loganalytics/get_log_analytics_entities.py +18 -1
  29. pulumi_oci/loganalytics/get_log_analytics_entity.py +28 -1
  30. pulumi_oci/loganalytics/get_log_analytics_entity_topology.py +19 -2
  31. pulumi_oci/loganalytics/get_log_analytics_object_collection_rule.py +27 -1
  32. pulumi_oci/loganalytics/get_namespace_rules.py +25 -5
  33. pulumi_oci/loganalytics/get_namespace_scheduled_tasks.py +18 -1
  34. pulumi_oci/loganalytics/log_analytics_entity.py +112 -0
  35. pulumi_oci/loganalytics/log_analytics_object_collection_rule.py +98 -0
  36. pulumi_oci/loganalytics/outputs.py +271 -4
  37. {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/METADATA +1 -1
  38. {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/RECORD +40 -37
  39. {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/WHEEL +0 -0
  40. {pulumi_oci-1.23.0a1707980719.dist-info → pulumi_oci-1.24.0.dist-info}/top_level.txt +0 -0
@@ -12,11 +12,13 @@ from . import outputs
12
12
 
13
13
  __all__ = [
14
14
  'JobJobConfigurationDetails',
15
+ 'JobJobEnvironmentConfigurationDetails',
15
16
  'JobJobInfrastructureConfigurationDetails',
16
17
  'JobJobInfrastructureConfigurationDetailsJobShapeConfigDetails',
17
18
  'JobJobLogConfigurationDetails',
18
19
  'JobJobStorageMountConfigurationDetailsList',
19
20
  'JobRunJobConfigurationOverrideDetails',
21
+ 'JobRunJobEnvironmentConfigurationOverrideDetails',
20
22
  'JobRunJobInfrastructureConfigurationDetail',
21
23
  'JobRunJobInfrastructureConfigurationDetailJobShapeConfigDetail',
22
24
  'JobRunJobLogConfigurationOverrideDetails',
@@ -60,11 +62,13 @@ __all__ = [
60
62
  'GetFastLaunchJobConfigsFastLaunchJobConfigResult',
61
63
  'GetFastLaunchJobConfigsFilterResult',
62
64
  'GetJobJobConfigurationDetailResult',
65
+ 'GetJobJobEnvironmentConfigurationDetailResult',
63
66
  'GetJobJobInfrastructureConfigurationDetailResult',
64
67
  'GetJobJobInfrastructureConfigurationDetailJobShapeConfigDetailResult',
65
68
  'GetJobJobLogConfigurationDetailResult',
66
69
  'GetJobJobStorageMountConfigurationDetailsListResult',
67
70
  'GetJobRunJobConfigurationOverrideDetailResult',
71
+ 'GetJobRunJobEnvironmentConfigurationOverrideDetailResult',
68
72
  'GetJobRunJobInfrastructureConfigurationDetailResult',
69
73
  'GetJobRunJobInfrastructureConfigurationDetailJobShapeConfigDetailResult',
70
74
  'GetJobRunJobLogConfigurationOverrideDetailResult',
@@ -73,6 +77,7 @@ __all__ = [
73
77
  'GetJobRunsFilterResult',
74
78
  'GetJobRunsJobRunResult',
75
79
  'GetJobRunsJobRunJobConfigurationOverrideDetailResult',
80
+ 'GetJobRunsJobRunJobEnvironmentConfigurationOverrideDetailResult',
76
81
  'GetJobRunsJobRunJobInfrastructureConfigurationDetailResult',
77
82
  'GetJobRunsJobRunJobInfrastructureConfigurationDetailJobShapeConfigDetailResult',
78
83
  'GetJobRunsJobRunJobLogConfigurationOverrideDetailResult',
@@ -83,6 +88,7 @@ __all__ = [
83
88
  'GetJobsFilterResult',
84
89
  'GetJobsJobResult',
85
90
  'GetJobsJobJobConfigurationDetailResult',
91
+ 'GetJobsJobJobEnvironmentConfigurationDetailResult',
86
92
  'GetJobsJobJobInfrastructureConfigurationDetailResult',
87
93
  'GetJobsJobJobInfrastructureConfigurationDetailJobShapeConfigDetailResult',
88
94
  'GetJobsJobJobLogConfigurationDetailResult',
@@ -256,6 +262,104 @@ class JobJobConfigurationDetails(dict):
256
262
  return pulumi.get(self, "maximum_runtime_in_minutes")
257
263
 
258
264
 
265
+ @pulumi.output_type
266
+ class JobJobEnvironmentConfigurationDetails(dict):
267
+ @staticmethod
268
+ def __key_warning(key: str):
269
+ suggest = None
270
+ if key == "jobEnvironmentType":
271
+ suggest = "job_environment_type"
272
+ elif key == "imageDigest":
273
+ suggest = "image_digest"
274
+ elif key == "imageSignatureId":
275
+ suggest = "image_signature_id"
276
+
277
+ if suggest:
278
+ pulumi.log.warn(f"Key '{key}' not found in JobJobEnvironmentConfigurationDetails. Access the value via the '{suggest}' property getter instead.")
279
+
280
+ def __getitem__(self, key: str) -> Any:
281
+ JobJobEnvironmentConfigurationDetails.__key_warning(key)
282
+ return super().__getitem__(key)
283
+
284
+ def get(self, key: str, default = None) -> Any:
285
+ JobJobEnvironmentConfigurationDetails.__key_warning(key)
286
+ return super().get(key, default)
287
+
288
+ def __init__(__self__, *,
289
+ image: str,
290
+ job_environment_type: str,
291
+ cmds: Optional[Sequence[str]] = None,
292
+ entrypoints: Optional[Sequence[str]] = None,
293
+ image_digest: Optional[str] = None,
294
+ image_signature_id: Optional[str] = None):
295
+ """
296
+ :param 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`
297
+ :param str job_environment_type: The environment configuration type used for job runtime.
298
+ :param Sequence[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.
299
+ :param Sequence[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).
300
+ :param str image_digest: The digest of the container image. For example, `sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030`
301
+ :param str image_signature_id: OCID of the container image signature
302
+ """
303
+ pulumi.set(__self__, "image", image)
304
+ pulumi.set(__self__, "job_environment_type", job_environment_type)
305
+ if cmds is not None:
306
+ pulumi.set(__self__, "cmds", cmds)
307
+ if entrypoints is not None:
308
+ pulumi.set(__self__, "entrypoints", entrypoints)
309
+ if image_digest is not None:
310
+ pulumi.set(__self__, "image_digest", image_digest)
311
+ if image_signature_id is not None:
312
+ pulumi.set(__self__, "image_signature_id", image_signature_id)
313
+
314
+ @property
315
+ @pulumi.getter
316
+ def image(self) -> str:
317
+ """
318
+ 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`
319
+ """
320
+ return pulumi.get(self, "image")
321
+
322
+ @property
323
+ @pulumi.getter(name="jobEnvironmentType")
324
+ def job_environment_type(self) -> str:
325
+ """
326
+ The environment configuration type used for job runtime.
327
+ """
328
+ return pulumi.get(self, "job_environment_type")
329
+
330
+ @property
331
+ @pulumi.getter
332
+ def cmds(self) -> Optional[Sequence[str]]:
333
+ """
334
+ 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.
335
+ """
336
+ return pulumi.get(self, "cmds")
337
+
338
+ @property
339
+ @pulumi.getter
340
+ def entrypoints(self) -> Optional[Sequence[str]]:
341
+ """
342
+ 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).
343
+ """
344
+ return pulumi.get(self, "entrypoints")
345
+
346
+ @property
347
+ @pulumi.getter(name="imageDigest")
348
+ def image_digest(self) -> Optional[str]:
349
+ """
350
+ The digest of the container image. For example, `sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030`
351
+ """
352
+ return pulumi.get(self, "image_digest")
353
+
354
+ @property
355
+ @pulumi.getter(name="imageSignatureId")
356
+ def image_signature_id(self) -> Optional[str]:
357
+ """
358
+ OCID of the container image signature
359
+ """
360
+ return pulumi.get(self, "image_signature_id")
361
+
362
+
259
363
  @pulumi.output_type
260
364
  class JobJobInfrastructureConfigurationDetails(dict):
261
365
  @staticmethod
@@ -674,6 +778,104 @@ class JobRunJobConfigurationOverrideDetails(dict):
674
778
  return pulumi.get(self, "maximum_runtime_in_minutes")
675
779
 
676
780
 
781
+ @pulumi.output_type
782
+ class JobRunJobEnvironmentConfigurationOverrideDetails(dict):
783
+ @staticmethod
784
+ def __key_warning(key: str):
785
+ suggest = None
786
+ if key == "jobEnvironmentType":
787
+ suggest = "job_environment_type"
788
+ elif key == "imageDigest":
789
+ suggest = "image_digest"
790
+ elif key == "imageSignatureId":
791
+ suggest = "image_signature_id"
792
+
793
+ if suggest:
794
+ pulumi.log.warn(f"Key '{key}' not found in JobRunJobEnvironmentConfigurationOverrideDetails. Access the value via the '{suggest}' property getter instead.")
795
+
796
+ def __getitem__(self, key: str) -> Any:
797
+ JobRunJobEnvironmentConfigurationOverrideDetails.__key_warning(key)
798
+ return super().__getitem__(key)
799
+
800
+ def get(self, key: str, default = None) -> Any:
801
+ JobRunJobEnvironmentConfigurationOverrideDetails.__key_warning(key)
802
+ return super().get(key, default)
803
+
804
+ def __init__(__self__, *,
805
+ image: str,
806
+ job_environment_type: str,
807
+ cmds: Optional[Sequence[str]] = None,
808
+ entrypoints: Optional[Sequence[str]] = None,
809
+ image_digest: Optional[str] = None,
810
+ image_signature_id: Optional[str] = None):
811
+ """
812
+ :param 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`
813
+ :param str job_environment_type: The environment configuration type used for job runtime.
814
+ :param Sequence[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.
815
+ :param Sequence[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).
816
+ :param str image_digest: The digest of the container image. For example, `sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030`
817
+ :param str image_signature_id: OCID of the container image signature
818
+ """
819
+ pulumi.set(__self__, "image", image)
820
+ pulumi.set(__self__, "job_environment_type", job_environment_type)
821
+ if cmds is not None:
822
+ pulumi.set(__self__, "cmds", cmds)
823
+ if entrypoints is not None:
824
+ pulumi.set(__self__, "entrypoints", entrypoints)
825
+ if image_digest is not None:
826
+ pulumi.set(__self__, "image_digest", image_digest)
827
+ if image_signature_id is not None:
828
+ pulumi.set(__self__, "image_signature_id", image_signature_id)
829
+
830
+ @property
831
+ @pulumi.getter
832
+ def image(self) -> str:
833
+ """
834
+ 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`
835
+ """
836
+ return pulumi.get(self, "image")
837
+
838
+ @property
839
+ @pulumi.getter(name="jobEnvironmentType")
840
+ def job_environment_type(self) -> str:
841
+ """
842
+ The environment configuration type used for job runtime.
843
+ """
844
+ return pulumi.get(self, "job_environment_type")
845
+
846
+ @property
847
+ @pulumi.getter
848
+ def cmds(self) -> Optional[Sequence[str]]:
849
+ """
850
+ 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.
851
+ """
852
+ return pulumi.get(self, "cmds")
853
+
854
+ @property
855
+ @pulumi.getter
856
+ def entrypoints(self) -> Optional[Sequence[str]]:
857
+ """
858
+ 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).
859
+ """
860
+ return pulumi.get(self, "entrypoints")
861
+
862
+ @property
863
+ @pulumi.getter(name="imageDigest")
864
+ def image_digest(self) -> Optional[str]:
865
+ """
866
+ The digest of the container image. For example, `sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030`
867
+ """
868
+ return pulumi.get(self, "image_digest")
869
+
870
+ @property
871
+ @pulumi.getter(name="imageSignatureId")
872
+ def image_signature_id(self) -> Optional[str]:
873
+ """
874
+ OCID of the container image signature
875
+ """
876
+ return pulumi.get(self, "image_signature_id")
877
+
878
+
677
879
  @pulumi.output_type
678
880
  class JobRunJobInfrastructureConfigurationDetail(dict):
679
881
  @staticmethod
@@ -3576,6 +3778,79 @@ class GetJobJobConfigurationDetailResult(dict):
3576
3778
  return pulumi.get(self, "maximum_runtime_in_minutes")
3577
3779
 
3578
3780
 
3781
+ @pulumi.output_type
3782
+ class GetJobJobEnvironmentConfigurationDetailResult(dict):
3783
+ def __init__(__self__, *,
3784
+ cmds: Sequence[str],
3785
+ entrypoints: Sequence[str],
3786
+ image: str,
3787
+ image_digest: str,
3788
+ image_signature_id: str,
3789
+ job_environment_type: str):
3790
+ """
3791
+ :param Sequence[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.
3792
+ :param Sequence[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).
3793
+ :param 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`
3794
+ :param str image_digest: The digest of the container image. For example, `sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030`
3795
+ :param str image_signature_id: OCID of the container image signature
3796
+ :param str job_environment_type: The environment configuration type used for job runtime.
3797
+ """
3798
+ pulumi.set(__self__, "cmds", cmds)
3799
+ pulumi.set(__self__, "entrypoints", entrypoints)
3800
+ pulumi.set(__self__, "image", image)
3801
+ pulumi.set(__self__, "image_digest", image_digest)
3802
+ pulumi.set(__self__, "image_signature_id", image_signature_id)
3803
+ pulumi.set(__self__, "job_environment_type", job_environment_type)
3804
+
3805
+ @property
3806
+ @pulumi.getter
3807
+ def cmds(self) -> Sequence[str]:
3808
+ """
3809
+ 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.
3810
+ """
3811
+ return pulumi.get(self, "cmds")
3812
+
3813
+ @property
3814
+ @pulumi.getter
3815
+ def entrypoints(self) -> Sequence[str]:
3816
+ """
3817
+ 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).
3818
+ """
3819
+ return pulumi.get(self, "entrypoints")
3820
+
3821
+ @property
3822
+ @pulumi.getter
3823
+ def image(self) -> str:
3824
+ """
3825
+ 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`
3826
+ """
3827
+ return pulumi.get(self, "image")
3828
+
3829
+ @property
3830
+ @pulumi.getter(name="imageDigest")
3831
+ def image_digest(self) -> str:
3832
+ """
3833
+ The digest of the container image. For example, `sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030`
3834
+ """
3835
+ return pulumi.get(self, "image_digest")
3836
+
3837
+ @property
3838
+ @pulumi.getter(name="imageSignatureId")
3839
+ def image_signature_id(self) -> str:
3840
+ """
3841
+ OCID of the container image signature
3842
+ """
3843
+ return pulumi.get(self, "image_signature_id")
3844
+
3845
+ @property
3846
+ @pulumi.getter(name="jobEnvironmentType")
3847
+ def job_environment_type(self) -> str:
3848
+ """
3849
+ The environment configuration type used for job runtime.
3850
+ """
3851
+ return pulumi.get(self, "job_environment_type")
3852
+
3853
+
3579
3854
  @pulumi.output_type
3580
3855
  class GetJobJobInfrastructureConfigurationDetailResult(dict):
3581
3856
  def __init__(__self__, *,
@@ -3864,6 +4139,79 @@ class GetJobRunJobConfigurationOverrideDetailResult(dict):
3864
4139
  return pulumi.get(self, "maximum_runtime_in_minutes")
3865
4140
 
3866
4141
 
4142
+ @pulumi.output_type
4143
+ class GetJobRunJobEnvironmentConfigurationOverrideDetailResult(dict):
4144
+ def __init__(__self__, *,
4145
+ cmds: Sequence[str],
4146
+ entrypoints: Sequence[str],
4147
+ image: str,
4148
+ image_digest: str,
4149
+ image_signature_id: str,
4150
+ job_environment_type: str):
4151
+ """
4152
+ :param Sequence[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.
4153
+ :param Sequence[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).
4154
+ :param 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`
4155
+ :param str image_digest: The digest of the container image. For example, `sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030`
4156
+ :param str image_signature_id: OCID of the container image signature
4157
+ :param str job_environment_type: The environment configuration type used for job runtime.
4158
+ """
4159
+ pulumi.set(__self__, "cmds", cmds)
4160
+ pulumi.set(__self__, "entrypoints", entrypoints)
4161
+ pulumi.set(__self__, "image", image)
4162
+ pulumi.set(__self__, "image_digest", image_digest)
4163
+ pulumi.set(__self__, "image_signature_id", image_signature_id)
4164
+ pulumi.set(__self__, "job_environment_type", job_environment_type)
4165
+
4166
+ @property
4167
+ @pulumi.getter
4168
+ def cmds(self) -> Sequence[str]:
4169
+ """
4170
+ 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.
4171
+ """
4172
+ return pulumi.get(self, "cmds")
4173
+
4174
+ @property
4175
+ @pulumi.getter
4176
+ def entrypoints(self) -> Sequence[str]:
4177
+ """
4178
+ 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).
4179
+ """
4180
+ return pulumi.get(self, "entrypoints")
4181
+
4182
+ @property
4183
+ @pulumi.getter
4184
+ def image(self) -> str:
4185
+ """
4186
+ 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`
4187
+ """
4188
+ return pulumi.get(self, "image")
4189
+
4190
+ @property
4191
+ @pulumi.getter(name="imageDigest")
4192
+ def image_digest(self) -> str:
4193
+ """
4194
+ The digest of the container image. For example, `sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030`
4195
+ """
4196
+ return pulumi.get(self, "image_digest")
4197
+
4198
+ @property
4199
+ @pulumi.getter(name="imageSignatureId")
4200
+ def image_signature_id(self) -> str:
4201
+ """
4202
+ OCID of the container image signature
4203
+ """
4204
+ return pulumi.get(self, "image_signature_id")
4205
+
4206
+ @property
4207
+ @pulumi.getter(name="jobEnvironmentType")
4208
+ def job_environment_type(self) -> str:
4209
+ """
4210
+ The environment configuration type used for job runtime.
4211
+ """
4212
+ return pulumi.get(self, "job_environment_type")
4213
+
4214
+
3867
4215
  @pulumi.output_type
3868
4216
  class GetJobRunJobInfrastructureConfigurationDetailResult(dict):
3869
4217
  def __init__(__self__, *,
@@ -4168,6 +4516,7 @@ class GetJobRunsJobRunResult(dict):
4168
4516
  freeform_tags: Mapping[str, Any],
4169
4517
  id: str,
4170
4518
  job_configuration_override_details: Sequence['outputs.GetJobRunsJobRunJobConfigurationOverrideDetailResult'],
4519
+ job_environment_configuration_override_details: Sequence['outputs.GetJobRunsJobRunJobEnvironmentConfigurationOverrideDetailResult'],
4171
4520
  job_id: str,
4172
4521
  job_infrastructure_configuration_details: Sequence['outputs.GetJobRunsJobRunJobInfrastructureConfigurationDetailResult'],
4173
4522
  job_log_configuration_override_details: Sequence['outputs.GetJobRunsJobRunJobLogConfigurationOverrideDetailResult'],
@@ -4187,6 +4536,7 @@ class GetJobRunsJobRunResult(dict):
4187
4536
  :param Mapping[str, Any] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
4188
4537
  :param str id: <b>Filter</b> results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resource type.
4189
4538
  :param Sequence['GetJobRunsJobRunJobConfigurationOverrideDetailArgs'] job_configuration_override_details: The job configuration details
4539
+ :param Sequence['GetJobRunsJobRunJobEnvironmentConfigurationOverrideDetailArgs'] job_environment_configuration_override_details: Environment configuration to capture job runtime dependencies.
4190
4540
  :param str job_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the job.
4191
4541
  :param Sequence['GetJobRunsJobRunJobInfrastructureConfigurationDetailArgs'] job_infrastructure_configuration_details: The job infrastructure configuration details (shape, block storage, etc.)
4192
4542
  :param Sequence['GetJobRunsJobRunJobLogConfigurationOverrideDetailArgs'] job_log_configuration_override_details: Logging configuration for resource.
@@ -4207,6 +4557,7 @@ class GetJobRunsJobRunResult(dict):
4207
4557
  pulumi.set(__self__, "freeform_tags", freeform_tags)
4208
4558
  pulumi.set(__self__, "id", id)
4209
4559
  pulumi.set(__self__, "job_configuration_override_details", job_configuration_override_details)
4560
+ pulumi.set(__self__, "job_environment_configuration_override_details", job_environment_configuration_override_details)
4210
4561
  pulumi.set(__self__, "job_id", job_id)
4211
4562
  pulumi.set(__self__, "job_infrastructure_configuration_details", job_infrastructure_configuration_details)
4212
4563
  pulumi.set(__self__, "job_log_configuration_override_details", job_log_configuration_override_details)
@@ -4280,6 +4631,14 @@ class GetJobRunsJobRunResult(dict):
4280
4631
  """
4281
4632
  return pulumi.get(self, "job_configuration_override_details")
4282
4633
 
4634
+ @property
4635
+ @pulumi.getter(name="jobEnvironmentConfigurationOverrideDetails")
4636
+ def job_environment_configuration_override_details(self) -> Sequence['outputs.GetJobRunsJobRunJobEnvironmentConfigurationOverrideDetailResult']:
4637
+ """
4638
+ Environment configuration to capture job runtime dependencies.
4639
+ """
4640
+ return pulumi.get(self, "job_environment_configuration_override_details")
4641
+
4283
4642
  @property
4284
4643
  @pulumi.getter(name="jobId")
4285
4644
  def job_id(self) -> str:
@@ -4420,6 +4779,79 @@ class GetJobRunsJobRunJobConfigurationOverrideDetailResult(dict):
4420
4779
  return pulumi.get(self, "maximum_runtime_in_minutes")
4421
4780
 
4422
4781
 
4782
+ @pulumi.output_type
4783
+ class GetJobRunsJobRunJobEnvironmentConfigurationOverrideDetailResult(dict):
4784
+ def __init__(__self__, *,
4785
+ cmds: Sequence[str],
4786
+ entrypoints: Sequence[str],
4787
+ image: str,
4788
+ image_digest: str,
4789
+ image_signature_id: str,
4790
+ job_environment_type: str):
4791
+ """
4792
+ :param Sequence[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.
4793
+ :param Sequence[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).
4794
+ :param 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`
4795
+ :param str image_digest: The digest of the container image. For example, `sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030`
4796
+ :param str image_signature_id: OCID of the container image signature
4797
+ :param str job_environment_type: The environment configuration type used for job runtime.
4798
+ """
4799
+ pulumi.set(__self__, "cmds", cmds)
4800
+ pulumi.set(__self__, "entrypoints", entrypoints)
4801
+ pulumi.set(__self__, "image", image)
4802
+ pulumi.set(__self__, "image_digest", image_digest)
4803
+ pulumi.set(__self__, "image_signature_id", image_signature_id)
4804
+ pulumi.set(__self__, "job_environment_type", job_environment_type)
4805
+
4806
+ @property
4807
+ @pulumi.getter
4808
+ def cmds(self) -> Sequence[str]:
4809
+ """
4810
+ 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.
4811
+ """
4812
+ return pulumi.get(self, "cmds")
4813
+
4814
+ @property
4815
+ @pulumi.getter
4816
+ def entrypoints(self) -> Sequence[str]:
4817
+ """
4818
+ 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).
4819
+ """
4820
+ return pulumi.get(self, "entrypoints")
4821
+
4822
+ @property
4823
+ @pulumi.getter
4824
+ def image(self) -> str:
4825
+ """
4826
+ 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`
4827
+ """
4828
+ return pulumi.get(self, "image")
4829
+
4830
+ @property
4831
+ @pulumi.getter(name="imageDigest")
4832
+ def image_digest(self) -> str:
4833
+ """
4834
+ The digest of the container image. For example, `sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030`
4835
+ """
4836
+ return pulumi.get(self, "image_digest")
4837
+
4838
+ @property
4839
+ @pulumi.getter(name="imageSignatureId")
4840
+ def image_signature_id(self) -> str:
4841
+ """
4842
+ OCID of the container image signature
4843
+ """
4844
+ return pulumi.get(self, "image_signature_id")
4845
+
4846
+ @property
4847
+ @pulumi.getter(name="jobEnvironmentType")
4848
+ def job_environment_type(self) -> str:
4849
+ """
4850
+ The environment configuration type used for job runtime.
4851
+ """
4852
+ return pulumi.get(self, "job_environment_type")
4853
+
4854
+
4423
4855
  @pulumi.output_type
4424
4856
  class GetJobRunsJobRunJobInfrastructureConfigurationDetailResult(dict):
4425
4857
  def __init__(__self__, *,
@@ -4815,6 +5247,7 @@ class GetJobsJobResult(dict):
4815
5247
  id: str,
4816
5248
  job_artifact: str,
4817
5249
  job_configuration_details: Sequence['outputs.GetJobsJobJobConfigurationDetailResult'],
5250
+ job_environment_configuration_details: Sequence['outputs.GetJobsJobJobEnvironmentConfigurationDetailResult'],
4818
5251
  job_infrastructure_configuration_details: Sequence['outputs.GetJobsJobJobInfrastructureConfigurationDetailResult'],
4819
5252
  job_log_configuration_details: Sequence['outputs.GetJobsJobJobLogConfigurationDetailResult'],
4820
5253
  job_storage_mount_configuration_details_lists: Sequence['outputs.GetJobsJobJobStorageMountConfigurationDetailsListResult'],
@@ -4831,6 +5264,7 @@ class GetJobsJobResult(dict):
4831
5264
  :param Mapping[str, Any] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
4832
5265
  :param str id: <b>Filter</b> results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resource type.
4833
5266
  :param Sequence['GetJobsJobJobConfigurationDetailArgs'] job_configuration_details: The job configuration details
5267
+ :param Sequence['GetJobsJobJobEnvironmentConfigurationDetailArgs'] job_environment_configuration_details: Environment configuration to capture job runtime dependencies.
4834
5268
  :param Sequence['GetJobsJobJobInfrastructureConfigurationDetailArgs'] job_infrastructure_configuration_details: The job infrastructure configuration details (shape, block storage, etc.)
4835
5269
  :param Sequence['GetJobsJobJobLogConfigurationDetailArgs'] job_log_configuration_details: Logging configuration for resource.
4836
5270
  :param Sequence['GetJobsJobJobStorageMountConfigurationDetailsListArgs'] job_storage_mount_configuration_details_lists: Collection of JobStorageMountConfigurationDetails.
@@ -4854,6 +5288,7 @@ class GetJobsJobResult(dict):
4854
5288
  pulumi.set(__self__, "id", id)
4855
5289
  pulumi.set(__self__, "job_artifact", job_artifact)
4856
5290
  pulumi.set(__self__, "job_configuration_details", job_configuration_details)
5291
+ pulumi.set(__self__, "job_environment_configuration_details", job_environment_configuration_details)
4857
5292
  pulumi.set(__self__, "job_infrastructure_configuration_details", job_infrastructure_configuration_details)
4858
5293
  pulumi.set(__self__, "job_log_configuration_details", job_log_configuration_details)
4859
5294
  pulumi.set(__self__, "job_storage_mount_configuration_details_lists", job_storage_mount_configuration_details_lists)
@@ -4961,6 +5396,14 @@ class GetJobsJobResult(dict):
4961
5396
  """
4962
5397
  return pulumi.get(self, "job_configuration_details")
4963
5398
 
5399
+ @property
5400
+ @pulumi.getter(name="jobEnvironmentConfigurationDetails")
5401
+ def job_environment_configuration_details(self) -> Sequence['outputs.GetJobsJobJobEnvironmentConfigurationDetailResult']:
5402
+ """
5403
+ Environment configuration to capture job runtime dependencies.
5404
+ """
5405
+ return pulumi.get(self, "job_environment_configuration_details")
5406
+
4964
5407
  @property
4965
5408
  @pulumi.getter(name="jobInfrastructureConfigurationDetails")
4966
5409
  def job_infrastructure_configuration_details(self) -> Sequence['outputs.GetJobsJobJobInfrastructureConfigurationDetailResult']:
@@ -5069,6 +5512,79 @@ class GetJobsJobJobConfigurationDetailResult(dict):
5069
5512
  return pulumi.get(self, "maximum_runtime_in_minutes")
5070
5513
 
5071
5514
 
5515
+ @pulumi.output_type
5516
+ class GetJobsJobJobEnvironmentConfigurationDetailResult(dict):
5517
+ def __init__(__self__, *,
5518
+ cmds: Sequence[str],
5519
+ entrypoints: Sequence[str],
5520
+ image: str,
5521
+ image_digest: str,
5522
+ image_signature_id: str,
5523
+ job_environment_type: str):
5524
+ """
5525
+ :param Sequence[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.
5526
+ :param Sequence[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).
5527
+ :param 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`
5528
+ :param str image_digest: The digest of the container image. For example, `sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030`
5529
+ :param str image_signature_id: OCID of the container image signature
5530
+ :param str job_environment_type: The environment configuration type used for job runtime.
5531
+ """
5532
+ pulumi.set(__self__, "cmds", cmds)
5533
+ pulumi.set(__self__, "entrypoints", entrypoints)
5534
+ pulumi.set(__self__, "image", image)
5535
+ pulumi.set(__self__, "image_digest", image_digest)
5536
+ pulumi.set(__self__, "image_signature_id", image_signature_id)
5537
+ pulumi.set(__self__, "job_environment_type", job_environment_type)
5538
+
5539
+ @property
5540
+ @pulumi.getter
5541
+ def cmds(self) -> Sequence[str]:
5542
+ """
5543
+ 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.
5544
+ """
5545
+ return pulumi.get(self, "cmds")
5546
+
5547
+ @property
5548
+ @pulumi.getter
5549
+ def entrypoints(self) -> Sequence[str]:
5550
+ """
5551
+ 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).
5552
+ """
5553
+ return pulumi.get(self, "entrypoints")
5554
+
5555
+ @property
5556
+ @pulumi.getter
5557
+ def image(self) -> str:
5558
+ """
5559
+ 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`
5560
+ """
5561
+ return pulumi.get(self, "image")
5562
+
5563
+ @property
5564
+ @pulumi.getter(name="imageDigest")
5565
+ def image_digest(self) -> str:
5566
+ """
5567
+ The digest of the container image. For example, `sha256:881303a6b2738834d795a32b4a98eb0e5e3d1cad590a712d1e04f9b2fa90a030`
5568
+ """
5569
+ return pulumi.get(self, "image_digest")
5570
+
5571
+ @property
5572
+ @pulumi.getter(name="imageSignatureId")
5573
+ def image_signature_id(self) -> str:
5574
+ """
5575
+ OCID of the container image signature
5576
+ """
5577
+ return pulumi.get(self, "image_signature_id")
5578
+
5579
+ @property
5580
+ @pulumi.getter(name="jobEnvironmentType")
5581
+ def job_environment_type(self) -> str:
5582
+ """
5583
+ The environment configuration type used for job runtime.
5584
+ """
5585
+ return pulumi.get(self, "job_environment_type")
5586
+
5587
+
5072
5588
  @pulumi.output_type
5073
5589
  class GetJobsJobJobInfrastructureConfigurationDetailResult(dict):
5074
5590
  def __init__(__self__, *,
@@ -6469,6 +6985,7 @@ class GetModelVersionSetsModelVersionSetResult(dict):
6469
6985
  name: str,
6470
6986
  project_id: str,
6471
6987
  state: str,
6988
+ system_tags: Mapping[str, Any],
6472
6989
  time_created: str,
6473
6990
  time_updated: str):
6474
6991
  """
@@ -6481,6 +6998,7 @@ class GetModelVersionSetsModelVersionSetResult(dict):
6481
6998
  :param str name: A filter to return only resources that match the entire name given.
6482
6999
  :param str project_id: <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the project.
6483
7000
  :param str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
7001
+ :param Mapping[str, Any] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
6484
7002
  :param str time_created: The date and time that the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2019-08-25T21:10:29.41Z
6485
7003
  :param str time_updated: The date and time that the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2019-08-25T21:10:29.41Z
6486
7004
  """
@@ -6493,6 +7011,7 @@ class GetModelVersionSetsModelVersionSetResult(dict):
6493
7011
  pulumi.set(__self__, "name", name)
6494
7012
  pulumi.set(__self__, "project_id", project_id)
6495
7013
  pulumi.set(__self__, "state", state)
7014
+ pulumi.set(__self__, "system_tags", system_tags)
6496
7015
  pulumi.set(__self__, "time_created", time_created)
6497
7016
  pulumi.set(__self__, "time_updated", time_updated)
6498
7017
 
@@ -6568,6 +7087,14 @@ class GetModelVersionSetsModelVersionSetResult(dict):
6568
7087
  """
6569
7088
  return pulumi.get(self, "state")
6570
7089
 
7090
+ @property
7091
+ @pulumi.getter(name="systemTags")
7092
+ def system_tags(self) -> Mapping[str, Any]:
7093
+ """
7094
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
7095
+ """
7096
+ return pulumi.get(self, "system_tags")
7097
+
6571
7098
  @property
6572
7099
  @pulumi.getter(name="timeCreated")
6573
7100
  def time_created(self) -> str:
@@ -9958,6 +10485,7 @@ class GetPrivateEndpointsDataSciencePrivateEndpointResult(dict):
9958
10485
  state: str,
9959
10486
  sub_domain: str,
9960
10487
  subnet_id: str,
10488
+ system_tags: Mapping[str, Any],
9961
10489
  time_created: str,
9962
10490
  time_updated: str):
9963
10491
  """
@@ -9974,6 +10502,7 @@ class GetPrivateEndpointsDataSciencePrivateEndpointResult(dict):
9974
10502
  :param Sequence[str] nsg_ids: An array of network security group OCIDs.
9975
10503
  :param str state: The lifecycle state of the private endpoint.
9976
10504
  :param str subnet_id: The OCID of a subnet.
10505
+ :param Mapping[str, Any] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
9977
10506
  :param str time_created: The date and time that the Data Science private endpoint was created, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
9978
10507
  :param str time_updated: The date and time that the Data Science private endpoint was updated expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format. Example: `2018-04-03T21:10:29.600Z`
9979
10508
  """
@@ -9991,6 +10520,7 @@ class GetPrivateEndpointsDataSciencePrivateEndpointResult(dict):
9991
10520
  pulumi.set(__self__, "state", state)
9992
10521
  pulumi.set(__self__, "sub_domain", sub_domain)
9993
10522
  pulumi.set(__self__, "subnet_id", subnet_id)
10523
+ pulumi.set(__self__, "system_tags", system_tags)
9994
10524
  pulumi.set(__self__, "time_created", time_created)
9995
10525
  pulumi.set(__self__, "time_updated", time_updated)
9996
10526
 
@@ -10103,6 +10633,14 @@ class GetPrivateEndpointsDataSciencePrivateEndpointResult(dict):
10103
10633
  """
10104
10634
  return pulumi.get(self, "subnet_id")
10105
10635
 
10636
+ @property
10637
+ @pulumi.getter(name="systemTags")
10638
+ def system_tags(self) -> Mapping[str, Any]:
10639
+ """
10640
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
10641
+ """
10642
+ return pulumi.get(self, "system_tags")
10643
+
10106
10644
  @property
10107
10645
  @pulumi.getter(name="timeCreated")
10108
10646
  def time_created(self) -> str:
@@ -10185,6 +10723,7 @@ class GetProjectsProjectResult(dict):
10185
10723
  freeform_tags: Mapping[str, Any],
10186
10724
  id: str,
10187
10725
  state: str,
10726
+ system_tags: Mapping[str, Any],
10188
10727
  time_created: str):
10189
10728
  """
10190
10729
  :param str compartment_id: <b>Filter</b> results by the [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
@@ -10195,6 +10734,7 @@ class GetProjectsProjectResult(dict):
10195
10734
  :param Mapping[str, Any] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
10196
10735
  :param str id: <b>Filter</b> results by [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm). Must be an OCID of the correct type for the resource type.
10197
10736
  :param str state: <b>Filter</b> results by the specified lifecycle state. Must be a valid state for the resource type.
10737
+ :param Mapping[str, Any] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
10198
10738
  :param str time_created: The date and time the resource was created in the timestamp format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: 2019-08-25T21:10:29.41Z
10199
10739
  """
10200
10740
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -10205,6 +10745,7 @@ class GetProjectsProjectResult(dict):
10205
10745
  pulumi.set(__self__, "freeform_tags", freeform_tags)
10206
10746
  pulumi.set(__self__, "id", id)
10207
10747
  pulumi.set(__self__, "state", state)
10748
+ pulumi.set(__self__, "system_tags", system_tags)
10208
10749
  pulumi.set(__self__, "time_created", time_created)
10209
10750
 
10210
10751
  @property
@@ -10271,6 +10812,14 @@ class GetProjectsProjectResult(dict):
10271
10812
  """
10272
10813
  return pulumi.get(self, "state")
10273
10814
 
10815
+ @property
10816
+ @pulumi.getter(name="systemTags")
10817
+ def system_tags(self) -> Mapping[str, Any]:
10818
+ """
10819
+ Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
10820
+ """
10821
+ return pulumi.get(self, "system_tags")
10822
+
10274
10823
  @property
10275
10824
  @pulumi.getter(name="timeCreated")
10276
10825
  def time_created(self) -> str: