pulumi-oci 2.14.0a1730182164__py3-none-any.whl → 2.15.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/containerengine/addon.py +54 -7
- pulumi_oci/containerengine/get_addon.py +12 -1
- pulumi_oci/containerengine/outputs.py +9 -1
- pulumi_oci/core/_inputs.py +74 -0
- pulumi_oci/core/get_instance.py +1 -1
- pulumi_oci/core/get_virtual_circuit.py +18 -4
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/instance_pool.py +7 -7
- pulumi_oci/core/outputs.py +165 -7
- pulumi_oci/core/virtual_circuit.py +30 -2
- pulumi_oci/database/_inputs.py +642 -0
- pulumi_oci/database/autonomous_container_database.py +14 -14
- pulumi_oci/database/autonomous_database.py +75 -0
- pulumi_oci/database/get_autonomous_container_database.py +3 -3
- pulumi_oci/database/get_autonomous_database.py +29 -1
- pulumi_oci/database/get_autonomous_databases.py +22 -28
- pulumi_oci/database/outputs.py +1669 -86
- pulumi_oci/datasafe/__init__.py +2 -0
- pulumi_oci/datasafe/_inputs.py +49 -0
- pulumi_oci/datasafe/get_database_security_config.py +307 -0
- pulumi_oci/datasafe/get_database_security_configs.py +342 -0
- pulumi_oci/datasafe/outputs.py +325 -0
- pulumi_oci/datascience/_inputs.py +353 -0
- pulumi_oci/datascience/get_model.py +113 -4
- pulumi_oci/datascience/get_models.py +30 -5
- pulumi_oci/datascience/model.py +346 -5
- pulumi_oci/datascience/outputs.py +778 -1
- pulumi_oci/filestorage/_inputs.py +651 -0
- pulumi_oci/filestorage/export.py +96 -3
- pulumi_oci/filestorage/file_system.py +93 -0
- pulumi_oci/filestorage/filesystem_snapshot_policy.py +93 -0
- pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +26 -1
- pulumi_oci/filestorage/get_outbound_connector.py +26 -1
- pulumi_oci/filestorage/get_replication.py +27 -1
- pulumi_oci/filestorage/get_snapshot.py +27 -1
- pulumi_oci/filestorage/mount_target.py +108 -0
- pulumi_oci/filestorage/outbound_connector.py +93 -0
- pulumi_oci/filestorage/outputs.py +1218 -2
- pulumi_oci/filestorage/replication.py +95 -0
- pulumi_oci/filestorage/snapshot.py +97 -2
- pulumi_oci/identity/domains_auth_token.py +68 -0
- pulumi_oci/identity/domains_customer_secret_key.py +56 -0
- pulumi_oci/identity/domains_oauth2client_credential.py +64 -0
- pulumi_oci/identity/domains_smtp_credential.py +60 -0
- pulumi_oci/identity/get_domains_auth_token.py +15 -1
- pulumi_oci/identity/get_domains_customer_secret_key.py +15 -1
- pulumi_oci/identity/get_domains_oauth2client_credential.py +15 -1
- pulumi_oci/identity/get_domains_smtp_credential.py +15 -1
- pulumi_oci/identity/outputs.py +44 -0
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/networkloadbalancer/get_backend_set.py +1 -1
- pulumi_oci/networkloadbalancer/get_listener.py +15 -1
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +15 -1
- pulumi_oci/networkloadbalancer/listener.py +49 -0
- pulumi_oci/networkloadbalancer/network_load_balancer.py +47 -0
- pulumi_oci/networkloadbalancer/outputs.py +24 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/resourcescheduler/_inputs.py +24 -21
- pulumi_oci/resourcescheduler/get_schedules.py +6 -6
- pulumi_oci/resourcescheduler/outputs.py +18 -16
- pulumi_oci/resourcescheduler/schedule.py +14 -88
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/RECORD +65 -63
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.15.0.dist-info}/top_level.txt +0 -0
@@ -38,8 +38,8 @@ class ScheduleArgs:
|
|
38
38
|
The set of arguments for constructing a Schedule resource.
|
39
39
|
:param pulumi.Input[str] action: (Updatable) This is the action that will be executed by the schedule.
|
40
40
|
:param pulumi.Input[str] compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the schedule is created
|
41
|
-
:param pulumi.Input[str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
|
42
|
-
:param pulumi.Input[str] recurrence_type: (Updatable) Type of recurrence of a schedule
|
41
|
+
:param pulumi.Input[str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
|
42
|
+
:param pulumi.Input[str] recurrence_type: (Updatable) Type of recurrence of a schedule. Could be set to `ICAL`, `CRON`
|
43
43
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) These are defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
44
44
|
:param pulumi.Input[str] description: (Updatable) This is the description of the schedule.
|
45
45
|
:param pulumi.Input[str] display_name: (Updatable) This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
|
@@ -105,7 +105,7 @@ class ScheduleArgs:
|
|
105
105
|
@pulumi.getter(name="recurrenceDetails")
|
106
106
|
def recurrence_details(self) -> pulumi.Input[str]:
|
107
107
|
"""
|
108
|
-
(Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
|
108
|
+
(Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
|
109
109
|
"""
|
110
110
|
return pulumi.get(self, "recurrence_details")
|
111
111
|
|
@@ -117,7 +117,7 @@ class ScheduleArgs:
|
|
117
117
|
@pulumi.getter(name="recurrenceType")
|
118
118
|
def recurrence_type(self) -> pulumi.Input[str]:
|
119
119
|
"""
|
120
|
-
(Updatable) Type of recurrence of a schedule
|
120
|
+
(Updatable) Type of recurrence of a schedule. Could be set to `ICAL`, `CRON`
|
121
121
|
"""
|
122
122
|
return pulumi.get(self, "recurrence_type")
|
123
123
|
|
@@ -267,8 +267,8 @@ class _ScheduleState:
|
|
267
267
|
:param pulumi.Input[str] description: (Updatable) This is the description of the schedule.
|
268
268
|
:param pulumi.Input[str] display_name: (Updatable) This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
|
269
269
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
270
|
-
:param pulumi.Input[str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
|
271
|
-
:param pulumi.Input[str] recurrence_type: (Updatable) Type of recurrence of a schedule
|
270
|
+
:param pulumi.Input[str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
|
271
|
+
:param pulumi.Input[str] recurrence_type: (Updatable) Type of recurrence of a schedule. Could be set to `ICAL`, `CRON`
|
272
272
|
:param pulumi.Input[Sequence[pulumi.Input['ScheduleResourceFilterArgs']]] resource_filters: (Updatable) This is a list of resources filters. The schedule will be applied to resources matching all of them.
|
273
273
|
:param pulumi.Input[Sequence[pulumi.Input['ScheduleResourceArgs']]] resources: (Updatable) This is the list of resources to which the scheduled operation is applied.
|
274
274
|
:param pulumi.Input[str] state: (Updatable) The target state for the Schedule. Could be set to `ACTIVE` or `INACTIVE`.
|
@@ -397,7 +397,7 @@ class _ScheduleState:
|
|
397
397
|
@pulumi.getter(name="recurrenceDetails")
|
398
398
|
def recurrence_details(self) -> Optional[pulumi.Input[str]]:
|
399
399
|
"""
|
400
|
-
(Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
|
400
|
+
(Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
|
401
401
|
"""
|
402
402
|
return pulumi.get(self, "recurrence_details")
|
403
403
|
|
@@ -409,7 +409,7 @@ class _ScheduleState:
|
|
409
409
|
@pulumi.getter(name="recurrenceType")
|
410
410
|
def recurrence_type(self) -> Optional[pulumi.Input[str]]:
|
411
411
|
"""
|
412
|
-
(Updatable) Type of recurrence of a schedule
|
412
|
+
(Updatable) Type of recurrence of a schedule. Could be set to `ICAL`, `CRON`
|
413
413
|
"""
|
414
414
|
return pulumi.get(self, "recurrence_type")
|
415
415
|
|
@@ -566,43 +566,6 @@ class Schedule(pulumi.CustomResource):
|
|
566
566
|
|
567
567
|
Creates a Schedule
|
568
568
|
|
569
|
-
## Example Usage
|
570
|
-
|
571
|
-
```python
|
572
|
-
import pulumi
|
573
|
-
import pulumi_oci as oci
|
574
|
-
|
575
|
-
test_schedule = oci.resource_scheduler.Schedule("test_schedule",
|
576
|
-
action=schedule_action,
|
577
|
-
compartment_id=compartment_id,
|
578
|
-
recurrence_details=schedule_recurrence_details,
|
579
|
-
recurrence_type=schedule_recurrence_type,
|
580
|
-
defined_tags={
|
581
|
-
"Operations.CostCenter": "42",
|
582
|
-
},
|
583
|
-
description=schedule_description,
|
584
|
-
display_name=schedule_display_name,
|
585
|
-
freeform_tags={
|
586
|
-
"Department": "Finance",
|
587
|
-
},
|
588
|
-
resource_filters=[{
|
589
|
-
"attribute": schedule_resource_filters_attribute,
|
590
|
-
"condition": schedule_resource_filters_condition,
|
591
|
-
"should_include_child_compartments": schedule_resource_filters_should_include_child_compartments,
|
592
|
-
"values": [{
|
593
|
-
"namespace": schedule_resource_filters_value_namespace,
|
594
|
-
"tag_key": schedule_resource_filters_value_tag_key,
|
595
|
-
"value": schedule_resource_filters_value_value,
|
596
|
-
}],
|
597
|
-
}],
|
598
|
-
resources=[{
|
599
|
-
"id": schedule_resources_id,
|
600
|
-
"metadata": schedule_resources_metadata,
|
601
|
-
}],
|
602
|
-
time_ends=schedule_time_ends,
|
603
|
-
time_starts=schedule_time_starts)
|
604
|
-
```
|
605
|
-
|
606
569
|
## Import
|
607
570
|
|
608
571
|
Schedules can be imported using the `id`, e.g.
|
@@ -619,8 +582,8 @@ class Schedule(pulumi.CustomResource):
|
|
619
582
|
:param pulumi.Input[str] description: (Updatable) This is the description of the schedule.
|
620
583
|
:param pulumi.Input[str] display_name: (Updatable) This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
|
621
584
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
622
|
-
:param pulumi.Input[str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
|
623
|
-
:param pulumi.Input[str] recurrence_type: (Updatable) Type of recurrence of a schedule
|
585
|
+
:param pulumi.Input[str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
|
586
|
+
:param pulumi.Input[str] recurrence_type: (Updatable) Type of recurrence of a schedule. Could be set to `ICAL`, `CRON`
|
624
587
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ScheduleResourceFilterArgs', 'ScheduleResourceFilterArgsDict']]]] resource_filters: (Updatable) This is a list of resources filters. The schedule will be applied to resources matching all of them.
|
625
588
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ScheduleResourceArgs', 'ScheduleResourceArgsDict']]]] resources: (Updatable) This is the list of resources to which the scheduled operation is applied.
|
626
589
|
:param pulumi.Input[str] state: (Updatable) The target state for the Schedule. Could be set to `ACTIVE` or `INACTIVE`.
|
@@ -642,43 +605,6 @@ class Schedule(pulumi.CustomResource):
|
|
642
605
|
|
643
606
|
Creates a Schedule
|
644
607
|
|
645
|
-
## Example Usage
|
646
|
-
|
647
|
-
```python
|
648
|
-
import pulumi
|
649
|
-
import pulumi_oci as oci
|
650
|
-
|
651
|
-
test_schedule = oci.resource_scheduler.Schedule("test_schedule",
|
652
|
-
action=schedule_action,
|
653
|
-
compartment_id=compartment_id,
|
654
|
-
recurrence_details=schedule_recurrence_details,
|
655
|
-
recurrence_type=schedule_recurrence_type,
|
656
|
-
defined_tags={
|
657
|
-
"Operations.CostCenter": "42",
|
658
|
-
},
|
659
|
-
description=schedule_description,
|
660
|
-
display_name=schedule_display_name,
|
661
|
-
freeform_tags={
|
662
|
-
"Department": "Finance",
|
663
|
-
},
|
664
|
-
resource_filters=[{
|
665
|
-
"attribute": schedule_resource_filters_attribute,
|
666
|
-
"condition": schedule_resource_filters_condition,
|
667
|
-
"should_include_child_compartments": schedule_resource_filters_should_include_child_compartments,
|
668
|
-
"values": [{
|
669
|
-
"namespace": schedule_resource_filters_value_namespace,
|
670
|
-
"tag_key": schedule_resource_filters_value_tag_key,
|
671
|
-
"value": schedule_resource_filters_value_value,
|
672
|
-
}],
|
673
|
-
}],
|
674
|
-
resources=[{
|
675
|
-
"id": schedule_resources_id,
|
676
|
-
"metadata": schedule_resources_metadata,
|
677
|
-
}],
|
678
|
-
time_ends=schedule_time_ends,
|
679
|
-
time_starts=schedule_time_starts)
|
680
|
-
```
|
681
|
-
|
682
608
|
## Import
|
683
609
|
|
684
610
|
Schedules can be imported using the `id`, e.g.
|
@@ -791,8 +717,8 @@ class Schedule(pulumi.CustomResource):
|
|
791
717
|
:param pulumi.Input[str] description: (Updatable) This is the description of the schedule.
|
792
718
|
:param pulumi.Input[str] display_name: (Updatable) This is a user-friendly name for the schedule. It does not have to be unique, and it's changeable.
|
793
719
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) These are free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
794
|
-
:param pulumi.Input[str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
|
795
|
-
:param pulumi.Input[str] recurrence_type: (Updatable) Type of recurrence of a schedule
|
720
|
+
:param pulumi.Input[str] recurrence_details: (Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
|
721
|
+
:param pulumi.Input[str] recurrence_type: (Updatable) Type of recurrence of a schedule. Could be set to `ICAL`, `CRON`
|
796
722
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ScheduleResourceFilterArgs', 'ScheduleResourceFilterArgsDict']]]] resource_filters: (Updatable) This is a list of resources filters. The schedule will be applied to resources matching all of them.
|
797
723
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ScheduleResourceArgs', 'ScheduleResourceArgsDict']]]] resources: (Updatable) This is the list of resources to which the scheduled operation is applied.
|
798
724
|
:param pulumi.Input[str] state: (Updatable) The target state for the Schedule. Could be set to `ACTIVE` or `INACTIVE`.
|
@@ -884,7 +810,7 @@ class Schedule(pulumi.CustomResource):
|
|
884
810
|
@pulumi.getter(name="recurrenceDetails")
|
885
811
|
def recurrence_details(self) -> pulumi.Output[str]:
|
886
812
|
"""
|
887
|
-
(Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field.
|
813
|
+
(Updatable) This is the frequency of recurrence of a schedule. The frequency field can either conform to RFC-5545 formatting or UNIX cron formatting for recurrences, based on the value specified by the recurrenceType field. Example: `FREQ=WEEKLY;BYDAY=MO,TU,WE,TH;BYHOUR=10;INTERVAL=1`
|
888
814
|
"""
|
889
815
|
return pulumi.get(self, "recurrence_details")
|
890
816
|
|
@@ -892,7 +818,7 @@ class Schedule(pulumi.CustomResource):
|
|
892
818
|
@pulumi.getter(name="recurrenceType")
|
893
819
|
def recurrence_type(self) -> pulumi.Output[str]:
|
894
820
|
"""
|
895
|
-
(Updatable) Type of recurrence of a schedule
|
821
|
+
(Updatable) Type of recurrence of a schedule. Could be set to `ICAL`, `CRON`
|
896
822
|
"""
|
897
823
|
return pulumi.get(self, "recurrence_type")
|
898
824
|
|
@@ -1,7 +1,7 @@
|
|
1
1
|
pulumi_oci/__init__.py,sha256=BR4IMtd0MW31TlJWrH_EaOH0c_MpPh9F1sGi643z7kU,170209
|
2
2
|
pulumi_oci/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
3
3
|
pulumi_oci/provider.py,sha256=L04-4ahVUIjPUidGY7-4m7y0-gX_oHcgpIJSRYRJET4,24096
|
4
|
-
pulumi_oci/pulumi-plugin.json,sha256=
|
4
|
+
pulumi_oci/pulumi-plugin.json,sha256=8mNnX7AZMaOhjEGKOXzi0ewMi-IbYjhNG2WsbKE3bLk,63
|
5
5
|
pulumi_oci/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
pulumi_oci/adm/__init__.py,sha256=pxPlS_-eNzVJqBq2i1MCMmmLGhFhW-ATfiH6YEb71xI,1049
|
7
7
|
pulumi_oci/adm/_inputs.py,sha256=YnlFWcwYsWjjrUbroAeHpnljrt9mAPqMtutbJnKVRCk,69792
|
@@ -409,13 +409,13 @@ pulumi_oci/config/__init__.pyi,sha256=u-mzKvOTiMfI84KsFpX9aZXnBBo5IrmGoKW5DpYtHO
|
|
409
409
|
pulumi_oci/config/vars.py,sha256=lF28g7ubS_m7dmUz-BSXrHhRv_E7tbOB_6PgX64eSFg,4329
|
410
410
|
pulumi_oci/containerengine/__init__.py,sha256=SdyuqHYrpB6AkkA98SaO-K5EOeDlCqxREshS6cITv7w,1332
|
411
411
|
pulumi_oci/containerengine/_inputs.py,sha256=3jUk0cFUVfuTMb8YlsUxi4XjwixWNetQTkFbvu8t6_k,240710
|
412
|
-
pulumi_oci/containerengine/addon.py,sha256=
|
412
|
+
pulumi_oci/containerengine/addon.py,sha256=_wxM5WnhWKYW6Yitcrf8JqOe5VQGpaotMzDpUUOK8L4,24731
|
413
413
|
pulumi_oci/containerengine/cluster.py,sha256=0fhCh65MttT3CgcYtXDGd_3CG_HC34ghkcQtm8CBWNQ,56176
|
414
414
|
pulumi_oci/containerengine/cluster_complete_credential_rotation_management.py,sha256=djNxV8Ezp2QI195gIZ4JY2av8_-EV_A8hgmhihTqzJ0,9157
|
415
415
|
pulumi_oci/containerengine/cluster_start_credential_rotation_management.py,sha256=T0uorpfS9YPFObM-5Qoqa_vgQe8piGzRc4pAvAacrwM,12502
|
416
416
|
pulumi_oci/containerengine/cluster_workload_mapping.py,sha256=Zb1buFg1fJFqqksdtjA8ZutRwjpCaTpxT59BDWxIOug,24801
|
417
417
|
pulumi_oci/containerengine/container_instance.py,sha256=YQOltaw6CJyMYtkoAGKAcf2mmWZ5JOZbsGPJewWS9LQ,73623
|
418
|
-
pulumi_oci/containerengine/get_addon.py,sha256=
|
418
|
+
pulumi_oci/containerengine/get_addon.py,sha256=Xv-t3Na9lostlZyWTepBq8vO7ofbaB04mMGudM-khL8,9570
|
419
419
|
pulumi_oci/containerengine/get_addon_options.py,sha256=nQaNWdHFnb2RHCdfXZsqchLQXGqKn5M69tMBYZi-CuQ,6567
|
420
420
|
pulumi_oci/containerengine/get_addons.py,sha256=VXtD_L4tZmWLX4DIEExckS-FUSApUHV0vahR8wXT-3s,4985
|
421
421
|
pulumi_oci/containerengine/get_cluster.py,sha256=prx0eKQ9efLtiuhaTQMcm_PSC478yMrxcGphVnBssYY,15954
|
@@ -436,7 +436,7 @@ pulumi_oci/containerengine/get_work_request_errors.py,sha256=Kfuuw-ZLMVR8QiMk8Xj
|
|
436
436
|
pulumi_oci/containerengine/get_work_request_log_entries.py,sha256=-Rzwku_-4-oQhpTZNRvTu2-tsR4Q3fuJlFJagpPw_I4,7030
|
437
437
|
pulumi_oci/containerengine/get_work_requests.py,sha256=2w_9QJI-qMQGK5aGjnOpWkmEulXVKk6CkZoxO8m11x8,9565
|
438
438
|
pulumi_oci/containerengine/node_pool.py,sha256=lLxfW8ddsmcUKbYSN9gtI7luoV_ZtyThP87zFccHgdY,78815
|
439
|
-
pulumi_oci/containerengine/outputs.py,sha256=
|
439
|
+
pulumi_oci/containerengine/outputs.py,sha256=qkjKfTUcyZDxQmozy-CVCzcXbx66Kmmw5RxNZrRa3Yk,381842
|
440
440
|
pulumi_oci/containerengine/virtual_node_pool.py,sha256=527e4Zss31IvGAIAVsr4GPw9X44UN8qXRInTpKq1E_I,54454
|
441
441
|
pulumi_oci/containerinstances/__init__.py,sha256=xO0-NxqDfouoMvYJoAIqyDTwJ_OfkHLWfmRRCIJaflE,480
|
442
442
|
pulumi_oci/containerinstances/_inputs.py,sha256=9xAzmOah2OikS_3-h3r08ldn2X9CPtdvseWpsfFVLHQ,3781
|
@@ -446,7 +446,7 @@ pulumi_oci/containerinstances/get_container_instance_shapes.py,sha256=L34MKfTVRx
|
|
446
446
|
pulumi_oci/containerinstances/get_container_instances.py,sha256=ja0-ZJhRJjU1ll2twzFw28qv26_Nag_5Mv8Qh-1c_CI,9795
|
447
447
|
pulumi_oci/containerinstances/outputs.py,sha256=OuSGULqIZLd5f1STmJeYEgdh19-ZzC5nHOfpIA_q41o,99616
|
448
448
|
pulumi_oci/core/__init__.py,sha256=f2OKqOZoaPWB24-hh_jmUg0raWU7jen5zWyglJJIb1o,8726
|
449
|
-
pulumi_oci/core/_inputs.py,sha256=
|
449
|
+
pulumi_oci/core/_inputs.py,sha256=C9E6GiX5nrnGuesfvAWxNy6o-T_F0fqr5BEXecFRmqE,1209630
|
450
450
|
pulumi_oci/core/app_catalog_listing_resource_version_agreement.py,sha256=w0xmbvF3ZVEoTyxj-v86bDLlY7tVNxDCW7l1xl9TnrY,14622
|
451
451
|
pulumi_oci/core/app_catalog_subscription.py,sha256=0VyKID-oO2-Ko6sntOgA9Iof9g8xh8LYic1VflGYzM0,29260
|
452
452
|
pulumi_oci/core/boot_volume.py,sha256=PGWxwlIRQqJimDrUgi_NCUXQc-mMlzzpjcJOT02DwMQ,72480
|
@@ -548,7 +548,7 @@ pulumi_oci/core/get_image.py,sha256=53Fu6VFf5tITHVPd9XZm9q-ET8AC9fjnS_YY827Jy9g,
|
|
548
548
|
pulumi_oci/core/get_image_shape.py,sha256=SOaH7WT0pwY60SQWEBZaf7Hya1r8OunVLY8-YNSEQiY,6803
|
549
549
|
pulumi_oci/core/get_image_shapes.py,sha256=UuhDcsBAO-yj7-Wt-zI78mSeF_puvSGZIp-la6mX914,5740
|
550
550
|
pulumi_oci/core/get_images.py,sha256=EAQXARGWR5BUqqp7_dw54affFplEHEcpGUVgxwf_uPA,14337
|
551
|
-
pulumi_oci/core/get_instance.py,sha256=
|
551
|
+
pulumi_oci/core/get_instance.py,sha256=Sl5Bo_LHNVOFqGqQVHQ4S2UW3PRT2jUO7GsNsDwz_dE,38293
|
552
552
|
pulumi_oci/core/get_instance_configuration.py,sha256=XprVJjfwQk7pJ3395dUJNu_i-FcuGTIYpcVEbYLGgNM,10719
|
553
553
|
pulumi_oci/core/get_instance_configurations.py,sha256=WudUeYz2FXglGvep4mwn533Y6lhLeG2XZ2wbaV4vMAw,6223
|
554
554
|
pulumi_oci/core/get_instance_console_connections.py,sha256=CZ2PoNajKsAx9t7x9mZA8scDUCO9cDKDUz3SauL3QN8,7969
|
@@ -606,7 +606,7 @@ pulumi_oci/core/get_subnets.py,sha256=2inMIUzDbPmuuPDgM5mqPiC7risJWaxP-8zEtvR_Cg
|
|
606
606
|
pulumi_oci/core/get_tunnel_security_associations.py,sha256=C7sf1_AkXEx0cKCE7Ab4lYx63E9mA8nkAhwmjC_KuMg,7329
|
607
607
|
pulumi_oci/core/get_vcn.py,sha256=UQdV2AmtmXwWO7YGEZ8u49lmr5CRBwD22pwzUrtStDM,18427
|
608
608
|
pulumi_oci/core/get_vcns.py,sha256=0f6nMm5Rc4mgAXkYDjn_V_ydarNKAuVGjlUpRqD48Gg,7762
|
609
|
-
pulumi_oci/core/get_virtual_circuit.py,sha256=
|
609
|
+
pulumi_oci/core/get_virtual_circuit.py,sha256=o6UyhRCrh_l-KL1O9dvYoOX-xJT3VYZBi18dtN8bO-0,26602
|
610
610
|
pulumi_oci/core/get_virtual_circuit_associated_tunnels.py,sha256=S7Fsb2kYwcsiezBE3Mc-uRnfXPpFuLA0DF2GwrjbZW0,6917
|
611
611
|
pulumi_oci/core/get_virtual_circuit_bandwidth_shapes.py,sha256=6i0arskxmhuMhqL-9IeZuvnnhzeBcLxhLQvpPzaGrcA,7401
|
612
612
|
pulumi_oci/core/get_virtual_circuit_public_prefixes.py,sha256=fHUGHphaEQxYBhgFV8acqmxis96hG9u2XXY9cyr36hk,8521
|
@@ -629,11 +629,11 @@ pulumi_oci/core/get_volumes.py,sha256=DU018vPWZ3WIwyJ4HvI7A48t8-hbyI_d9KC29X12OA
|
|
629
629
|
pulumi_oci/core/get_vtap.py,sha256=Pcu2_poWXROR-Fntgupmf4mOhOTrL8353Pack915Q6w,18538
|
630
630
|
pulumi_oci/core/get_vtaps.py,sha256=zRcMChna6V9FNaYo0F-A4dyiW1Ly4UHFw_j1PqWjy5M,13370
|
631
631
|
pulumi_oci/core/image.py,sha256=fKQlZiOShTBJ29A2t0kec7APEuBfG3pyXwLLqHDRxfQ,53758
|
632
|
-
pulumi_oci/core/instance.py,sha256=
|
632
|
+
pulumi_oci/core/instance.py,sha256=unCQ_o-8IIv-cym-1aXZ0a_LCm916iTSJ1jpW_21WFg,184909
|
633
633
|
pulumi_oci/core/instance_configuration.py,sha256=APLEHvgu0mJsfDDtnJw2bMJSfRuqmrpvkSsRLVW665Q,111158
|
634
634
|
pulumi_oci/core/instance_console_connection.py,sha256=Yj8LeeXlLJMnk6dWRuqYHv0vg3wHjDpxyr_D8bLMU6A,27969
|
635
635
|
pulumi_oci/core/instance_maintenance_event.py,sha256=jIyiIaO3oR1zca8pOgMFoq_7eTm_uNBQWQgofO1opWw,57966
|
636
|
-
pulumi_oci/core/instance_pool.py,sha256
|
636
|
+
pulumi_oci/core/instance_pool.py,sha256=-VMNPIKn7-tHRJRqTz7lGX7y5ZF_uFm7ybwWnR35lBA,56063
|
637
637
|
pulumi_oci/core/instance_pool_instance.py,sha256=sB-MYTFkLQa9Huc_YyyLIERLU2J2NJE313TZr_jhIM4,31204
|
638
638
|
pulumi_oci/core/internet_gateway.py,sha256=Dt-xUdfD86ZTan2wyO0_AQzjOVs3IZkGlspTwbSd968,33809
|
639
639
|
pulumi_oci/core/ipsec.py,sha256=mXCkTr77K7w1a2_Chxy4Qc30E53J3XPqcrZhboHwSSI,60695
|
@@ -644,7 +644,7 @@ pulumi_oci/core/local_peering_gateway.py,sha256=p1V8uNamUxJa-UpKG4TzBGudP8NNB77l
|
|
644
644
|
pulumi_oci/core/nat_gateway.py,sha256=_I0Ls2WSv32m2-8_S9WYFjGvpt4biSLNvlY-fXMryDc,36333
|
645
645
|
pulumi_oci/core/network_security_group.py,sha256=GAbG1upv4B7ytveFpHLmy1w_N8dQFCaq_05OtFrxIyw,25742
|
646
646
|
pulumi_oci/core/network_security_group_security_rule.py,sha256=h8JYABPvXFPfgCMRghsV0Is2KAYOxJS6x6uDeMmb0_8,54348
|
647
|
-
pulumi_oci/core/outputs.py,sha256=
|
647
|
+
pulumi_oci/core/outputs.py,sha256=6otg1KtCD6vrrG-vbWCmz2h7sga-DHuCKflBaY9s2KA,2487191
|
648
648
|
pulumi_oci/core/private_ip.py,sha256=RBV-K_PqhnfaLpAJOg9Y8gnMEpi85Flzi5hP6mwH5mE,42797
|
649
649
|
pulumi_oci/core/public_ip.py,sha256=L-WZ8RuDFtPmkZTxJFUggYipXEZFl6mSb1z2GJwdqx0,49195
|
650
650
|
pulumi_oci/core/public_ip_pool.py,sha256=SxGPeRtTauVvrVomIfsQIwZvIuh8oOwgJmNDGlHzBGQ,24119
|
@@ -657,7 +657,7 @@ pulumi_oci/core/service_gateway.py,sha256=4-FXuI1JYghUneXGafGHY5pAZBGRLgMoKuNvsT
|
|
657
657
|
pulumi_oci/core/shape_management.py,sha256=Qfj2MkR6ohkVexg8jqQ1dntbHLPkXpI8lNFf22pwPaQ,10658
|
658
658
|
pulumi_oci/core/subnet.py,sha256=dFj8_jBG78pQw1Oy8LIQajHEF_FCfNSrszsdwwJ3FtY,88952
|
659
659
|
pulumi_oci/core/vcn.py,sha256=8pWs4f6_lbRBgbVIK81ytDeey4-RNQ-2IAQMIIqe0c8,77375
|
660
|
-
pulumi_oci/core/virtual_circuit.py,sha256=
|
660
|
+
pulumi_oci/core/virtual_circuit.py,sha256=amxA8-KE1sryzYTpIrWykOXrSRH2InHBemxDm5c1RWs,93267
|
661
661
|
pulumi_oci/core/virtual_network.py,sha256=BVua1x3xo0YfdxOlXBa9UA11zIwUJqZzUP6M5vl9rhM,31353
|
662
662
|
pulumi_oci/core/vlan.py,sha256=Flflvtf8pzjWCM8EplSocwtAbfPNJIPyo1aPHd7wpVM,45335
|
663
663
|
pulumi_oci/core/vnic_attachment.py,sha256=USfB-8Kc8D_VmC1wHOfTwDs4JiHwe19EH5wzSkANdiw,33808
|
@@ -670,13 +670,13 @@ pulumi_oci/core/volume_group.py,sha256=aS0UKsHbRlBWPy_5USzXAjZMs1Ms3ewjXYbnKcag_
|
|
670
670
|
pulumi_oci/core/volume_group_backup.py,sha256=gzCYyFdf1ozd1k9SdScXQ7rYLqqMBG5Dv_S1m8ZS7qk,44707
|
671
671
|
pulumi_oci/core/vtap.py,sha256=DPtuaAL94Be1JGuZdlxbnI82rF21PVhlOY5HqE_Cq8I,62801
|
672
672
|
pulumi_oci/database/__init__.py,sha256=TbvsgFRkvTw9PdDU7h0BQI888lpmOooIdL9UuMQ5waA,9241
|
673
|
-
pulumi_oci/database/_inputs.py,sha256=
|
673
|
+
pulumi_oci/database/_inputs.py,sha256=lW4JdbWq82gCjZgt8oz74G9kr1ACrBtoYIQZD6Z7WHI,1015966
|
674
674
|
pulumi_oci/database/application_vip.py,sha256=JDVVsM5IEweW_6ArMrPkNxc-ip4taGgoscVO448uUrE,29325
|
675
|
-
pulumi_oci/database/autonomous_container_database.py,sha256=
|
675
|
+
pulumi_oci/database/autonomous_container_database.py,sha256=1Jwu5GAWZnOUAS3j_OM8yqdfE85k8T_QV4N2OCJUGtg,162192
|
676
676
|
pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=Vqr9H2dth2n-aRH0WozgJE33EijV3LzaQXyyfzla5uU,75512
|
677
677
|
pulumi_oci/database/autonomous_container_database_dataguard_association_operation.py,sha256=KdrGLo1fGVgJL4tpeiYMtjyAyIaWZ7oNCD_vKMof7A8,17941
|
678
678
|
pulumi_oci/database/autonomous_container_database_dataguard_role_change.py,sha256=yML8BbuREYzHrq1dVIYwGlZ5bFpsBVGpT_Y9m-CI4V0,12423
|
679
|
-
pulumi_oci/database/autonomous_database.py,sha256=
|
679
|
+
pulumi_oci/database/autonomous_database.py,sha256=W_XSk--XwhkK-u0uZpvcHkHyBJOMtXroJzENM2zS-SU,479319
|
680
680
|
pulumi_oci/database/autonomous_database_backup.py,sha256=TMDev4UedzHcRjt5ZfjnoeC3-3OTA7rM4AaAtn_bvhA,43614
|
681
681
|
pulumi_oci/database/autonomous_database_instance_wallet_management.py,sha256=shw6-GEc4MzawcuhYyZCXXOTszzM-P1Of1wCDnjc8hc,18745
|
682
682
|
pulumi_oci/database/autonomous_database_regional_wallet_management.py,sha256=hmbYSqFq3LOc5hXDXtp56_Z8zaCpP2O6celvTcyR8tQ,15757
|
@@ -726,14 +726,14 @@ pulumi_oci/database/external_pluggable_databases_stack_monitoring.py,sha256=v6DZ
|
|
726
726
|
pulumi_oci/database/get_application_vip.py,sha256=rguOkxRvBMCEVIuay8oBuO7wh-wHpqIN6wlhm6xi_HI,11910
|
727
727
|
pulumi_oci/database/get_application_vips.py,sha256=ugd-6WfpJuT6isjkiAD-QCj-ZT-2l91CCwrW2EVb1i8,8543
|
728
728
|
pulumi_oci/database/get_autonomous_character_sets.py,sha256=cwXfDh-uZhDwgbrqFHHyw5A1nc6SZHoMpPutNelfTIE,9143
|
729
|
-
pulumi_oci/database/get_autonomous_container_database.py,sha256=
|
729
|
+
pulumi_oci/database/get_autonomous_container_database.py,sha256=vcAH2KJlBDsHnOmE_39mkIP4bxK5aFmQV4h8vQZkdgA,53623
|
730
730
|
pulumi_oci/database/get_autonomous_container_database_dataguard_association.py,sha256=XVutJwsfajDnaAHP3g38_5vSAczfDsjTzNgGTpah4Po,27646
|
731
731
|
pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py,sha256=mRlW9mUbkVcard6SCpidXXmcz9OOsrvh8DczWt-X1pY,8628
|
732
732
|
pulumi_oci/database/get_autonomous_container_database_resource_usage.py,sha256=kCtUH51kUWIUcibbk4EPfhIrgUDN1bFpYb9J8TYAySY,14312
|
733
733
|
pulumi_oci/database/get_autonomous_container_database_versions.py,sha256=XEMaJu55rh2b4BUGIWGHwG9oGSGHCYvEZ3YlFIU9asY,8142
|
734
734
|
pulumi_oci/database/get_autonomous_container_databases.py,sha256=J-QU5Ke0b6hnPC9V2Nogh4dWlfygAmptgD9aja_4NTA,18862
|
735
735
|
pulumi_oci/database/get_autonomous_container_patches.py,sha256=jkjSmZRtZ7Eou-CjZa2dqHje_XTCeoWkFUtd-luh-AU,9329
|
736
|
-
pulumi_oci/database/get_autonomous_database.py,sha256=
|
736
|
+
pulumi_oci/database/get_autonomous_database.py,sha256=VETiHaA2anSR6JYsKeHLgzfUzRnCcwbKDpQ1V9WeJ0s,120899
|
737
737
|
pulumi_oci/database/get_autonomous_database_backup.py,sha256=LpCfBfUGCo1E23TDCcpQZcnjQxLHyz-k9DF6VlKFkkI,19964
|
738
738
|
pulumi_oci/database/get_autonomous_database_backups.py,sha256=jQp6P8e5c4GyZORbesOxSjrqbHx5jg8KXAXQxe4CHRE,11432
|
739
739
|
pulumi_oci/database/get_autonomous_database_dataguard_association.py,sha256=xfwAUgWwjSBUCbU8L8FEcvAakmvBLCYC2M64BXI9Gnc,15239
|
@@ -745,7 +745,7 @@ pulumi_oci/database/get_autonomous_database_regional_wallet_management.py,sha256
|
|
745
745
|
pulumi_oci/database/get_autonomous_database_software_image.py,sha256=Kvfsu7AIOnWeI2WdH8IUSemAB7rGCjyOEhIOBAvB-Bg,13718
|
746
746
|
pulumi_oci/database/get_autonomous_database_software_images.py,sha256=Jb8wSDRHcDQ2Hbzc06YKpfYt_mKnhEwmcuYrcjEhahw,10903
|
747
747
|
pulumi_oci/database/get_autonomous_database_wallet.py,sha256=MVQkLYTyjiKaTX1y-CrRd4TX9OUJa31QnZYIRFRikjg,8825
|
748
|
-
pulumi_oci/database/get_autonomous_databases.py,sha256=
|
748
|
+
pulumi_oci/database/get_autonomous_databases.py,sha256=LIiSUEHLYjSAkNvBU62e68WThB7ElPW9hGYkoxcUYLk,24612
|
749
749
|
pulumi_oci/database/get_autonomous_databases_clones.py,sha256=U5-UTsbWAPGQGsC5slJRZUTQ6nnZh-3G6aRDAWP85KQ,11149
|
750
750
|
pulumi_oci/database/get_autonomous_db_preview_versions.py,sha256=72Z-73uO9t0QIOUJP4K5VobRXqfJnh2y6G_vb6u9TO0,6803
|
751
751
|
pulumi_oci/database/get_autonomous_db_versions.py,sha256=9YJrf1gNdJx0K8_IHx3pV8zBEF7fvaK58uy-tn5eZys,7564
|
@@ -860,7 +860,7 @@ pulumi_oci/database/get_vm_clusters.py,sha256=p_OPJhuvFLl4n7-T_3CAiSh9HkFQAz-kfn
|
|
860
860
|
pulumi_oci/database/key_store.py,sha256=utkO4jzVMM59m0NEZdhHdqnIdGpJiNjrW8mQjF9dT4o,27789
|
861
861
|
pulumi_oci/database/maintenance_run.py,sha256=8ARRL5E_sID9VZe3D3Szdq4rcRcRgNN2NU6udQdyhyo,62143
|
862
862
|
pulumi_oci/database/oneoff_patch.py,sha256=WmKZ_CNZ6Ns_0s5kRuvyXeT8KgNx24L7oiRQG5CRn-Q,38954
|
863
|
-
pulumi_oci/database/outputs.py,sha256=
|
863
|
+
pulumi_oci/database/outputs.py,sha256=vL7DrfoQNlizF7X4Lnd2c0SnQBh8LyYtjY_L_G8PKzk,2406953
|
864
864
|
pulumi_oci/database/pluggable_database.py,sha256=OYwfbMsBO58xQigObXCmC9Qez3JJnjaz2blE4tmRrOg,75593
|
865
865
|
pulumi_oci/database/pluggable_database_managements_management.py,sha256=cmW6n0jUdviIoYQ5sHe_AwQWIEXpy8DS1W7fFnMJK2w,52897
|
866
866
|
pulumi_oci/database/pluggable_databases_local_clone.py,sha256=S0EmRLhANos9tiM_yFrDENRZWjiROIr6MorLJlC0qFw,51106
|
@@ -1109,8 +1109,8 @@ pulumi_oci/datalabellingservice/get_annotation_formats.py,sha256=1_klZQ5d1KX38lX
|
|
1109
1109
|
pulumi_oci/datalabellingservice/get_dataset.py,sha256=gkGjEr4utZ53IimUY4UeDHsjTTX03mDCHZ96SBVLofM,17663
|
1110
1110
|
pulumi_oci/datalabellingservice/get_datasets.py,sha256=Tsbvve-S1MSLdKIGS87AAQp1NNI8XN4k7HzizLXAWW4,9720
|
1111
1111
|
pulumi_oci/datalabellingservice/outputs.py,sha256=r7HiUItducEEuol2RlCy_jnp2xOPDxY0VJ959qNHNyM,52916
|
1112
|
-
pulumi_oci/datasafe/__init__.py,sha256=
|
1113
|
-
pulumi_oci/datasafe/_inputs.py,sha256=
|
1112
|
+
pulumi_oci/datasafe/__init__.py,sha256=0wI94njyy1uV3BBnYqxg6-ng6U-oC-fDK1LJpReLOH8,8392
|
1113
|
+
pulumi_oci/datasafe/_inputs.py,sha256=1PbOBZor8p7ab-l66-FpKJmlxAAgp3vYhOc-hHVbvi4,420507
|
1114
1114
|
pulumi_oci/datasafe/add_sdm_columns.py,sha256=I0ZEIc33HdUAuVwulwtAKIv9jy5_boMj2bS6HfNkSmY,5588
|
1115
1115
|
pulumi_oci/datasafe/alert.py,sha256=ZwhlJjoPTYQj1cwXoBXEtTS1BTFWwYcrH8M_PV7Br34,44053
|
1116
1116
|
pulumi_oci/datasafe/alert_policy.py,sha256=ve8ltISx2f4bmtOIACBovJEGSBrsxlid40kLHtf1o8c,38407
|
@@ -1162,6 +1162,8 @@ pulumi_oci/datasafe/get_compatible_formats_for_sensitive_type.py,sha256=1jysEmIK
|
|
1162
1162
|
pulumi_oci/datasafe/get_data_safe_configuration.py,sha256=oRzMJw1NnG_wc1HT7OZKd9NxloiFku-SKPhQf2au9QY,9739
|
1163
1163
|
pulumi_oci/datasafe/get_data_safe_private_endpoint.py,sha256=awfIfevz8BpN3TQrpOOcVzLcqFAbL1ejmCQ04yElyDc,13799
|
1164
1164
|
pulumi_oci/datasafe/get_data_safe_private_endpoints.py,sha256=N0bWaziWhomkQtOezMDnZqPw44HEisnBq7NS2jwAskQ,12776
|
1165
|
+
pulumi_oci/datasafe/get_database_security_config.py,sha256=PrrqPx49P96aphCQ5aDSDsVHzD9CXornf6vkNKsOiqA,14129
|
1166
|
+
pulumi_oci/datasafe/get_database_security_configs.py,sha256=d1eQsVwLYVdKV2TY4wuM0Ls8nMUl5p88TzrJFJJWamU,20673
|
1165
1167
|
pulumi_oci/datasafe/get_discovery_analytic.py,sha256=M8_i0NT2z0GfdGkob8a9yxQJ9hOHLcgVIru2cDg0MFU,10197
|
1166
1168
|
pulumi_oci/datasafe/get_discovery_analytics.py,sha256=RfSEzVcAgbHaphL4Bp53Qz2Pbje_3BdZKikNFbEJ_rw,14005
|
1167
1169
|
pulumi_oci/datasafe/get_discovery_job.py,sha256=g-a_RoXE_fhfC1f51TQSXRKUYUkmJyvv7a0je6IGSgg,24361
|
@@ -1266,7 +1268,7 @@ pulumi_oci/datasafe/masking_policy.py,sha256=IcofY6HX-wdd7-rJfxrrCXshiaX8VXBDyKp
|
|
1266
1268
|
pulumi_oci/datasafe/masking_policy_health_report_management.py,sha256=sKn_zVyaD-B-nWdw--YEc4tiSKc264v-UL7AEOZoBdo,19537
|
1267
1269
|
pulumi_oci/datasafe/masking_report_management.py,sha256=bETga_n8T453Ovy1vaFtLmDNEk1LL5gA4dR206N9bI8,32183
|
1268
1270
|
pulumi_oci/datasafe/on_prem_connector.py,sha256=kvQB0XRJzaaqaFOWlKrdXrjuJ29HCUs4ElUrG_zfg1g,29972
|
1269
|
-
pulumi_oci/datasafe/outputs.py,sha256=
|
1271
|
+
pulumi_oci/datasafe/outputs.py,sha256=4ZtPwtO-Rc33nrhXA_-lMGzy9cyUJZwJMf69OYAvn58,1351621
|
1270
1272
|
pulumi_oci/datasafe/report.py,sha256=g5veLv0fUmqxTWxm_gyPN9kWmNJv6Kq5GNJSvtOyZYY,28288
|
1271
1273
|
pulumi_oci/datasafe/report_definition.py,sha256=RkLwrY9J_WLUXCb4zhSy6247bpKTTxaKbfnOrTvg3r4,68728
|
1272
1274
|
pulumi_oci/datasafe/sdm_masking_policy_difference.py,sha256=K-E9oiMIRVaMRD28FY58jcLolfunVn8dHofr6pLPoaE,38026
|
@@ -1295,21 +1297,21 @@ pulumi_oci/datasafe/unset_user_assessment_baseline.py,sha256=HBAS6RKPnM-XvQMu8GG
|
|
1295
1297
|
pulumi_oci/datasafe/unset_user_assessment_baseline_management.py,sha256=35cHHgSOwwXA7KzdBO0h_1q898gblxQZfz8icp2a8zU,12008
|
1296
1298
|
pulumi_oci/datasafe/user_assessment.py,sha256=zkPdEx1SRJAXFCPllotW0LV06l57leLb_z-73ElwKT4,58652
|
1297
1299
|
pulumi_oci/datascience/__init__.py,sha256=YUs9Sg1hYEkk_ORPN54BOFosvaeepgs8SelXVgSpgYc,1506
|
1298
|
-
pulumi_oci/datascience/_inputs.py,sha256=
|
1300
|
+
pulumi_oci/datascience/_inputs.py,sha256=PQwsKnJ6XlmhTdFZhPZUjitYz4JEW5mquWVyRKVceeA,296699
|
1299
1301
|
pulumi_oci/datascience/get_fast_launch_job_configs.py,sha256=g6ie0UMUodJ8e67WQnlk1QbOr4n1XUA4-f35a2EuvGc,6185
|
1300
1302
|
pulumi_oci/datascience/get_job.py,sha256=UryPIBBsQ3tLtUmucNYia1D_UG6A2xlWUutzuAycugs,19820
|
1301
1303
|
pulumi_oci/datascience/get_job_run.py,sha256=zjw1vXZ8acqUrq49fBTw2QizvxowyCLxxABfQ721cVM,19117
|
1302
1304
|
pulumi_oci/datascience/get_job_runs.py,sha256=DkLkwsFz-QS_ch2kp1dY5FoMfd5Ncwh4gShXwqH4cD8,10544
|
1303
1305
|
pulumi_oci/datascience/get_job_shapes.py,sha256=If-lm_pKpRPv3DdGQJyBKJs-4zwzgvqBwQBc5LdL1qQ,5511
|
1304
1306
|
pulumi_oci/datascience/get_jobs.py,sha256=94US990IX3CHR0AqwI_qeDql0sg9Dx7MB7Pc9DYAuQo,10494
|
1305
|
-
pulumi_oci/datascience/get_model.py,sha256=
|
1307
|
+
pulumi_oci/datascience/get_model.py,sha256=84HH26nK32N4UqcsQHNZuOLor8PoYeOA4Z752IKToRM,22284
|
1306
1308
|
pulumi_oci/datascience/get_model_deployment.py,sha256=1Z0d3QeI2RLDMtZTAg5-pfuAsaPe9bbL3rN_Z3sL9O8,15387
|
1307
1309
|
pulumi_oci/datascience/get_model_deployment_shapes.py,sha256=PJxM-nO2y_FqcPVLDOHzbvindsvWRYJB_HQeJBHhpy4,6156
|
1308
1310
|
pulumi_oci/datascience/get_model_deployments.py,sha256=ntrSCze6L5ycBUum_FOppTlQzAd46oHA9cowOiDJPlw,12086
|
1309
1311
|
pulumi_oci/datascience/get_model_provenance.py,sha256=KGswr996OpZBZ0uytn4Y2iz974jRaxpMlIc050te1WE,7912
|
1310
1312
|
pulumi_oci/datascience/get_model_version_set.py,sha256=lFd_tRXigp4zfMpGWEu52s_qf4XCXRTrwC9FZ5OLctI,11824
|
1311
1313
|
pulumi_oci/datascience/get_model_version_sets.py,sha256=pXV6txFktUu89UlFp3zOIF7dbm9-eG5WJRx6XsXNKFw,11375
|
1312
|
-
pulumi_oci/datascience/get_models.py,sha256=
|
1314
|
+
pulumi_oci/datascience/get_models.py,sha256=dum6oFMGpjond2wKoJ5gzVZ_MPX-IrxETxsPj8ez-jU,14086
|
1313
1315
|
pulumi_oci/datascience/get_notebook_session.py,sha256=8ypXcKRZ5_DMJFll1nHfiZKytatsvY7RCPE3U1_qf4o,15943
|
1314
1316
|
pulumi_oci/datascience/get_notebook_session_shapes.py,sha256=ph9v7zO1QN3LK7IYTpkjs8Ycvzcws-VCbcsGrMbxD8s,6158
|
1315
1317
|
pulumi_oci/datascience/get_notebook_sessions.py,sha256=TSzYhIj_73Wb9eot8pwGIoxw623wEgdHaWyWC9apdx4,11608
|
@@ -1323,14 +1325,14 @@ pulumi_oci/datascience/get_project.py,sha256=-Uu8GHJQyXbVrK7SDrv9Celj4bbqLXMuJw-
|
|
1323
1325
|
pulumi_oci/datascience/get_projects.py,sha256=utHRQHy8PzNrjW2R2QhcxJybIavvD4mwSzCdEwWcUO4,9604
|
1324
1326
|
pulumi_oci/datascience/job.py,sha256=CKx-OCPc-mnwV3yya9_ODyadwXkIGLH7jJpx2yXPq88,66918
|
1325
1327
|
pulumi_oci/datascience/job_run.py,sha256=HaaerhcZjU_rxyCHnhCsooASF1nZY7S5vzqYPzDZWjM,58105
|
1326
|
-
pulumi_oci/datascience/model.py,sha256=
|
1328
|
+
pulumi_oci/datascience/model.py,sha256=U0PIfUhQAb6Dgj09IZYwaWuvXN23_SVfCKLq6ujVfFQ,72296
|
1327
1329
|
pulumi_oci/datascience/model_artifact_export.py,sha256=qpoGIPU6izNwENI_B95Hhfr_XxyyPgEtszWpUHPFjpQ,13053
|
1328
1330
|
pulumi_oci/datascience/model_artifact_import.py,sha256=MazxhVf2vz69NjG5YSr3NT5OQW_1h82t3ifPIF9Uuq8,13518
|
1329
1331
|
pulumi_oci/datascience/model_deployment.py,sha256=6ousrL2cgHh3VLmO_bY96N0TupE2tDTfg9SXg0zQ50E,59809
|
1330
1332
|
pulumi_oci/datascience/model_provenance.py,sha256=bs0nhQLjbJPq48vn2itr1OdNENIDFYEVqt6Hzl3wG6s,24769
|
1331
1333
|
pulumi_oci/datascience/model_version_set.py,sha256=_04yCq42KZfpmwCeHn_o893-wERWTLxUxldeAIS6khA,31984
|
1332
1334
|
pulumi_oci/datascience/notebook_session.py,sha256=HHk9TueUZl2db4m__DO2XRscYdz_PAE5fuB3MqkfKHw,53685
|
1333
|
-
pulumi_oci/datascience/outputs.py,sha256=
|
1335
|
+
pulumi_oci/datascience/outputs.py,sha256=UQSrkJFt5Kln17JD3QfS1kn66Ir4lRJjJOsgpHkiaBc,622260
|
1334
1336
|
pulumi_oci/datascience/pipeline.py,sha256=CrgPTTlGIbq7gtvodD6nyFUFkba6KiCiHmvoflIiG38,55482
|
1335
1337
|
pulumi_oci/datascience/pipeline_run.py,sha256=ZCDY9jWX4QmgD037t-gV6FYKx5SUd5HJBGiBg-S-8_M,61515
|
1336
1338
|
pulumi_oci/datascience/private_endpoint.py,sha256=qw8MZiEbX3YLcTEmWhx57sWNoVAI9BodwGXfu20lsto,41007
|
@@ -1503,30 +1505,30 @@ pulumi_oci/events/get_rules.py,sha256=Lq2AvPoZte5sqzqGAmnV_OoX6dPUikhuMS1YqjqIcw
|
|
1503
1505
|
pulumi_oci/events/outputs.py,sha256=1tJA_GwFrGsAb5HVG_xvuxNrQVKXnywiXnmq8lKLa4c,26538
|
1504
1506
|
pulumi_oci/events/rule.py,sha256=jbsjvp_CeUtd1yuHNgJPB1hEcSlkAgp_K9wato2L_wc,44326
|
1505
1507
|
pulumi_oci/filestorage/__init__.py,sha256=o1dtIje7kjVGLuJ8Fz6XqRSncO0ExtsSfiREeMn8uaU,1035
|
1506
|
-
pulumi_oci/filestorage/_inputs.py,sha256=
|
1507
|
-
pulumi_oci/filestorage/export.py,sha256=
|
1508
|
+
pulumi_oci/filestorage/_inputs.py,sha256=GmPVLvf7o8Rz-KndDEb7l1jtI0L6yWCoL1OS_le42_8,75979
|
1509
|
+
pulumi_oci/filestorage/export.py,sha256=WVSWhClrEKdqv2OU1XBSzB_U_P8yC1g_2dsaDLqc3p8,39224
|
1508
1510
|
pulumi_oci/filestorage/export_set.py,sha256=jbrq_UHhaP4wrQw-82xEiNSQHCLoCdslZ1RneLh_QH0,28821
|
1509
|
-
pulumi_oci/filestorage/file_system.py,sha256=
|
1510
|
-
pulumi_oci/filestorage/filesystem_snapshot_policy.py,sha256=
|
1511
|
+
pulumi_oci/filestorage/file_system.py,sha256=Q1ZNb57yzYrj9rDZtVLHNcUVOPRq6IUQZRCuvz68vsg,66678
|
1512
|
+
pulumi_oci/filestorage/filesystem_snapshot_policy.py,sha256=2F3yCHyWc_oLc_GflvJcoKTB7VECjYg5P5DMVxPo0aU,41966
|
1511
1513
|
pulumi_oci/filestorage/get_export_sets.py,sha256=q6cyT8L1nyd2M4MbmbYxjNYSP-a6PSBxYSXkGbe-mz4,9926
|
1512
1514
|
pulumi_oci/filestorage/get_exports.py,sha256=ecozET1h27VVhZlirZTAA7DyP8OrFY_QQs1SX5WA8_o,9686
|
1513
1515
|
pulumi_oci/filestorage/get_file_systems.py,sha256=y4PjGJjrHJZtNuDNnlOvbBy4qgo2ybqfqORNTDtdIS4,15846
|
1514
1516
|
pulumi_oci/filestorage/get_filesystem_snapshot_policies.py,sha256=LWTaLh2vkSGwKGjWaDAqsfgduHnYBoVbmsOZp8rZTrc,11185
|
1515
|
-
pulumi_oci/filestorage/get_filesystem_snapshot_policy.py,sha256=
|
1517
|
+
pulumi_oci/filestorage/get_filesystem_snapshot_policy.py,sha256=TovImswor9TzWLn79ccqEmfFfzpFhsyPHuO7PI3O17c,12657
|
1516
1518
|
pulumi_oci/filestorage/get_mount_targets.py,sha256=YZNSwwUX4_DkOcuKxJfzgAgqHPwZbDuUQs03Wax26L8,11483
|
1517
|
-
pulumi_oci/filestorage/get_outbound_connector.py,sha256=
|
1519
|
+
pulumi_oci/filestorage/get_outbound_connector.py,sha256=16n3liSTk4I8I7t-Fa70gXNHM21v2eY5q-7hNuojwss,14358
|
1518
1520
|
pulumi_oci/filestorage/get_outbound_connectors.py,sha256=d4Kdn8hVsgYJ1yAIE78cZUOEepAu3IkoODYpkdhQ2q8,10543
|
1519
|
-
pulumi_oci/filestorage/get_replication.py,sha256=
|
1521
|
+
pulumi_oci/filestorage/get_replication.py,sha256=fnOnBS7PNvCoDXlmkfNQM6sKXsD_RHd1ZF6ce0Ar2o4,16999
|
1520
1522
|
pulumi_oci/filestorage/get_replication_target.py,sha256=7j-sylljFHp7X0Q-4oLN8jtoXFYhQFldC97jOwKHRIc,15148
|
1521
1523
|
pulumi_oci/filestorage/get_replication_targets.py,sha256=yyPxVabwQRUINkH_PTdq8a8Un78e-X3hCSPLlfz7Wy8,10533
|
1522
1524
|
pulumi_oci/filestorage/get_replications.py,sha256=CL3GKozRkrS-HMxLAfr1CmZ7g2L5Fq_9OsC8xlNrsDg,11347
|
1523
|
-
pulumi_oci/filestorage/get_snapshot.py,sha256=
|
1525
|
+
pulumi_oci/filestorage/get_snapshot.py,sha256=Q4Wdy-69hQzaib86oMmZOJC-Kk0nDXYwFa1erCv--co,14774
|
1524
1526
|
pulumi_oci/filestorage/get_snapshots.py,sha256=jm7F5Mh53cE9yCbXVIiOjpcrbaYHnRaVSir9un3BsSs,11037
|
1525
|
-
pulumi_oci/filestorage/mount_target.py,sha256=
|
1526
|
-
pulumi_oci/filestorage/outbound_connector.py,sha256=
|
1527
|
-
pulumi_oci/filestorage/outputs.py,sha256=
|
1528
|
-
pulumi_oci/filestorage/replication.py,sha256=
|
1529
|
-
pulumi_oci/filestorage/snapshot.py,sha256=
|
1527
|
+
pulumi_oci/filestorage/mount_target.py,sha256=N7wPftWZc-O5iper8HkxaZs8SpwJVEsMfCqIO0YBSoo,80833
|
1528
|
+
pulumi_oci/filestorage/outbound_connector.py,sha256=gLfBwDsSjEuxjzW8cAB5ap1mvNvy9ayNhuzFMqFOQ8w,47046
|
1529
|
+
pulumi_oci/filestorage/outputs.py,sha256=8ORi38ykgGRxe-XJbf2Wd9RZNLwSYZm3gHHZtJw9wFo,192076
|
1530
|
+
pulumi_oci/filestorage/replication.py,sha256=_X1rgxGjutgnQ8OY5_nEQYo2wgV9cYOFV8Egh9wrWgA,51036
|
1531
|
+
pulumi_oci/filestorage/snapshot.py,sha256=ga_xBbnabrKx4P4pzJc04zNvcjbvtRzxeIC7QXOTK_Q,41106
|
1530
1532
|
pulumi_oci/fleetappsmanagement/__init__.py,sha256=Jog5NRf4m2CKeEpWmSUNxRYcmWnrhCiB7UILtXBqR2g,1453
|
1531
1533
|
pulumi_oci/fleetappsmanagement/_inputs.py,sha256=0UNwvrCwGo0bZGMgDXqLRmEa8X4Pa9WfIFonwFfVd0Q,68423
|
1532
1534
|
pulumi_oci/fleetappsmanagement/fleet.py,sha256=A6dqa-VoJ72QTQd4nTtOrU-aFEchi_90TAoLQNLfw6o,47759
|
@@ -1696,13 +1698,13 @@ pulumi_oci/identity/domains_app_role.py,sha256=GPwU-Zdxjl7c4Q-_i6SCHatMDHiaj-18b
|
|
1696
1698
|
pulumi_oci/identity/domains_approval_workflow.py,sha256=AFrTz9TQRVcjy86sooHSRBCogWwGagt4M8yV_Sh1V24,88212
|
1697
1699
|
pulumi_oci/identity/domains_approval_workflow_assignment.py,sha256=q_7Yc3H_oPv5-NGoYkHnIyo87C5I4EoExxV5fAwAQ6A,85662
|
1698
1700
|
pulumi_oci/identity/domains_approval_workflow_step.py,sha256=OTh6KSrcpHdUun_AzWQRy30Ufax5WEr0P_juLpwplhE,91928
|
1699
|
-
pulumi_oci/identity/domains_auth_token.py,sha256=
|
1701
|
+
pulumi_oci/identity/domains_auth_token.py,sha256=1wpULw98156qqsTbnjJQ6Lqk4OssrT1etojT6IYLxAA,90346
|
1700
1702
|
pulumi_oci/identity/domains_authentication_factor_setting.py,sha256=gAFaLQcXOqnh4xthsncq1moX7LQj-TLQ9fiKdAWvCfM,206530
|
1701
1703
|
pulumi_oci/identity/domains_cloud_gate.py,sha256=Zz9795NJX7IF4MGiA596xSHzICrlkL6Yqo3ofzzF6PA,108721
|
1702
1704
|
pulumi_oci/identity/domains_cloud_gate_mapping.py,sha256=UESxBMJfo4zc44JDkdjxSXdTTzNKYvp7EgT2w8vjHfg,112425
|
1703
1705
|
pulumi_oci/identity/domains_cloud_gate_server.py,sha256=MBbxnLUL_n7M875Do1VwKKbWzOWyDonJmwLDwGeucOo,100841
|
1704
1706
|
pulumi_oci/identity/domains_condition.py,sha256=XCEteC-HdedUnMPY7Jhw4d7JdzbblZUxBXJa8KpZt7A,104005
|
1705
|
-
pulumi_oci/identity/domains_customer_secret_key.py,sha256=
|
1707
|
+
pulumi_oci/identity/domains_customer_secret_key.py,sha256=y2NcGyyqZ9I8CU3n9ubmxGN7OFELUh_wnaY_6WNwVKw,95802
|
1706
1708
|
pulumi_oci/identity/domains_dynamic_resource_group.py,sha256=6xSEdxwPZ8gUpJ-t97_kMDk9UUly4YY48keED05KpJY,96142
|
1707
1709
|
pulumi_oci/identity/domains_grant.py,sha256=Pks7Hi54KwHpQYKgsWWMglxF4SO_rW_FjLlEwKII3GE,114147
|
1708
1710
|
pulumi_oci/identity/domains_group.py,sha256=FNcHSfLT3Vhe-KFfitFgnXDQpo5ltTfCv03eumi-tA4,123104
|
@@ -1720,7 +1722,7 @@ pulumi_oci/identity/domains_my_support_account.py,sha256=GhkL6Cd5ghb9Knq6GMb-llo
|
|
1720
1722
|
pulumi_oci/identity/domains_my_user_db_credential.py,sha256=m3MwSIMSpiI8WHs15L7bI7Mva4z8Ri0mtGhYLFD3KZQ,87273
|
1721
1723
|
pulumi_oci/identity/domains_network_perimeter.py,sha256=3CXEKmrYO-8wIxE_m58lpZFnWVm1xkB5RxvGcVb2UcI,90420
|
1722
1724
|
pulumi_oci/identity/domains_notification_setting.py,sha256=DJFZeiMTVYVRkNZKPdFvTQiMCI7cN3PNadGd4yZsv5M,117078
|
1723
|
-
pulumi_oci/identity/domains_oauth2client_credential.py,sha256=
|
1725
|
+
pulumi_oci/identity/domains_oauth2client_credential.py,sha256=l5o9zdG5_oxoKrP6EM5YAUnOJ-d4TsNHzERUbWU6SHU,103982
|
1724
1726
|
pulumi_oci/identity/domains_oauth_client_certificate.py,sha256=RTXDR2rJn_eAwXfplffPZbbbb05Sqa85_-jtom8moKI,98954
|
1725
1727
|
pulumi_oci/identity/domains_oauth_partner_certificate.py,sha256=Tw61zJ7hI37lJMRqSv5kXG2ZrFvsEtxSBNlArpfy0KA,99856
|
1726
1728
|
pulumi_oci/identity/domains_password_policy.py,sha256=GmawZHcSEurvCp5qV7oArcHqHd64YEJx7Ri9g6Q8TTg,250487
|
@@ -1730,7 +1732,7 @@ pulumi_oci/identity/domains_security_question.py,sha256=p7lXJGit6aoLlwyCRDqQpVrq
|
|
1730
1732
|
pulumi_oci/identity/domains_security_question_setting.py,sha256=S1-aMq5wIKnJE1S22gRTIwMomx69-PkFiK2EE_MbP2g,99504
|
1731
1733
|
pulumi_oci/identity/domains_self_registration_profile.py,sha256=jAZCzJe7KAus7Huy7emGaWyk9GBxjWOGNkjLTa6qkRo,171160
|
1732
1734
|
pulumi_oci/identity/domains_setting.py,sha256=cb1OHV6sOidQjSAHiCFkKrD00AGRP1NXHGZb40njVF0,301036
|
1733
|
-
pulumi_oci/identity/domains_smtp_credential.py,sha256=
|
1735
|
+
pulumi_oci/identity/domains_smtp_credential.py,sha256=VvsxClYP_aLx1gdC207a3xdRF-d3Fk_OGNOdUSZ7wxM,92919
|
1734
1736
|
pulumi_oci/identity/domains_social_identity_provider.py,sha256=HZLn-3AkdsJcqN8gWLQwSEuRqMrDULKQwNTIssjf9cY,186709
|
1735
1737
|
pulumi_oci/identity/domains_user.py,sha256=0C1Y21NjkA_o-2-DxbASrMyCm9BKLjot2LH92gqTjoY,307970
|
1736
1738
|
pulumi_oci/identity/domains_user_db_credential.py,sha256=jFC9ssh6BcUcHJujy3IVEhC3RTo0YiAgKvDVMRhn7mU,103438
|
@@ -1764,7 +1766,7 @@ pulumi_oci/identity/get_domains_approval_workflow_step.py,sha256=4wtItPGEXylmcEn
|
|
1764
1766
|
pulumi_oci/identity/get_domains_approval_workflow_steps.py,sha256=k-Jj3NM0yQces4rl4tBnmhiZ3bEKPKBA-C0JAHPYwnc,23196
|
1765
1767
|
pulumi_oci/identity/get_domains_approval_workflows.py,sha256=LPw0N6SEx6NpZh77f42xn_3Pax-s2vXN0K6D9lU-aSQ,21130
|
1766
1768
|
pulumi_oci/identity/get_domains_apps.py,sha256=NIJWyjKUkRKQnBdIKfNY3joeynLnAUyPCR0tFNEhiFw,20714
|
1767
|
-
pulumi_oci/identity/get_domains_auth_token.py,sha256=
|
1769
|
+
pulumi_oci/identity/get_domains_auth_token.py,sha256=8Jz34F14Ng85W-iE7Avqm1Yc443DAH2jKNDidxEUDwo,25466
|
1768
1770
|
pulumi_oci/identity/get_domains_auth_tokens.py,sha256=qDUpGfqQaR1NL1u9l_b436-NMEmvagpS-BNvEVkqPi8,21632
|
1769
1771
|
pulumi_oci/identity/get_domains_authentication_factor_setting.py,sha256=cNidrKEljzxXL9QJQxl4UehXACCC-Zwpmwr_eBJHW6o,44876
|
1770
1772
|
pulumi_oci/identity/get_domains_authentication_factor_settings.py,sha256=Y4B6jGX9v7ZjKdbAspA6vzznTWIcwYbtld76hccggV0,16668
|
@@ -1778,7 +1780,7 @@ pulumi_oci/identity/get_domains_cloud_gate_servers.py,sha256=BklZ9MVY3Ksqop1hkfw
|
|
1778
1780
|
pulumi_oci/identity/get_domains_cloud_gates.py,sha256=fgDqvM_Nom8E8AFwGtvp6tKzV5o0E8ENQtCk6JyrPWY,21632
|
1779
1781
|
pulumi_oci/identity/get_domains_condition.py,sha256=pOixsC_5dSnVuIzSfBDyg1G9yOwRpOlo4pAxJEfTZxs,26516
|
1780
1782
|
pulumi_oci/identity/get_domains_conditions.py,sha256=Ks3pMSfaP53YyZ_By_xjKJ6LPEGyNFiRkzKghYf94WQ,21506
|
1781
|
-
pulumi_oci/identity/get_domains_customer_secret_key.py,sha256=
|
1783
|
+
pulumi_oci/identity/get_domains_customer_secret_key.py,sha256=GzjKGfEd6SynRswvnwdJaWFVFjyj9KCUsDR6M6wW9Lo,27359
|
1782
1784
|
pulumi_oci/identity/get_domains_customer_secret_keys.py,sha256=9nGsmaD4jgvH1ZbwhCZHCyLDLufd3DnUX73Mfc3wIAg,22821
|
1783
1785
|
pulumi_oci/identity/get_domains_dynamic_resource_group.py,sha256=H9a5uGcyuC6B-04QG_UD-qqXZjiwjhZKVtsbPHMfRJc,27197
|
1784
1786
|
pulumi_oci/identity/get_domains_dynamic_resource_groups.py,sha256=EInYeWMFPbG_Xa6zk4NLcCt5lLAHpxwYBxjNbBKqYRg,23202
|
@@ -1824,7 +1826,7 @@ pulumi_oci/identity/get_domains_network_perimeter.py,sha256=xaPtbFVsNGeSPv4C4stU
|
|
1824
1826
|
pulumi_oci/identity/get_domains_network_perimeters.py,sha256=prvqBqXpyfboyshLaI1fkQcPrB3UGWPDcOi_z9DaWgk,22561
|
1825
1827
|
pulumi_oci/identity/get_domains_notification_setting.py,sha256=qamVoADXu0rnf9akruWQyrLv8IEQq92daTzUMguOMSc,29740
|
1826
1828
|
pulumi_oci/identity/get_domains_notification_settings.py,sha256=s5vBtm76OJsKbrtEIWY-f5Yxd8Ngpw-DI0Ovzeuffp0,16131
|
1827
|
-
pulumi_oci/identity/get_domains_oauth2client_credential.py,sha256=
|
1829
|
+
pulumi_oci/identity/get_domains_oauth2client_credential.py,sha256=W9clkctf6YuAad4QM56gIfPCJEx19e93AmlUdxZNPf0,28085
|
1828
1830
|
pulumi_oci/identity/get_domains_oauth2client_credentials.py,sha256=-QOW3kNG3ti9BOjn69dNFmH5TF2MGwAvAuIxje29xd0,23385
|
1829
1831
|
pulumi_oci/identity/get_domains_oauth_client_certificate.py,sha256=h2Xs7r3c15-AitN4spscCrZ_pUkgFwk2ldvChPqTQeg,25752
|
1830
1832
|
pulumi_oci/identity/get_domains_oauth_client_certificates.py,sha256=Q_5NXcPNxZaqCPdpBWt1-pdd7ACNJGkOvIKGuLAznds,19532
|
@@ -1845,7 +1847,7 @@ pulumi_oci/identity/get_domains_self_registration_profile.py,sha256=5GqvFQZVj5gc
|
|
1845
1847
|
pulumi_oci/identity/get_domains_self_registration_profiles.py,sha256=Lp16qbYjIA6YlWG8MdnCEbrIPFao7DhN1dYt8X5Wc1E,23611
|
1846
1848
|
pulumi_oci/identity/get_domains_setting.py,sha256=JKmk8lAZsOUYnuVIdNN-9B7urMxYvhlOkzD3lGGVQD8,59263
|
1847
1849
|
pulumi_oci/identity/get_domains_settings.py,sha256=xNOlB1t5HmWlGVfmnQAGKNTSy2o-Qf9-kFrqkMiLinE,15315
|
1848
|
-
pulumi_oci/identity/get_domains_smtp_credential.py,sha256=
|
1850
|
+
pulumi_oci/identity/get_domains_smtp_credential.py,sha256=mt06vSYYSQzcRkLfAuTi0rRNLvXH4zFncTuJvuA3rU4,26405
|
1849
1851
|
pulumi_oci/identity/get_domains_smtp_credentials.py,sha256=90nV8tspqKfmHYgcGWJCKxflu55qqeK1jC2u5cxFxOU,22297
|
1850
1852
|
pulumi_oci/identity/get_domains_social_identity_provider.py,sha256=2agM0tfSzfbvAMcFZDNKv0SAYFnuQXgl5mAKiGvvrRs,36290
|
1851
1853
|
pulumi_oci/identity/get_domains_social_identity_providers.py,sha256=q8ptZMd6WW1AVQ1JxIVtLwa4YWoTvC7BVBZNlkVr1XA,19530
|
@@ -1889,7 +1891,7 @@ pulumi_oci/identity/identity_provider.py,sha256=TtTHah_Oj4ypaUi0PqUaPdICtwu5sjo9
|
|
1889
1891
|
pulumi_oci/identity/idp_group_mapping.py,sha256=5pJaWMmLWmxqhP3CpIKLViTPs2HF0m0ntzloBSaihkU,19200
|
1890
1892
|
pulumi_oci/identity/import_standard_tags_management.py,sha256=9I4BpgANEjclVOmuLdlYvljUoOjdlXlgmTL4wMEhGFo,13566
|
1891
1893
|
pulumi_oci/identity/network_source.py,sha256=fMOEJjP7NjclRb0RpA3sFP6NH7_Lue3yJf8mcvBAKTQ,39926
|
1892
|
-
pulumi_oci/identity/outputs.py,sha256=
|
1894
|
+
pulumi_oci/identity/outputs.py,sha256=Taj3zH-CJCAL63MJOrvBM1adbHRLmHOIfnB6jjBhNkA,5466715
|
1893
1895
|
pulumi_oci/identity/policy.py,sha256=kXaC6Vjs9L_5nAO7QVdgdH7gr7FZq0QNr74O9Tv0E60,39727
|
1894
1896
|
pulumi_oci/identity/smtp_credential.py,sha256=g-oIWHaNNvqZfl0bq0AJaA9lrEG8urduy2fnxmkNZdM,18584
|
1895
1897
|
pulumi_oci/identity/tag.py,sha256=ruhsYubjM3Gfr5FjIaLK_JNx6_xe4ryO_KpOlo-xPl0,41584
|
@@ -2030,7 +2032,7 @@ pulumi_oci/loadbalancer/get_shapes.py,sha256=noo0WtheJoNjE20IqsaRSlbwSVb86EUiyJr
|
|
2030
2032
|
pulumi_oci/loadbalancer/get_ssl_cipher_suite.py,sha256=cxTQ8GAYDicfhXfLcJPE7fRzgh2NybaHddLGDctkdwU,6197
|
2031
2033
|
pulumi_oci/loadbalancer/get_ssl_cipher_suites.py,sha256=ZZ4ysdv2UE3uRh3xI7LOYwmLaEeApsZ92C65QOVGZog,5947
|
2032
2034
|
pulumi_oci/loadbalancer/hostname.py,sha256=F9eP_yLRlI53DRelLBR0WcmTXvM7zhdHz6ies_J87i0,14825
|
2033
|
-
pulumi_oci/loadbalancer/listener.py,sha256=
|
2035
|
+
pulumi_oci/loadbalancer/listener.py,sha256=JXEl4tPVQb5Yb0mHZ-ipZxl1Emy8ODFYbHJ5gt41qv8,42688
|
2034
2036
|
pulumi_oci/loadbalancer/load_balancer.py,sha256=EQkLoV2fcwuNgsgvwlywOTr89kIuKhkzj9UFflUx7nI,89710
|
2035
2037
|
pulumi_oci/loadbalancer/load_balancer_routing_policy.py,sha256=r91ApkR5eaOJYIFVPuUBUfnuJE_Njk9SWa6OdKoUpwc,18612
|
2036
2038
|
pulumi_oci/loadbalancer/outputs.py,sha256=gzc7vxwOz2coVQ3HLDv3NVvjTfin2hgYl746TvQpDJo,266064
|
@@ -2273,21 +2275,21 @@ pulumi_oci/networkloadbalancer/_inputs.py,sha256=nwSSZD7l-wWMfVOAfSkoZ575zPNSkIp
|
|
2273
2275
|
pulumi_oci/networkloadbalancer/backend.py,sha256=3_xmWhGtz5uNkgk_i-croqGofZVAmJ21n25L97kcoU0,35098
|
2274
2276
|
pulumi_oci/networkloadbalancer/backend_set.py,sha256=NCR1x2fuUs6taU1fiohsCWsvkiCKUzDkICjCTzgI3r4,36240
|
2275
2277
|
pulumi_oci/networkloadbalancer/get_backend_health.py,sha256=bKBJTUbw1Tly6YNCurZ-z361m8onn69vEZNLtZdL-Qo,9467
|
2276
|
-
pulumi_oci/networkloadbalancer/get_backend_set.py,sha256=
|
2278
|
+
pulumi_oci/networkloadbalancer/get_backend_set.py,sha256=KEmS-RtbABy3ClOtXlx4pR8od6N8wEC9Uv0ltexJKeQ,10590
|
2277
2279
|
pulumi_oci/networkloadbalancer/get_backend_set_health.py,sha256=5J86cD6bYuku-YYlThxV_mkuNqpoyaWzd2QWfgRdhzo,7724
|
2278
2280
|
pulumi_oci/networkloadbalancer/get_backend_sets.py,sha256=rTruJedS89J_6WW9Vmk2kZ69GsEfL1l1HDJK1mpMCrA,6151
|
2279
2281
|
pulumi_oci/networkloadbalancer/get_backends.py,sha256=7v06KSkau1wq_DU4TBig2BDGesHo3dYKQXeaM3yGsVk,7149
|
2280
|
-
pulumi_oci/networkloadbalancer/get_listener.py,sha256=
|
2282
|
+
pulumi_oci/networkloadbalancer/get_listener.py,sha256=cXzUNPnnesID4inkgzC3mIU7VmILONLIleiVG5dwEbg,11438
|
2281
2283
|
pulumi_oci/networkloadbalancer/get_listeners.py,sha256=ok6hiwM7h2tpwmSsxAg4iELWeoqB_o9Vq1GnqfG_0QA,6008
|
2282
|
-
pulumi_oci/networkloadbalancer/get_network_load_balancer.py,sha256=
|
2284
|
+
pulumi_oci/networkloadbalancer/get_network_load_balancer.py,sha256=Ksreta79Sp338boRukOJc5rlIkdsPSpKOnEEbAu1XcM,19952
|
2283
2285
|
pulumi_oci/networkloadbalancer/get_network_load_balancer_health.py,sha256=DLizuWrvbuKMQKczZxk-xiY_KCALjsK_MrOJKnZntpw,10438
|
2284
2286
|
pulumi_oci/networkloadbalancer/get_network_load_balancers.py,sha256=PrqOvViDkH3b0ttdw-3vf4mz10pqWkeCU6Fdq3El13Q,8781
|
2285
2287
|
pulumi_oci/networkloadbalancer/get_network_load_balancers_policies.py,sha256=WD97aYxncg_izq9On7bfWGLYEhnOnsjTcRJCNa9S3Ys,5594
|
2286
2288
|
pulumi_oci/networkloadbalancer/get_network_load_balancers_protocols.py,sha256=JQJrconaHUYDvbwPeSf_sReV-1rdAhyr9j8A8wpFBIk,5821
|
2287
|
-
pulumi_oci/networkloadbalancer/listener.py,sha256=
|
2288
|
-
pulumi_oci/networkloadbalancer/network_load_balancer.py,sha256=
|
2289
|
+
pulumi_oci/networkloadbalancer/listener.py,sha256=ThbmewWjFlu1sfu_Jj7zvCaXqPrIuqlH-DINYn0umzo,33298
|
2290
|
+
pulumi_oci/networkloadbalancer/network_load_balancer.py,sha256=mWbBHZF__VfTAGZmB_7S09WnEwS9eMhu-PZY5cO187I,71680
|
2289
2291
|
pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py,sha256=8SE8Y-GLKdZGMc2u-2p4UzGXXy5WV2JytK0OrNrOVGI,42342
|
2290
|
-
pulumi_oci/networkloadbalancer/outputs.py,sha256=
|
2292
|
+
pulumi_oci/networkloadbalancer/outputs.py,sha256=0zaB7lCMK-eO1dYf3i4ZEzAX-1F9g-l5sJC3WXhN4iQ,119185
|
2291
2293
|
pulumi_oci/nosql/__init__.py,sha256=-ek2jAAWYNxuP3L92fUIFWteYxUOBDcs1fLMbUC_Eug,488
|
2292
2294
|
pulumi_oci/nosql/_inputs.py,sha256=-jvjEKo8xj0pzp-41iLvxDbXk9fSoTyVeT-Hmvfa8xQ,27237
|
2293
2295
|
pulumi_oci/nosql/get_index.py,sha256=GnX7NGmuDoZ-xbnXgrocnKYgOc1btunzRt3FOdMnhME,9678
|
@@ -2674,11 +2676,11 @@ pulumi_oci/resourcemanager/get_stacks.py,sha256=ZfJYQ99_q07bdRrkuVXWYf0LQZdcjgfp
|
|
2674
2676
|
pulumi_oci/resourcemanager/outputs.py,sha256=GFVjza0tMXSw90psZP3uoADIX1RJIUIm5TlNMU_V95E,18301
|
2675
2677
|
pulumi_oci/resourcemanager/private_endpoint.py,sha256=DyA2fzGQLyI1z2ieKuPeVcCi6GxQrn93hJCeSRdnlW4,42467
|
2676
2678
|
pulumi_oci/resourcescheduler/__init__.py,sha256=-VR0H5sBQo3vmu7-hUsFgfNX-kvfX8xu8z_qItPMf5M,395
|
2677
|
-
pulumi_oci/resourcescheduler/_inputs.py,sha256=
|
2679
|
+
pulumi_oci/resourcescheduler/_inputs.py,sha256=hakQrzRFZJUHlUjpSMnviGbw__8ULqlioTSyMSzU8L0,11069
|
2678
2680
|
pulumi_oci/resourcescheduler/get_schedule.py,sha256=zNepcQlkUYT9kIZTU8_-ubh2x-UaGkTTetmF0F8aasI,16418
|
2679
|
-
pulumi_oci/resourcescheduler/get_schedules.py,sha256=
|
2680
|
-
pulumi_oci/resourcescheduler/outputs.py,sha256=
|
2681
|
-
pulumi_oci/resourcescheduler/schedule.py,sha256=
|
2681
|
+
pulumi_oci/resourcescheduler/get_schedules.py,sha256=T1mm4PRm83GZ3a2u9nDRDikeTOYQrzaN3KMXQPuSEQA,9493
|
2682
|
+
pulumi_oci/resourcescheduler/outputs.py,sha256=MMU1jrrPPkg0rlsicB3nTlnPlNsAcVdf_F7GBnvK6t8,27905
|
2683
|
+
pulumi_oci/resourcescheduler/schedule.py,sha256=v12D4aFeLJN3AJaIY36Ex6BofSSySRZRzaF4AV7HgSo,51625
|
2682
2684
|
pulumi_oci/sch/__init__.py,sha256=dH6zXwKT52lcqpfse2o7ie_EX6lm2CsDqEV_kiy39GA,487
|
2683
2685
|
pulumi_oci/sch/_inputs.py,sha256=w3WiwR9H0IpHD-Og7CPpqyAk0LBxwDZF_698tFyQcXY,60789
|
2684
2686
|
pulumi_oci/sch/connector.py,sha256=YtAwXusz6Z_TtQ_oyV2wgI0-bkP5ePCfPhi90xC3G1g,52346
|
@@ -2909,7 +2911,7 @@ pulumi_oci/zpr/get_zpr_policies.py,sha256=1QNe4eQ6jyzlwdY9dAhwUIRcRat1B1PDVV1Ier
|
|
2909
2911
|
pulumi_oci/zpr/get_zpr_policy.py,sha256=8T-CGxDxYn1TmAQRwv2mcJpw4kGQmL8pGyUaHfmeAe4,11424
|
2910
2912
|
pulumi_oci/zpr/outputs.py,sha256=bLQC7_On52bzTOlKVC9oF2CSxcSo7CiwTmOkBNy7MD4,8943
|
2911
2913
|
pulumi_oci/zpr/zpr_policy.py,sha256=kRQiN_Fg_m8N1oVD93ktqQhhXv8z8y08nBKuypB_t3k,32563
|
2912
|
-
pulumi_oci-2.
|
2913
|
-
pulumi_oci-2.
|
2914
|
-
pulumi_oci-2.
|
2915
|
-
pulumi_oci-2.
|
2914
|
+
pulumi_oci-2.15.0.dist-info/METADATA,sha256=aDAOJwQB-HQHInjfRT1lOspyZajktYlvTAt4Sw2GB8k,3959
|
2915
|
+
pulumi_oci-2.15.0.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
2916
|
+
pulumi_oci-2.15.0.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2917
|
+
pulumi_oci-2.15.0.dist-info/RECORD,,
|