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.
- pulumi_oci/__init__.py +8 -0
- pulumi_oci/core/_inputs.py +6 -6
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/outputs.py +6 -6
- pulumi_oci/dataintegration/__init__.py +3 -0
- pulumi_oci/dataintegration/_inputs.py +749 -0
- pulumi_oci/dataintegration/get_workspace_application_schedule.py +316 -0
- pulumi_oci/dataintegration/get_workspace_application_schedules.py +230 -0
- pulumi_oci/dataintegration/outputs.py +2826 -912
- pulumi_oci/dataintegration/workspace_application_schedule.py +926 -0
- pulumi_oci/datascience/_inputs.py +204 -0
- pulumi_oci/datascience/get_job.py +14 -1
- pulumi_oci/datascience/get_job_run.py +14 -1
- pulumi_oci/datascience/get_model_version_set.py +14 -1
- pulumi_oci/datascience/get_private_endpoint.py +14 -1
- pulumi_oci/datascience/get_project.py +14 -1
- pulumi_oci/datascience/job.py +63 -0
- pulumi_oci/datascience/job_run.py +63 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +549 -0
- pulumi_oci/datascience/private_endpoint.py +28 -0
- pulumi_oci/datascience/project.py +28 -0
- {pulumi_oci-1.23.0a1708018020.dist-info → pulumi_oci-1.24.0.dist-info}/METADATA +1 -1
- {pulumi_oci-1.23.0a1708018020.dist-info → pulumi_oci-1.24.0.dist-info}/RECORD +26 -23
- {pulumi_oci-1.23.0a1708018020.dist-info → pulumi_oci-1.24.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.23.0a1708018020.dist-info → pulumi_oci-1.24.0.dist-info}/top_level.txt +0 -0
@@ -184,6 +184,7 @@ class _PrivateEndpointState:
|
|
184
184
|
state: Optional[pulumi.Input[str]] = None,
|
185
185
|
sub_domain: Optional[pulumi.Input[str]] = None,
|
186
186
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
187
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
187
188
|
time_created: Optional[pulumi.Input[str]] = None,
|
188
189
|
time_updated: Optional[pulumi.Input[str]] = None):
|
189
190
|
"""
|
@@ -205,6 +206,7 @@ class _PrivateEndpointState:
|
|
205
206
|
|
206
207
|
** IMPORTANT **
|
207
208
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
209
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
208
210
|
:param pulumi.Input[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`
|
209
211
|
:param pulumi.Input[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`
|
210
212
|
"""
|
@@ -234,6 +236,8 @@ class _PrivateEndpointState:
|
|
234
236
|
pulumi.set(__self__, "sub_domain", sub_domain)
|
235
237
|
if subnet_id is not None:
|
236
238
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
239
|
+
if system_tags is not None:
|
240
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
237
241
|
if time_created is not None:
|
238
242
|
pulumi.set(__self__, "time_created", time_created)
|
239
243
|
if time_updated is not None:
|
@@ -399,6 +403,18 @@ class _PrivateEndpointState:
|
|
399
403
|
def subnet_id(self, value: Optional[pulumi.Input[str]]):
|
400
404
|
pulumi.set(self, "subnet_id", value)
|
401
405
|
|
406
|
+
@property
|
407
|
+
@pulumi.getter(name="systemTags")
|
408
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
409
|
+
"""
|
410
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
411
|
+
"""
|
412
|
+
return pulumi.get(self, "system_tags")
|
413
|
+
|
414
|
+
@system_tags.setter
|
415
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
416
|
+
pulumi.set(self, "system_tags", value)
|
417
|
+
|
402
418
|
@property
|
403
419
|
@pulumi.getter(name="timeCreated")
|
404
420
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -583,6 +599,7 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
583
599
|
__props__.__dict__["fqdn"] = None
|
584
600
|
__props__.__dict__["lifecycle_details"] = None
|
585
601
|
__props__.__dict__["state"] = None
|
602
|
+
__props__.__dict__["system_tags"] = None
|
586
603
|
__props__.__dict__["time_created"] = None
|
587
604
|
__props__.__dict__["time_updated"] = None
|
588
605
|
super(PrivateEndpoint, __self__).__init__(
|
@@ -608,6 +625,7 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
608
625
|
state: Optional[pulumi.Input[str]] = None,
|
609
626
|
sub_domain: Optional[pulumi.Input[str]] = None,
|
610
627
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
628
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
611
629
|
time_created: Optional[pulumi.Input[str]] = None,
|
612
630
|
time_updated: Optional[pulumi.Input[str]] = None) -> 'PrivateEndpoint':
|
613
631
|
"""
|
@@ -634,6 +652,7 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
634
652
|
|
635
653
|
** IMPORTANT **
|
636
654
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
655
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
637
656
|
:param pulumi.Input[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`
|
638
657
|
:param pulumi.Input[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`
|
639
658
|
"""
|
@@ -654,6 +673,7 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
654
673
|
__props__.__dict__["state"] = state
|
655
674
|
__props__.__dict__["sub_domain"] = sub_domain
|
656
675
|
__props__.__dict__["subnet_id"] = subnet_id
|
676
|
+
__props__.__dict__["system_tags"] = system_tags
|
657
677
|
__props__.__dict__["time_created"] = time_created
|
658
678
|
__props__.__dict__["time_updated"] = time_updated
|
659
679
|
return PrivateEndpoint(resource_name, opts=opts, __props__=__props__)
|
@@ -766,6 +786,14 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
766
786
|
"""
|
767
787
|
return pulumi.get(self, "subnet_id")
|
768
788
|
|
789
|
+
@property
|
790
|
+
@pulumi.getter(name="systemTags")
|
791
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
792
|
+
"""
|
793
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
794
|
+
"""
|
795
|
+
return pulumi.get(self, "system_tags")
|
796
|
+
|
769
797
|
@property
|
770
798
|
@pulumi.getter(name="timeCreated")
|
771
799
|
def time_created(self) -> pulumi.Output[str]:
|
@@ -116,6 +116,7 @@ class _ProjectState:
|
|
116
116
|
display_name: Optional[pulumi.Input[str]] = None,
|
117
117
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
118
118
|
state: Optional[pulumi.Input[str]] = None,
|
119
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
119
120
|
time_created: Optional[pulumi.Input[str]] = None):
|
120
121
|
"""
|
121
122
|
Input properties used for looking up and filtering Project resources.
|
@@ -130,6 +131,7 @@ class _ProjectState:
|
|
130
131
|
** IMPORTANT **
|
131
132
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
132
133
|
:param pulumi.Input[str] state: The state of the project.
|
134
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
133
135
|
:param pulumi.Input[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
|
134
136
|
"""
|
135
137
|
if compartment_id is not None:
|
@@ -146,6 +148,8 @@ class _ProjectState:
|
|
146
148
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
147
149
|
if state is not None:
|
148
150
|
pulumi.set(__self__, "state", state)
|
151
|
+
if system_tags is not None:
|
152
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
149
153
|
if time_created is not None:
|
150
154
|
pulumi.set(__self__, "time_created", time_created)
|
151
155
|
|
@@ -237,6 +241,18 @@ class _ProjectState:
|
|
237
241
|
def state(self, value: Optional[pulumi.Input[str]]):
|
238
242
|
pulumi.set(self, "state", value)
|
239
243
|
|
244
|
+
@property
|
245
|
+
@pulumi.getter(name="systemTags")
|
246
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
247
|
+
"""
|
248
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
249
|
+
"""
|
250
|
+
return pulumi.get(self, "system_tags")
|
251
|
+
|
252
|
+
@system_tags.setter
|
253
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
254
|
+
pulumi.set(self, "system_tags", value)
|
255
|
+
|
240
256
|
@property
|
241
257
|
@pulumi.getter(name="timeCreated")
|
242
258
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
@@ -379,6 +395,7 @@ class Project(pulumi.CustomResource):
|
|
379
395
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
380
396
|
__props__.__dict__["created_by"] = None
|
381
397
|
__props__.__dict__["state"] = None
|
398
|
+
__props__.__dict__["system_tags"] = None
|
382
399
|
__props__.__dict__["time_created"] = None
|
383
400
|
super(Project, __self__).__init__(
|
384
401
|
'oci:DataScience/project:Project',
|
@@ -397,6 +414,7 @@ class Project(pulumi.CustomResource):
|
|
397
414
|
display_name: Optional[pulumi.Input[str]] = None,
|
398
415
|
freeform_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
399
416
|
state: Optional[pulumi.Input[str]] = None,
|
417
|
+
system_tags: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
400
418
|
time_created: Optional[pulumi.Input[str]] = None) -> 'Project':
|
401
419
|
"""
|
402
420
|
Get an existing Project resource's state with the given name, id, and optional extra
|
@@ -416,6 +434,7 @@ class Project(pulumi.CustomResource):
|
|
416
434
|
** IMPORTANT **
|
417
435
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
418
436
|
:param pulumi.Input[str] state: The state of the project.
|
437
|
+
:param pulumi.Input[Mapping[str, Any]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
419
438
|
:param pulumi.Input[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
|
420
439
|
"""
|
421
440
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
@@ -429,6 +448,7 @@ class Project(pulumi.CustomResource):
|
|
429
448
|
__props__.__dict__["display_name"] = display_name
|
430
449
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
431
450
|
__props__.__dict__["state"] = state
|
451
|
+
__props__.__dict__["system_tags"] = system_tags
|
432
452
|
__props__.__dict__["time_created"] = time_created
|
433
453
|
return Project(resource_name, opts=opts, __props__=__props__)
|
434
454
|
|
@@ -492,6 +512,14 @@ class Project(pulumi.CustomResource):
|
|
492
512
|
"""
|
493
513
|
return pulumi.get(self, "state")
|
494
514
|
|
515
|
+
@property
|
516
|
+
@pulumi.getter(name="systemTags")
|
517
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, Any]]:
|
518
|
+
"""
|
519
|
+
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
520
|
+
"""
|
521
|
+
return pulumi.get(self, "system_tags")
|
522
|
+
|
495
523
|
@property
|
496
524
|
@pulumi.getter(name="timeCreated")
|
497
525
|
def time_created(self) -> pulumi.Output[str]:
|
@@ -1,4 +1,4 @@
|
|
1
|
-
pulumi_oci/__init__.py,sha256=
|
1
|
+
pulumi_oci/__init__.py,sha256=Rsg-q29wgak5DsAufzmCweCBWbHuxlyOfuYrWU9WBI8,144290
|
2
2
|
pulumi_oci/_utilities.py,sha256=b6gJn0IIeM1t6Q7EVjqw3yhuGyP-uENQhtL5yp7aHR8,9248
|
3
3
|
pulumi_oci/provider.py,sha256=xb4xvGxOAQDmgHlar9M1AaiSt9ZiwtfITBZBtsdkfbg,24464
|
4
4
|
pulumi_oci/pulumi-plugin.json,sha256=M43fXbtz4Dlbv_jxw-1L4SOTGFmJN2lYa7ePzB7DmBs,40
|
@@ -403,7 +403,7 @@ pulumi_oci/containerinstances/get_container_instance_shapes.py,sha256=7rN2PeiZR6
|
|
403
403
|
pulumi_oci/containerinstances/get_container_instances.py,sha256=pBUIFZNxDsTxQo_IUhZ3yjqAGK_L0nY1ZYCDBYzfc2o,8675
|
404
404
|
pulumi_oci/containerinstances/outputs.py,sha256=sm0vhVNkyyxUBAfKLhYP8A1QC2kOtN3rnIRK2cJJlK0,97076
|
405
405
|
pulumi_oci/core/__init__.py,sha256=1GusBEmlUsbsrbDNFi5y0kaT_whekHP4LjiFbm85QvY,8463
|
406
|
-
pulumi_oci/core/_inputs.py,sha256=
|
406
|
+
pulumi_oci/core/_inputs.py,sha256=EkLhlmPyBz6uVqaYdVYnH20D0lY_pTHWs_ZdCi7NwbU,865646
|
407
407
|
pulumi_oci/core/app_catalog_listing_resource_version_agreement.py,sha256=iZqWMUjT3O1N1CR2gTp-PYauBD-uH7oA6vYbU-Y3LrU,14530
|
408
408
|
pulumi_oci/core/app_catalog_subscription.py,sha256=hHf2mTdcOFflG4MntrELFagGjeJlpPjYqLYUIauzNvE,29246
|
409
409
|
pulumi_oci/core/boot_volume.py,sha256=A80A9OKeDOwSbMl6oWCIiRem5dnXrq4KUMHKMfz-elY,62202
|
@@ -581,7 +581,7 @@ pulumi_oci/core/get_volumes.py,sha256=DQZspEI-pvLPONVEsifRnKx14LJyANivHWVQaVPw02
|
|
581
581
|
pulumi_oci/core/get_vtap.py,sha256=kJNOPbT9GrW2_13-BkxeMgLepkDbAu6eJzyQ9yJTFHA,16439
|
582
582
|
pulumi_oci/core/get_vtaps.py,sha256=u4sv3uAMwAAmNyZUJMlr4ApI9hmT1TubwTz_riiAPlU,12020
|
583
583
|
pulumi_oci/core/image.py,sha256=IPXHPgg1IHGLJ7CN0-pGq2RbeB7wfTm2B5YMhdIB2J0,48650
|
584
|
-
pulumi_oci/core/instance.py,sha256=
|
584
|
+
pulumi_oci/core/instance.py,sha256=1bZgcr6JcOS5jfIZ7cf4bmRerCEyrFwQZyNtCP5q2VA,165447
|
585
585
|
pulumi_oci/core/instance_configuration.py,sha256=KpUrjMlZC7DxpkobrYZepUXFcCVsMIGMDO99T6NVS8o,113789
|
586
586
|
pulumi_oci/core/instance_console_connection.py,sha256=G39I6Mbc06ndpRn4eSGyZoJs6mcfCSbti1ViL2rIh-8,27483
|
587
587
|
pulumi_oci/core/instance_pool.py,sha256=bdgNmCPpqi3gFM4rdGupCcXPMKw16L_0n9UUtWfaF7g,55245
|
@@ -595,7 +595,7 @@ pulumi_oci/core/local_peering_gateway.py,sha256=xJr8SpLZUKn83x0ht7gOpvSw9FSkLN8c
|
|
595
595
|
pulumi_oci/core/nat_gateway.py,sha256=p7rAB2p6ep5OzI80Q_1-MfllSqYl2yTqCz8_8w5yi8U,35959
|
596
596
|
pulumi_oci/core/network_security_group.py,sha256=ThMvE2sLl50AR_sCiZrGw_VO5zP1miT9NGBP-K9btVM,25260
|
597
597
|
pulumi_oci/core/network_security_group_security_rule.py,sha256=LS9t4I6RHuWdJh2OXb6D2wYGaJVccFd7ZVBsp8jNdHA,67308
|
598
|
-
pulumi_oci/core/outputs.py,sha256=
|
598
|
+
pulumi_oci/core/outputs.py,sha256=LFzxWnXe4BHA21dYafaymlWVAqddRtLNS5pFcmn9_HE,2320882
|
599
599
|
pulumi_oci/core/private_ip.py,sha256=AORKOL5Eg4S-AE3U3tsnRQX_vxizzgV1udkonJdL-_8,42391
|
600
600
|
pulumi_oci/core/public_ip.py,sha256=8ocjdss1fblg_W4hWbPIPOatyE8X7gtGKJZAl6LZZ6Q,46145
|
601
601
|
pulumi_oci/core/public_ip_pool.py,sha256=fFhwwY0TvFWhXPY_UfeYoOCMaPCJuIKDWe-FFmfP-Cc,23605
|
@@ -993,12 +993,14 @@ pulumi_oci/dataflow/pool.py,sha256=lu4xU1tYdFmEqnHRG5UEFVfQLy9ww3fAtZrEnAeM-IQ,4
|
|
993
993
|
pulumi_oci/dataflow/private_endpoint.py,sha256=KKPkxOcnh7uwPgS4kHXFMqaVLh3C0U4bXl7yuHF09dM,42901
|
994
994
|
pulumi_oci/dataflow/run_statement.py,sha256=Y92aVbd-eYu-6Hm_2xJd8RqDN1o0B_1nTM-koXcscKQ,16438
|
995
995
|
pulumi_oci/dataflow/sql_endpoint.py,sha256=AOLVSgcFbw-T0JCa2gP5rwzN2inPz3AdDnQXMoZ3_YA,59795
|
996
|
-
pulumi_oci/dataintegration/__init__.py,sha256=
|
997
|
-
pulumi_oci/dataintegration/_inputs.py,sha256=
|
996
|
+
pulumi_oci/dataintegration/__init__.py,sha256=_sCBdxwOoCPqNfr20g7RlHsZ3zZGAOFA0Tvlf4CsWFE,1275
|
997
|
+
pulumi_oci/dataintegration/_inputs.py,sha256=eldqSQgfTdJV9dSeYhj8Hgk3nZ4vBZjIr1Vaufin56I,159496
|
998
998
|
pulumi_oci/dataintegration/get_workspace.py,sha256=uJDqk7crxUolfpY80LBMbsM1cjw3jaSltDF9tSoh8To,16955
|
999
999
|
pulumi_oci/dataintegration/get_workspace_application.py,sha256=nR8rJKPpCcS0jrw_HysEjHU3p_0Qq_hp_c9r6W_p0mY,19215
|
1000
1000
|
pulumi_oci/dataintegration/get_workspace_application_patch.py,sha256=mdWPDApGsKb-dTcvFDrF9h6nJCQByFngQfwjp95issk,16964
|
1001
1001
|
pulumi_oci/dataintegration/get_workspace_application_patches.py,sha256=4OF1--PL1l_2T8C9nbwZtvJciYld6QmjZ8Ie6vu6FEg,9661
|
1002
|
+
pulumi_oci/dataintegration/get_workspace_application_schedule.py,sha256=BRSEebXeeAJI-V7CP2nhTVrFzYJF1HF1dgzdnDfQkog,13588
|
1003
|
+
pulumi_oci/dataintegration/get_workspace_application_schedules.py,sha256=BQ1RCXXvXTva5XhMQA-xymjviXSYTiTqJIeliohlCAI,11259
|
1002
1004
|
pulumi_oci/dataintegration/get_workspace_applications.py,sha256=zoCYmWxeV-AZ-gikxk3H_5gD8qCL2LGhMLjPIUrM9ys,9614
|
1003
1005
|
pulumi_oci/dataintegration/get_workspace_export_request.py,sha256=8mCOuylFwwTStueP6g38SGVCyExGq7bJa2FLAdp5eyw,15126
|
1004
1006
|
pulumi_oci/dataintegration/get_workspace_export_requests.py,sha256=qpKPg_Gzg6FUeT8xrKmRUQQNM4a6hntumgTsTn2olF4,11288
|
@@ -1009,10 +1011,11 @@ pulumi_oci/dataintegration/get_workspace_import_requests.py,sha256=e_unxX_9tQop3
|
|
1009
1011
|
pulumi_oci/dataintegration/get_workspace_project.py,sha256=7wSU8sp9mjak4w05oSEntI7OTJxbUKTsfSFlRkg9DWg,10775
|
1010
1012
|
pulumi_oci/dataintegration/get_workspace_projects.py,sha256=ZXsHDDix_PgwEYJIC21pfeU5eh-kR7rt4nVQCqNNbzw,9018
|
1011
1013
|
pulumi_oci/dataintegration/get_workspaces.py,sha256=q_CqUySwm94B8X83dYMKtPT3TIr2e_VYOjaAVKipn7s,7408
|
1012
|
-
pulumi_oci/dataintegration/outputs.py,sha256=
|
1014
|
+
pulumi_oci/dataintegration/outputs.py,sha256=xT84znhj3rKvG10psMm6EBYhC2dtlTrY63djNvLUugU,410730
|
1013
1015
|
pulumi_oci/dataintegration/workspace.py,sha256=awhMTklfYO2C33HUnREYv_F2kBN020VK8NO2UUrAgp0,58502
|
1014
1016
|
pulumi_oci/dataintegration/workspace_application.py,sha256=xY3Gu_nx8w6aavdDvGRC2Tb2Cwen21NP7q-2K-gBTK0,61670
|
1015
1017
|
pulumi_oci/dataintegration/workspace_application_patch.py,sha256=1BrT9FVjvqH9xJs8yrWMCvUPJ_Shoqf1jNpBmxI2PHk,49469
|
1018
|
+
pulumi_oci/dataintegration/workspace_application_schedule.py,sha256=xhkydFfHK5zfTdf5mSugwwpCmK-xrHFMB5o8zmJSsg8,48052
|
1016
1019
|
pulumi_oci/dataintegration/workspace_export_request.py,sha256=NUleAeueSeSX2uEHy0ML7uIkRzVz9DiCMdecdlpZmgY,40741
|
1017
1020
|
pulumi_oci/dataintegration/workspace_folder.py,sha256=wplNZQFoB0mcr5VUSKS7iUWnXvxlpyC5osfabDISfeU,37334
|
1018
1021
|
pulumi_oci/dataintegration/workspace_import_request.py,sha256=YSP5heLLlCjxStPk77E7eIN7K5TmzHedNrCCPorl6d8,39132
|
@@ -1184,10 +1187,10 @@ pulumi_oci/datasafe/unset_security_assessment_baseline.py,sha256=p2xe2dNQzAZXtYs
|
|
1184
1187
|
pulumi_oci/datasafe/unset_user_assessment_baseline.py,sha256=h_3micWzs_VHbpiGX-uzCcE_8RXPWavoL6W3OQLj3cg,9379
|
1185
1188
|
pulumi_oci/datasafe/user_assessment.py,sha256=isjC_JNJtIxgWnqJwD5dufTFhS9GBjPjyNEvL9wMqIQ,55395
|
1186
1189
|
pulumi_oci/datascience/__init__.py,sha256=YUs9Sg1hYEkk_ORPN54BOFosvaeepgs8SelXVgSpgYc,1506
|
1187
|
-
pulumi_oci/datascience/_inputs.py,sha256=
|
1190
|
+
pulumi_oci/datascience/_inputs.py,sha256=Vaj1ZCRbfc51V5hKW4-UWdSiBrQu-3P3ljLCw6DfzNM,168150
|
1188
1191
|
pulumi_oci/datascience/get_fast_launch_job_configs.py,sha256=gyW03ivMAjW__fluRXPt5CexNZQAMt6sbZIA_Xzr_Jc,5355
|
1189
|
-
pulumi_oci/datascience/get_job.py,sha256=
|
1190
|
-
pulumi_oci/datascience/get_job_run.py,sha256=
|
1192
|
+
pulumi_oci/datascience/get_job.py,sha256=CE5_FMl63GcxaPUFNUUwtMcJ38IKRobTQ3aU0YAR19g,17568
|
1193
|
+
pulumi_oci/datascience/get_job_run.py,sha256=_NmqzNpdVs9U7LDfO0IG9rClapQ1bGfyYvS2kBBrQyU,16494
|
1191
1194
|
pulumi_oci/datascience/get_job_runs.py,sha256=gvf3yd8cMGONrAV1Qx1T04l1qWKZ0Jr-UEN0FlGKeAY,9520
|
1192
1195
|
pulumi_oci/datascience/get_job_shapes.py,sha256=pkKh4cdTCC9XEkPjCAsCpcNSaVvHh00QKhZOk04NlZw,4760
|
1193
1196
|
pulumi_oci/datascience/get_jobs.py,sha256=XdgPaUuxAMKP8Fc84aTauQLq7lySwQQepZaxqfcfy78,9484
|
@@ -1196,7 +1199,7 @@ pulumi_oci/datascience/get_model_deployment.py,sha256=OYiCrKbqWU3GnH9UC4HTQvCLFM
|
|
1196
1199
|
pulumi_oci/datascience/get_model_deployment_shapes.py,sha256=qbCK2HpwYJ7OXaPqCGL7HmsLQ4OMGqvd_l88n21u6GU,5320
|
1197
1200
|
pulumi_oci/datascience/get_model_deployments.py,sha256=uVsuuptSaDYE2KsVSemeZ9Ig6vLj8unsEVzwDArCh5E,10991
|
1198
1201
|
pulumi_oci/datascience/get_model_provenance.py,sha256=HBw6g-85BiPn2W3qKOnMwWELhrRzuiED9auRqqYQs94,7013
|
1199
|
-
pulumi_oci/datascience/get_model_version_set.py,sha256=
|
1202
|
+
pulumi_oci/datascience/get_model_version_set.py,sha256=nikKaZy_60oUoxJ-4Xe-SylmipAOUnc4Qvj_DDN3umw,10553
|
1200
1203
|
pulumi_oci/datascience/get_model_version_sets.py,sha256=4vVwf3mX9mF1N1W2LPQxCpJ1x15XA721O6Zn5_l-u48,10310
|
1201
1204
|
pulumi_oci/datascience/get_models.py,sha256=LlYldHbkvaHxdXl5XkAziNW118iatuqLijasGgCmAcU,11314
|
1202
1205
|
pulumi_oci/datascience/get_notebook_session.py,sha256=0V8eqTaELPMdRs7moMTAwGQcpgyVBcoG6jGnIvyi_qg,14203
|
@@ -1206,24 +1209,24 @@ pulumi_oci/datascience/get_pipeline.py,sha256=BF1pfRN7a4xpsDdrWNKC-IyGEaLUdbjQDU
|
|
1206
1209
|
pulumi_oci/datascience/get_pipeline_run.py,sha256=Tp1yKdWlFHJBnJoUNCbjHpYtNBJJfYiO0UYvKPfj-rM,17152
|
1207
1210
|
pulumi_oci/datascience/get_pipeline_runs.py,sha256=ufGFNavOco8P9CIpY2QLuHQvSz3WDXFjOh6ET49dHPU,9935
|
1208
1211
|
pulumi_oci/datascience/get_pipelines.py,sha256=hmIUoIveUSWlGzBiLzxcw157UiUb4VjylEnoeCCmMXA,9679
|
1209
|
-
pulumi_oci/datascience/get_private_endpoint.py,sha256=
|
1212
|
+
pulumi_oci/datascience/get_private_endpoint.py,sha256=vXlfVQySNnn5husLt-iEiN_cevLC2L5ZBAwjCfyD62c,13397
|
1210
1213
|
pulumi_oci/datascience/get_private_endpoints.py,sha256=kkOT4BZR0dC6u0S6YVkrVACRimIhhgPgi2vrUDktU-k,10585
|
1211
|
-
pulumi_oci/datascience/get_project.py,sha256=
|
1214
|
+
pulumi_oci/datascience/get_project.py,sha256=lMC_e4y465Q8Lwh4QX-lonW-suEc58fwkSqOPltnh08,8904
|
1212
1215
|
pulumi_oci/datascience/get_projects.py,sha256=arL2tUfYnrMeUaLvPI1aPcJ820GcuoEmR7PXKRnVHrY,8610
|
1213
|
-
pulumi_oci/datascience/job.py,sha256=
|
1214
|
-
pulumi_oci/datascience/job_run.py,sha256=
|
1216
|
+
pulumi_oci/datascience/job.py,sha256=Y18MsRKfmvZHwuPnVoXR3rPLnMEndQllFbfqJPDB5hY,66775
|
1217
|
+
pulumi_oci/datascience/job_run.py,sha256=0SDfhoNyVY0FyubPKdgbX9eO1AunfoI8_qnT0gDPLLc,54975
|
1215
1218
|
pulumi_oci/datascience/model.py,sha256=I4bPc8-VJij-6e8krFswKrXQEvj7plcro-kqPc6CIR4,52716
|
1216
1219
|
pulumi_oci/datascience/model_artifact_export.py,sha256=3luxH5zMiFVqyiUAha3paucsA2RgDt8r9HiOa8o1kX8,12879
|
1217
1220
|
pulumi_oci/datascience/model_artifact_import.py,sha256=bPnG_kR2mp8AcUUdlEV1wWOiP9cXrfbbTMUox-VeXhM,13344
|
1218
1221
|
pulumi_oci/datascience/model_deployment.py,sha256=08OfdOzopre57Zspf6EYix_mqma5yiZ_eHJcHTsr1Cs,47346
|
1219
1222
|
pulumi_oci/datascience/model_provenance.py,sha256=biXgZczZfknHLbZFxAISrwjQVTl3BqA1gJI9wW5ZqAY,24769
|
1220
|
-
pulumi_oci/datascience/model_version_set.py,sha256=
|
1223
|
+
pulumi_oci/datascience/model_version_set.py,sha256=0GW-UlwJIUX96OdYGyXSzPIu0fhctvLke2S3ecT4ksE,31358
|
1221
1224
|
pulumi_oci/datascience/notebook_session.py,sha256=rKOZBcZq0kKqBXt-ELUZpvA4uR54wpZlo3n58fDboAM,54030
|
1222
|
-
pulumi_oci/datascience/outputs.py,sha256=
|
1225
|
+
pulumi_oci/datascience/outputs.py,sha256=Hiy1R7p-R1tOXQMBYzrkgH6mmNFNuD6KzwXSQJu1X98,480632
|
1223
1226
|
pulumi_oci/datascience/pipeline.py,sha256=m4eFrnpiOM7mJx5n5ZmWLt62OMNC7sasbEGbRxsG3D0,53736
|
1224
1227
|
pulumi_oci/datascience/pipeline_run.py,sha256=ojsUMMFIobvXKqAMs24MmBIVkGSALU4OZIv6nwKDQN8,56932
|
1225
|
-
pulumi_oci/datascience/private_endpoint.py,sha256=
|
1226
|
-
pulumi_oci/datascience/project.py,sha256=
|
1228
|
+
pulumi_oci/datascience/private_endpoint.py,sha256=RAVvHW30ddUEiyVB8gFBOFQw_qwqC-lvTueSJzdZaq4,40501
|
1229
|
+
pulumi_oci/datascience/project.py,sha256=ogShnTpFdFv9fUnFIQCdz9W4VPRfj6hPYu5mY1LxaE8,26775
|
1227
1230
|
pulumi_oci/devops/__init__.py,sha256=jGVaG5GgMDYniHsVYgCiOln8YZzQTBIMnWiXDrDeGe0,2195
|
1228
1231
|
pulumi_oci/devops/_inputs.py,sha256=35zZAwD2wSIaLitv_bHIlSaXeDEhO6XAvkyULylWfXE,200846
|
1229
1232
|
pulumi_oci/devops/build_pipeline.py,sha256=jJqlFNCK-HbasJcgHAci5SbLTbgDkayI_LYPqUSeleg,33636
|
@@ -2615,7 +2618,7 @@ pulumi_oci/waf/get_web_app_firewall_policies.py,sha256=KJZEdRiQjG67_3x9zDG9u6m7h
|
|
2615
2618
|
pulumi_oci/waf/get_web_app_firewall_policy.py,sha256=t31n_rsb6FWI8YkhndA1ucpKIbWq9XTogW-6D3Bbfe4,14240
|
2616
2619
|
pulumi_oci/waf/network_address_list.py,sha256=dMGab_fwT5pPiLF9kQ3j-Qd-RkXkDfyz306u2eQh0WQ,32655
|
2617
2620
|
pulumi_oci/waf/outputs.py,sha256=L_Ay91T3B8xIip2QKrOOW99UlLifV9ByKqO-js2Y84w,227577
|
2618
|
-
pulumi_oci-1.
|
2619
|
-
pulumi_oci-1.
|
2620
|
-
pulumi_oci-1.
|
2621
|
-
pulumi_oci-1.
|
2621
|
+
pulumi_oci-1.24.0.dist-info/METADATA,sha256=4a-CY-IXG-3W83aKuvzP_SEll_oPREFso9u5tSh0bqw,3888
|
2622
|
+
pulumi_oci-1.24.0.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
2623
|
+
pulumi_oci-1.24.0.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2624
|
+
pulumi_oci-1.24.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|