pulumi-oci 2.14.0__py3-none-any.whl → 2.14.0a1730182164__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/core/_inputs.py +0 -74
- pulumi_oci/core/get_instance.py +1 -1
- pulumi_oci/core/get_virtual_circuit.py +4 -18
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/outputs.py +7 -165
- pulumi_oci/core/virtual_circuit.py +2 -30
- pulumi_oci/database/_inputs.py +0 -642
- pulumi_oci/database/autonomous_container_database.py +14 -14
- pulumi_oci/database/autonomous_database.py +0 -75
- pulumi_oci/database/get_autonomous_container_database.py +3 -3
- pulumi_oci/database/get_autonomous_database.py +1 -29
- pulumi_oci/database/get_autonomous_databases.py +28 -22
- pulumi_oci/database/outputs.py +89 -1672
- pulumi_oci/datascience/_inputs.py +0 -353
- pulumi_oci/datascience/get_model.py +1 -85
- pulumi_oci/datascience/get_models.py +0 -5
- pulumi_oci/datascience/model.py +66 -206
- pulumi_oci/datascience/outputs.py +0 -759
- pulumi_oci/filestorage/_inputs.py +0 -651
- pulumi_oci/filestorage/export.py +3 -96
- pulumi_oci/filestorage/file_system.py +0 -93
- pulumi_oci/filestorage/filesystem_snapshot_policy.py +0 -93
- pulumi_oci/filestorage/get_filesystem_snapshot_policy.py +1 -26
- pulumi_oci/filestorage/get_outbound_connector.py +1 -26
- pulumi_oci/filestorage/get_replication.py +1 -27
- pulumi_oci/filestorage/get_snapshot.py +1 -27
- pulumi_oci/filestorage/mount_target.py +0 -108
- pulumi_oci/filestorage/outbound_connector.py +0 -93
- pulumi_oci/filestorage/outputs.py +9 -1225
- pulumi_oci/filestorage/replication.py +0 -95
- pulumi_oci/filestorage/snapshot.py +2 -97
- pulumi_oci/networkloadbalancer/get_network_load_balancer.py +1 -15
- pulumi_oci/networkloadbalancer/network_load_balancer.py +0 -47
- pulumi_oci/networkloadbalancer/outputs.py +0 -11
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/METADATA +1 -1
- {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/RECORD +39 -39
- {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.14.0.dist-info → pulumi_oci-2.14.0a1730182164.dist-info}/top_level.txt +0 -0
@@ -34,7 +34,6 @@ class NetworkLoadBalancerArgs:
|
|
34
34
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
35
35
|
nlb_ip_version: Optional[pulumi.Input[str]] = None,
|
36
36
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerReservedIpArgs']]]] = None,
|
37
|
-
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
38
37
|
subnet_ipv6cidr: Optional[pulumi.Input[str]] = None):
|
39
38
|
"""
|
40
39
|
The set of arguments for constructing a NetworkLoadBalancer resource.
|
@@ -70,7 +69,6 @@ class NetworkLoadBalancerArgs:
|
|
70
69
|
Example: ["ocid1.nsg.oc1.phx.unique_ID"]
|
71
70
|
:param pulumi.Input[str] nlb_ip_version: (Updatable) IP version associated with the NLB.
|
72
71
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerReservedIpArgs']]] reserved_ips: An array of reserved Ips.
|
73
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) ZPR 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: `{"oracle-zpr": {"td": {"value": "42", "mode": "audit"}}}`
|
74
72
|
:param pulumi.Input[str] subnet_ipv6cidr: IPv6 subnet prefix selection. If Ipv6 subnet prefix is passed, Nlb Ipv6 Address would be assign within the cidr block. NLB has to be dual or single stack ipv6 to support this.
|
75
73
|
|
76
74
|
|
@@ -100,8 +98,6 @@ class NetworkLoadBalancerArgs:
|
|
100
98
|
pulumi.set(__self__, "nlb_ip_version", nlb_ip_version)
|
101
99
|
if reserved_ips is not None:
|
102
100
|
pulumi.set(__self__, "reserved_ips", reserved_ips)
|
103
|
-
if security_attributes is not None:
|
104
|
-
pulumi.set(__self__, "security_attributes", security_attributes)
|
105
101
|
if subnet_ipv6cidr is not None:
|
106
102
|
pulumi.set(__self__, "subnet_ipv6cidr", subnet_ipv6cidr)
|
107
103
|
|
@@ -280,18 +276,6 @@ class NetworkLoadBalancerArgs:
|
|
280
276
|
def reserved_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerReservedIpArgs']]]]):
|
281
277
|
pulumi.set(self, "reserved_ips", value)
|
282
278
|
|
283
|
-
@property
|
284
|
-
@pulumi.getter(name="securityAttributes")
|
285
|
-
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
286
|
-
"""
|
287
|
-
(Updatable) ZPR 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: `{"oracle-zpr": {"td": {"value": "42", "mode": "audit"}}}`
|
288
|
-
"""
|
289
|
-
return pulumi.get(self, "security_attributes")
|
290
|
-
|
291
|
-
@security_attributes.setter
|
292
|
-
def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
293
|
-
pulumi.set(self, "security_attributes", value)
|
294
|
-
|
295
279
|
@property
|
296
280
|
@pulumi.getter(name="subnetIpv6cidr")
|
297
281
|
def subnet_ipv6cidr(self) -> Optional[pulumi.Input[str]]:
|
@@ -326,7 +310,6 @@ class _NetworkLoadBalancerState:
|
|
326
310
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
327
311
|
nlb_ip_version: Optional[pulumi.Input[str]] = None,
|
328
312
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerReservedIpArgs']]]] = None,
|
329
|
-
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
330
313
|
state: Optional[pulumi.Input[str]] = None,
|
331
314
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
332
315
|
subnet_ipv6cidr: Optional[pulumi.Input[str]] = None,
|
@@ -368,7 +351,6 @@ class _NetworkLoadBalancerState:
|
|
368
351
|
Example: ["ocid1.nsg.oc1.phx.unique_ID"]
|
369
352
|
:param pulumi.Input[str] nlb_ip_version: (Updatable) IP version associated with the NLB.
|
370
353
|
:param pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerReservedIpArgs']]] reserved_ips: An array of reserved Ips.
|
371
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) ZPR 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: `{"oracle-zpr": {"td": {"value": "42", "mode": "audit"}}}`
|
372
354
|
:param pulumi.Input[str] state: The current state of the network load balancer.
|
373
355
|
:param pulumi.Input[str] subnet_id: The subnet in which the network load balancer is spawned [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
374
356
|
:param pulumi.Input[str] subnet_ipv6cidr: IPv6 subnet prefix selection. If Ipv6 subnet prefix is passed, Nlb Ipv6 Address would be assign within the cidr block. NLB has to be dual or single stack ipv6 to support this.
|
@@ -408,8 +390,6 @@ class _NetworkLoadBalancerState:
|
|
408
390
|
pulumi.set(__self__, "nlb_ip_version", nlb_ip_version)
|
409
391
|
if reserved_ips is not None:
|
410
392
|
pulumi.set(__self__, "reserved_ips", reserved_ips)
|
411
|
-
if security_attributes is not None:
|
412
|
-
pulumi.set(__self__, "security_attributes", security_attributes)
|
413
393
|
if state is not None:
|
414
394
|
pulumi.set(__self__, "state", state)
|
415
395
|
if subnet_id is not None:
|
@@ -610,18 +590,6 @@ class _NetworkLoadBalancerState:
|
|
610
590
|
def reserved_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerReservedIpArgs']]]]):
|
611
591
|
pulumi.set(self, "reserved_ips", value)
|
612
592
|
|
613
|
-
@property
|
614
|
-
@pulumi.getter(name="securityAttributes")
|
615
|
-
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
616
|
-
"""
|
617
|
-
(Updatable) ZPR 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: `{"oracle-zpr": {"td": {"value": "42", "mode": "audit"}}}`
|
618
|
-
"""
|
619
|
-
return pulumi.get(self, "security_attributes")
|
620
|
-
|
621
|
-
@security_attributes.setter
|
622
|
-
def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
623
|
-
pulumi.set(self, "security_attributes", value)
|
624
|
-
|
625
593
|
@property
|
626
594
|
@pulumi.getter
|
627
595
|
def state(self) -> Optional[pulumi.Input[str]]:
|
@@ -716,7 +684,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
716
684
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
717
685
|
nlb_ip_version: Optional[pulumi.Input[str]] = None,
|
718
686
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NetworkLoadBalancerReservedIpArgs', 'NetworkLoadBalancerReservedIpArgsDict']]]]] = None,
|
719
|
-
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
720
687
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
721
688
|
subnet_ipv6cidr: Optional[pulumi.Input[str]] = None,
|
722
689
|
__props__=None):
|
@@ -766,7 +733,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
766
733
|
Example: ["ocid1.nsg.oc1.phx.unique_ID"]
|
767
734
|
:param pulumi.Input[str] nlb_ip_version: (Updatable) IP version associated with the NLB.
|
768
735
|
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkLoadBalancerReservedIpArgs', 'NetworkLoadBalancerReservedIpArgsDict']]]] reserved_ips: An array of reserved Ips.
|
769
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) ZPR 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: `{"oracle-zpr": {"td": {"value": "42", "mode": "audit"}}}`
|
770
736
|
:param pulumi.Input[str] subnet_id: The subnet in which the network load balancer is spawned [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
771
737
|
:param pulumi.Input[str] subnet_ipv6cidr: IPv6 subnet prefix selection. If Ipv6 subnet prefix is passed, Nlb Ipv6 Address would be assign within the cidr block. NLB has to be dual or single stack ipv6 to support this.
|
772
738
|
|
@@ -820,7 +786,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
820
786
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
821
787
|
nlb_ip_version: Optional[pulumi.Input[str]] = None,
|
822
788
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NetworkLoadBalancerReservedIpArgs', 'NetworkLoadBalancerReservedIpArgsDict']]]]] = None,
|
823
|
-
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
824
789
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
825
790
|
subnet_ipv6cidr: Optional[pulumi.Input[str]] = None,
|
826
791
|
__props__=None):
|
@@ -848,7 +813,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
848
813
|
__props__.__dict__["network_security_group_ids"] = network_security_group_ids
|
849
814
|
__props__.__dict__["nlb_ip_version"] = nlb_ip_version
|
850
815
|
__props__.__dict__["reserved_ips"] = reserved_ips
|
851
|
-
__props__.__dict__["security_attributes"] = security_attributes
|
852
816
|
if subnet_id is None and not opts.urn:
|
853
817
|
raise TypeError("Missing required property 'subnet_id'")
|
854
818
|
__props__.__dict__["subnet_id"] = subnet_id
|
@@ -883,7 +847,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
883
847
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
884
848
|
nlb_ip_version: Optional[pulumi.Input[str]] = None,
|
885
849
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NetworkLoadBalancerReservedIpArgs', 'NetworkLoadBalancerReservedIpArgsDict']]]]] = None,
|
886
|
-
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
887
850
|
state: Optional[pulumi.Input[str]] = None,
|
888
851
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
889
852
|
subnet_ipv6cidr: Optional[pulumi.Input[str]] = None,
|
@@ -930,7 +893,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
930
893
|
Example: ["ocid1.nsg.oc1.phx.unique_ID"]
|
931
894
|
:param pulumi.Input[str] nlb_ip_version: (Updatable) IP version associated with the NLB.
|
932
895
|
:param pulumi.Input[Sequence[pulumi.Input[Union['NetworkLoadBalancerReservedIpArgs', 'NetworkLoadBalancerReservedIpArgsDict']]]] reserved_ips: An array of reserved Ips.
|
933
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) ZPR 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: `{"oracle-zpr": {"td": {"value": "42", "mode": "audit"}}}`
|
934
896
|
:param pulumi.Input[str] state: The current state of the network load balancer.
|
935
897
|
:param pulumi.Input[str] subnet_id: The subnet in which the network load balancer is spawned [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
|
936
898
|
:param pulumi.Input[str] subnet_ipv6cidr: IPv6 subnet prefix selection. If Ipv6 subnet prefix is passed, Nlb Ipv6 Address would be assign within the cidr block. NLB has to be dual or single stack ipv6 to support this.
|
@@ -960,7 +922,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
960
922
|
__props__.__dict__["network_security_group_ids"] = network_security_group_ids
|
961
923
|
__props__.__dict__["nlb_ip_version"] = nlb_ip_version
|
962
924
|
__props__.__dict__["reserved_ips"] = reserved_ips
|
963
|
-
__props__.__dict__["security_attributes"] = security_attributes
|
964
925
|
__props__.__dict__["state"] = state
|
965
926
|
__props__.__dict__["subnet_id"] = subnet_id
|
966
927
|
__props__.__dict__["subnet_ipv6cidr"] = subnet_ipv6cidr
|
@@ -1100,14 +1061,6 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
1100
1061
|
"""
|
1101
1062
|
return pulumi.get(self, "reserved_ips")
|
1102
1063
|
|
1103
|
-
@property
|
1104
|
-
@pulumi.getter(name="securityAttributes")
|
1105
|
-
def security_attributes(self) -> pulumi.Output[Mapping[str, str]]:
|
1106
|
-
"""
|
1107
|
-
(Updatable) ZPR 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: `{"oracle-zpr": {"td": {"value": "42", "mode": "audit"}}}`
|
1108
|
-
"""
|
1109
|
-
return pulumi.get(self, "security_attributes")
|
1110
|
-
|
1111
1064
|
@property
|
1112
1065
|
@pulumi.getter
|
1113
1066
|
def state(self) -> pulumi.Output[str]:
|
@@ -2188,7 +2188,6 @@ class GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemResult(dict):
|
|
2188
2188
|
network_security_group_ids: Sequence[str],
|
2189
2189
|
nlb_ip_version: str,
|
2190
2190
|
reserved_ips: Sequence['outputs.GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemReservedIpResult'],
|
2191
|
-
security_attributes: Mapping[str, str],
|
2192
2191
|
state: str,
|
2193
2192
|
subnet_id: str,
|
2194
2193
|
subnet_ipv6cidr: str,
|
@@ -2207,7 +2206,6 @@ class GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemResult(dict):
|
|
2207
2206
|
:param str lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
2208
2207
|
:param Sequence[str] network_security_group_ids: An array of network security groups [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the network load balancer.
|
2209
2208
|
:param str nlb_ip_version: IP version associated with the NLB.
|
2210
|
-
:param Mapping[str, str] security_attributes: ZPR 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: `{ "oracle-zpr": { "td": { "value": "42", "mode": "audit" } } }`
|
2211
2209
|
:param str state: A filter to return only resources that match the given lifecycle state.
|
2212
2210
|
:param str subnet_id: The subnet in which the network load balancer is spawned [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)."
|
2213
2211
|
:param Mapping[str, str] system_tags: Key-value pair representing system tags' keys and values scoped to a namespace. Example: `{"bar-key": "value"}`
|
@@ -2229,7 +2227,6 @@ class GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemResult(dict):
|
|
2229
2227
|
pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
|
2230
2228
|
pulumi.set(__self__, "nlb_ip_version", nlb_ip_version)
|
2231
2229
|
pulumi.set(__self__, "reserved_ips", reserved_ips)
|
2232
|
-
pulumi.set(__self__, "security_attributes", security_attributes)
|
2233
2230
|
pulumi.set(__self__, "state", state)
|
2234
2231
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
2235
2232
|
pulumi.set(__self__, "subnet_ipv6cidr", subnet_ipv6cidr)
|
@@ -2345,14 +2342,6 @@ class GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemResult(dict):
|
|
2345
2342
|
def reserved_ips(self) -> Sequence['outputs.GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemReservedIpResult']:
|
2346
2343
|
return pulumi.get(self, "reserved_ips")
|
2347
2344
|
|
2348
|
-
@property
|
2349
|
-
@pulumi.getter(name="securityAttributes")
|
2350
|
-
def security_attributes(self) -> Mapping[str, str]:
|
2351
|
-
"""
|
2352
|
-
ZPR 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: `{ "oracle-zpr": { "td": { "value": "42", "mode": "audit" } } }`
|
2353
|
-
"""
|
2354
|
-
return pulumi.get(self, "security_attributes")
|
2355
|
-
|
2356
2345
|
@property
|
2357
2346
|
@pulumi.getter
|
2358
2347
|
def state(self) -> str:
|
pulumi_oci/pulumi-plugin.json
CHANGED
@@ -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=YAfY0GrVoQKUzcBCFiPXXpoE37Xdtc6N6ZFalmHk33A,80
|
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
|
@@ -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=vbeKw36vzjuGo91ywRhVRWZVRNy5cZ0h7bsYnuSCdMc,1205975
|
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=WeNEfAnOSxhhG6e6tvNBbrZe5lDiv8NHhk0IIdECjzc,38261
|
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=pNZCZkagYvWi54apSxCdnrGsNfPKMpngd8oOacXkajs,25571
|
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,7 +629,7 @@ 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=kXXTEWh2ORsKAK18nHL6zQWJx9Mqw9cD9OG3Cn7VFoU,184685
|
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
|
@@ -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=w5dVU3fzuccpvwvzRQCOH7tU2iE-HhHyMDI3XX8nw9M,2479243
|
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=lIIr9Os-xPkKA7IS5oXceOMVYT0hlAL895DGROuvL3M,91042
|
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=Noz6oHB-gcONgYBplGFilzeWxBhr7ncNQkfdFI7SujY,989488
|
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=YVUHz09mg6YqT0f-Rc_cd7ULc9au0Wf841RnmfRGs3o,163039
|
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=uGvviHxtotLXdol4-npUbbp4svEwuGNh7EjUzqK5KwI,474428
|
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=VgmKAPcSjZ9Y22ZtD1gQL7OReUgDwtq9k6BJ1UGUcW4,53668
|
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=YBOukLTP8IS2rj72lFhEwKoI1yLOLf9KMBf1HkpCDDk,119284
|
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=ECNP-70Q8JM74SzGLEP1EZMJyiC7zShTg4st9tKQpH4,24526
|
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=I9a_dML8rnxrPFuGnKNGmo8XlXv8cmYsGOGy5d8NnVg,2346586
|
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
|
@@ -1295,21 +1295,21 @@ pulumi_oci/datasafe/unset_user_assessment_baseline.py,sha256=HBAS6RKPnM-XvQMu8GG
|
|
1295
1295
|
pulumi_oci/datasafe/unset_user_assessment_baseline_management.py,sha256=35cHHgSOwwXA7KzdBO0h_1q898gblxQZfz8icp2a8zU,12008
|
1296
1296
|
pulumi_oci/datasafe/user_assessment.py,sha256=zkPdEx1SRJAXFCPllotW0LV06l57leLb_z-73ElwKT4,58652
|
1297
1297
|
pulumi_oci/datascience/__init__.py,sha256=YUs9Sg1hYEkk_ORPN54BOFosvaeepgs8SelXVgSpgYc,1506
|
1298
|
-
pulumi_oci/datascience/_inputs.py,sha256=
|
1298
|
+
pulumi_oci/datascience/_inputs.py,sha256=uAIGImWj7_--ymK7XiPFDAbG2WftX5akEKtEzFZjwnc,282269
|
1299
1299
|
pulumi_oci/datascience/get_fast_launch_job_configs.py,sha256=g6ie0UMUodJ8e67WQnlk1QbOr4n1XUA4-f35a2EuvGc,6185
|
1300
1300
|
pulumi_oci/datascience/get_job.py,sha256=UryPIBBsQ3tLtUmucNYia1D_UG6A2xlWUutzuAycugs,19820
|
1301
1301
|
pulumi_oci/datascience/get_job_run.py,sha256=zjw1vXZ8acqUrq49fBTw2QizvxowyCLxxABfQ721cVM,19117
|
1302
1302
|
pulumi_oci/datascience/get_job_runs.py,sha256=DkLkwsFz-QS_ch2kp1dY5FoMfd5Ncwh4gShXwqH4cD8,10544
|
1303
1303
|
pulumi_oci/datascience/get_job_shapes.py,sha256=If-lm_pKpRPv3DdGQJyBKJs-4zwzgvqBwQBc5LdL1qQ,5511
|
1304
1304
|
pulumi_oci/datascience/get_jobs.py,sha256=94US990IX3CHR0AqwI_qeDql0sg9Dx7MB7Pc9DYAuQo,10494
|
1305
|
-
pulumi_oci/datascience/get_model.py,sha256=
|
1305
|
+
pulumi_oci/datascience/get_model.py,sha256=waoOCroXr0LjWF2wMw17dDb0FCO87_vv-YgFxkIMGsQ,16466
|
1306
1306
|
pulumi_oci/datascience/get_model_deployment.py,sha256=1Z0d3QeI2RLDMtZTAg5-pfuAsaPe9bbL3rN_Z3sL9O8,15387
|
1307
1307
|
pulumi_oci/datascience/get_model_deployment_shapes.py,sha256=PJxM-nO2y_FqcPVLDOHzbvindsvWRYJB_HQeJBHhpy4,6156
|
1308
1308
|
pulumi_oci/datascience/get_model_deployments.py,sha256=ntrSCze6L5ycBUum_FOppTlQzAd46oHA9cowOiDJPlw,12086
|
1309
1309
|
pulumi_oci/datascience/get_model_provenance.py,sha256=KGswr996OpZBZ0uytn4Y2iz974jRaxpMlIc050te1WE,7912
|
1310
1310
|
pulumi_oci/datascience/get_model_version_set.py,sha256=lFd_tRXigp4zfMpGWEu52s_qf4XCXRTrwC9FZ5OLctI,11824
|
1311
1311
|
pulumi_oci/datascience/get_model_version_sets.py,sha256=pXV6txFktUu89UlFp3zOIF7dbm9-eG5WJRx6XsXNKFw,11375
|
1312
|
-
pulumi_oci/datascience/get_models.py,sha256=
|
1312
|
+
pulumi_oci/datascience/get_models.py,sha256=FWLO_mInjkAfBppnXHGbkefFwGftVGUmHZzirnltdGw,12518
|
1313
1313
|
pulumi_oci/datascience/get_notebook_session.py,sha256=8ypXcKRZ5_DMJFll1nHfiZKytatsvY7RCPE3U1_qf4o,15943
|
1314
1314
|
pulumi_oci/datascience/get_notebook_session_shapes.py,sha256=ph9v7zO1QN3LK7IYTpkjs8Ycvzcws-VCbcsGrMbxD8s,6158
|
1315
1315
|
pulumi_oci/datascience/get_notebook_sessions.py,sha256=TSzYhIj_73Wb9eot8pwGIoxw623wEgdHaWyWC9apdx4,11608
|
@@ -1323,14 +1323,14 @@ pulumi_oci/datascience/get_project.py,sha256=-Uu8GHJQyXbVrK7SDrv9Celj4bbqLXMuJw-
|
|
1323
1323
|
pulumi_oci/datascience/get_projects.py,sha256=utHRQHy8PzNrjW2R2QhcxJybIavvD4mwSzCdEwWcUO4,9604
|
1324
1324
|
pulumi_oci/datascience/job.py,sha256=CKx-OCPc-mnwV3yya9_ODyadwXkIGLH7jJpx2yXPq88,66918
|
1325
1325
|
pulumi_oci/datascience/job_run.py,sha256=HaaerhcZjU_rxyCHnhCsooASF1nZY7S5vzqYPzDZWjM,58105
|
1326
|
-
pulumi_oci/datascience/model.py,sha256=
|
1326
|
+
pulumi_oci/datascience/model.py,sha256=E8YVvEgJk57EWBKjMMe0dBdjRnV6Tf9d0BRwBBjq4Ls,53133
|
1327
1327
|
pulumi_oci/datascience/model_artifact_export.py,sha256=qpoGIPU6izNwENI_B95Hhfr_XxyyPgEtszWpUHPFjpQ,13053
|
1328
1328
|
pulumi_oci/datascience/model_artifact_import.py,sha256=MazxhVf2vz69NjG5YSr3NT5OQW_1h82t3ifPIF9Uuq8,13518
|
1329
1329
|
pulumi_oci/datascience/model_deployment.py,sha256=6ousrL2cgHh3VLmO_bY96N0TupE2tDTfg9SXg0zQ50E,59809
|
1330
1330
|
pulumi_oci/datascience/model_provenance.py,sha256=bs0nhQLjbJPq48vn2itr1OdNENIDFYEVqt6Hzl3wG6s,24769
|
1331
1331
|
pulumi_oci/datascience/model_version_set.py,sha256=_04yCq42KZfpmwCeHn_o893-wERWTLxUxldeAIS6khA,31984
|
1332
1332
|
pulumi_oci/datascience/notebook_session.py,sha256=HHk9TueUZl2db4m__DO2XRscYdz_PAE5fuB3MqkfKHw,53685
|
1333
|
-
pulumi_oci/datascience/outputs.py,sha256=
|
1333
|
+
pulumi_oci/datascience/outputs.py,sha256=MN3qxpLak4krWlPUT0LqDC_v2AOdLsxCgVxdDbmXeBk,591316
|
1334
1334
|
pulumi_oci/datascience/pipeline.py,sha256=CrgPTTlGIbq7gtvodD6nyFUFkba6KiCiHmvoflIiG38,55482
|
1335
1335
|
pulumi_oci/datascience/pipeline_run.py,sha256=ZCDY9jWX4QmgD037t-gV6FYKx5SUd5HJBGiBg-S-8_M,61515
|
1336
1336
|
pulumi_oci/datascience/private_endpoint.py,sha256=qw8MZiEbX3YLcTEmWhx57sWNoVAI9BodwGXfu20lsto,41007
|
@@ -1503,30 +1503,30 @@ pulumi_oci/events/get_rules.py,sha256=Lq2AvPoZte5sqzqGAmnV_OoX6dPUikhuMS1YqjqIcw
|
|
1503
1503
|
pulumi_oci/events/outputs.py,sha256=1tJA_GwFrGsAb5HVG_xvuxNrQVKXnywiXnmq8lKLa4c,26538
|
1504
1504
|
pulumi_oci/events/rule.py,sha256=jbsjvp_CeUtd1yuHNgJPB1hEcSlkAgp_K9wato2L_wc,44326
|
1505
1505
|
pulumi_oci/filestorage/__init__.py,sha256=o1dtIje7kjVGLuJ8Fz6XqRSncO0ExtsSfiREeMn8uaU,1035
|
1506
|
-
pulumi_oci/filestorage/_inputs.py,sha256=
|
1507
|
-
pulumi_oci/filestorage/export.py,sha256=
|
1506
|
+
pulumi_oci/filestorage/_inputs.py,sha256=3mIMUGt4GDC0RXCH0-bLn2AxHuMSfIr5cCPS313zJhs,51667
|
1507
|
+
pulumi_oci/filestorage/export.py,sha256=13ARDm4UvM5msVlZR13QeSCGZZDXDMlBzldD_ZBAOBQ,34882
|
1508
1508
|
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=
|
1509
|
+
pulumi_oci/filestorage/file_system.py,sha256=Zxx6GZoJMykyHayTSPLTRBNgdQiNzrwygh-0NwvVHTk,62230
|
1510
|
+
pulumi_oci/filestorage/filesystem_snapshot_policy.py,sha256=ZJgrN7MCPiIHjfh_nMAl_2ytnzQEbUKYXomiYHZQQWU,37162
|
1511
1511
|
pulumi_oci/filestorage/get_export_sets.py,sha256=q6cyT8L1nyd2M4MbmbYxjNYSP-a6PSBxYSXkGbe-mz4,9926
|
1512
1512
|
pulumi_oci/filestorage/get_exports.py,sha256=ecozET1h27VVhZlirZTAA7DyP8OrFY_QQs1SX5WA8_o,9686
|
1513
1513
|
pulumi_oci/filestorage/get_file_systems.py,sha256=y4PjGJjrHJZtNuDNnlOvbBy4qgo2ybqfqORNTDtdIS4,15846
|
1514
1514
|
pulumi_oci/filestorage/get_filesystem_snapshot_policies.py,sha256=LWTaLh2vkSGwKGjWaDAqsfgduHnYBoVbmsOZp8rZTrc,11185
|
1515
|
-
pulumi_oci/filestorage/get_filesystem_snapshot_policy.py,sha256=
|
1515
|
+
pulumi_oci/filestorage/get_filesystem_snapshot_policy.py,sha256=yrvf3BuehGpTG_xpd_xDHAkdRrEDeVNgjSG07np_Ojw,11550
|
1516
1516
|
pulumi_oci/filestorage/get_mount_targets.py,sha256=YZNSwwUX4_DkOcuKxJfzgAgqHPwZbDuUQs03Wax26L8,11483
|
1517
|
-
pulumi_oci/filestorage/get_outbound_connector.py,sha256=
|
1517
|
+
pulumi_oci/filestorage/get_outbound_connector.py,sha256=W9ayDEVVcivv5ODxc9NU_R_rJkHd2g2GV_2PUXA_jdw,13258
|
1518
1518
|
pulumi_oci/filestorage/get_outbound_connectors.py,sha256=d4Kdn8hVsgYJ1yAIE78cZUOEepAu3IkoODYpkdhQ2q8,10543
|
1519
|
-
pulumi_oci/filestorage/get_replication.py,sha256=
|
1519
|
+
pulumi_oci/filestorage/get_replication.py,sha256=GtyEvujYukwk0WcAivUNs0m4ehTcsN71D1gvbEf41x0,15883
|
1520
1520
|
pulumi_oci/filestorage/get_replication_target.py,sha256=7j-sylljFHp7X0Q-4oLN8jtoXFYhQFldC97jOwKHRIc,15148
|
1521
1521
|
pulumi_oci/filestorage/get_replication_targets.py,sha256=yyPxVabwQRUINkH_PTdq8a8Un78e-X3hCSPLlfz7Wy8,10533
|
1522
1522
|
pulumi_oci/filestorage/get_replications.py,sha256=CL3GKozRkrS-HMxLAfr1CmZ7g2L5Fq_9OsC8xlNrsDg,11347
|
1523
|
-
pulumi_oci/filestorage/get_snapshot.py,sha256=
|
1523
|
+
pulumi_oci/filestorage/get_snapshot.py,sha256=bgT594hTmV290tDZld2IJp1NgUbprHNCCDjIL-Zu-hI,13661
|
1524
1524
|
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=
|
1525
|
+
pulumi_oci/filestorage/mount_target.py,sha256=nLQUQkGf4-yqq2fNu-6Qr8ivqIAHMPwln8MFjijQRk4,75558
|
1526
|
+
pulumi_oci/filestorage/outbound_connector.py,sha256=tC6TZ7rVUpwm9kCNEQDu-HKFyORTHRQ213u9T-EOs90,42423
|
1527
|
+
pulumi_oci/filestorage/outputs.py,sha256=VqzfhmTrp1JGKmt5OeQW1QW0xWnmO1rc_BTtpGASI3M,145068
|
1528
|
+
pulumi_oci/filestorage/replication.py,sha256=ucjDZ-yP-DjgmdNAi9HPiujHWvYoaAPTbPPm6cS_fLQ,46524
|
1529
|
+
pulumi_oci/filestorage/snapshot.py,sha256=B7oS-EkAv8pt4kbJC7fCksXHGtDbX6Kpaezt0WDoR8s,36669
|
1530
1530
|
pulumi_oci/fleetappsmanagement/__init__.py,sha256=Jog5NRf4m2CKeEpWmSUNxRYcmWnrhCiB7UILtXBqR2g,1453
|
1531
1531
|
pulumi_oci/fleetappsmanagement/_inputs.py,sha256=0UNwvrCwGo0bZGMgDXqLRmEa8X4Pa9WfIFonwFfVd0Q,68423
|
1532
1532
|
pulumi_oci/fleetappsmanagement/fleet.py,sha256=A6dqa-VoJ72QTQd4nTtOrU-aFEchi_90TAoLQNLfw6o,47759
|
@@ -2279,15 +2279,15 @@ pulumi_oci/networkloadbalancer/get_backend_sets.py,sha256=rTruJedS89J_6WW9Vmk2kZ
|
|
2279
2279
|
pulumi_oci/networkloadbalancer/get_backends.py,sha256=7v06KSkau1wq_DU4TBig2BDGesHo3dYKQXeaM3yGsVk,7149
|
2280
2280
|
pulumi_oci/networkloadbalancer/get_listener.py,sha256=bTQ9-TFMp0J8VxpuhBIG4Cco00ysNVaSyAt7ztD7u4I,10751
|
2281
2281
|
pulumi_oci/networkloadbalancer/get_listeners.py,sha256=ok6hiwM7h2tpwmSsxAg4iELWeoqB_o9Vq1GnqfG_0QA,6008
|
2282
|
-
pulumi_oci/networkloadbalancer/get_network_load_balancer.py,sha256=
|
2282
|
+
pulumi_oci/networkloadbalancer/get_network_load_balancer.py,sha256=SDYvMwaiV99Yrt8Gb6vReDWIi-tzlbvt0rb3zR_84gI,18975
|
2283
2283
|
pulumi_oci/networkloadbalancer/get_network_load_balancer_health.py,sha256=DLizuWrvbuKMQKczZxk-xiY_KCALjsK_MrOJKnZntpw,10438
|
2284
2284
|
pulumi_oci/networkloadbalancer/get_network_load_balancers.py,sha256=PrqOvViDkH3b0ttdw-3vf4mz10pqWkeCU6Fdq3El13Q,8781
|
2285
2285
|
pulumi_oci/networkloadbalancer/get_network_load_balancers_policies.py,sha256=WD97aYxncg_izq9On7bfWGLYEhnOnsjTcRJCNa9S3Ys,5594
|
2286
2286
|
pulumi_oci/networkloadbalancer/get_network_load_balancers_protocols.py,sha256=JQJrconaHUYDvbwPeSf_sReV-1rdAhyr9j8A8wpFBIk,5821
|
2287
2287
|
pulumi_oci/networkloadbalancer/listener.py,sha256=kR8QGtBnpbR-TLmob9b3LNk4AK02IxMi3ixN3MgFfMk,30813
|
2288
|
-
pulumi_oci/networkloadbalancer/network_load_balancer.py,sha256=
|
2288
|
+
pulumi_oci/networkloadbalancer/network_load_balancer.py,sha256=U6l5v6EfIxAjR1N6XMwIWViTcbbizuw-6EvY9libe6s,67203
|
2289
2289
|
pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py,sha256=8SE8Y-GLKdZGMc2u-2p4UzGXXy5WV2JytK0OrNrOVGI,42342
|
2290
|
-
pulumi_oci/networkloadbalancer/outputs.py,sha256=
|
2290
|
+
pulumi_oci/networkloadbalancer/outputs.py,sha256=5tqf4ZUU4_TEAqYZZTRBIj6FVlMfDRH4jS2G0sGiBDc,117726
|
2291
2291
|
pulumi_oci/nosql/__init__.py,sha256=-ek2jAAWYNxuP3L92fUIFWteYxUOBDcs1fLMbUC_Eug,488
|
2292
2292
|
pulumi_oci/nosql/_inputs.py,sha256=-jvjEKo8xj0pzp-41iLvxDbXk9fSoTyVeT-Hmvfa8xQ,27237
|
2293
2293
|
pulumi_oci/nosql/get_index.py,sha256=GnX7NGmuDoZ-xbnXgrocnKYgOc1btunzRt3FOdMnhME,9678
|
@@ -2909,7 +2909,7 @@ pulumi_oci/zpr/get_zpr_policies.py,sha256=1QNe4eQ6jyzlwdY9dAhwUIRcRat1B1PDVV1Ier
|
|
2909
2909
|
pulumi_oci/zpr/get_zpr_policy.py,sha256=8T-CGxDxYn1TmAQRwv2mcJpw4kGQmL8pGyUaHfmeAe4,11424
|
2910
2910
|
pulumi_oci/zpr/outputs.py,sha256=bLQC7_On52bzTOlKVC9oF2CSxcSo7CiwTmOkBNy7MD4,8943
|
2911
2911
|
pulumi_oci/zpr/zpr_policy.py,sha256=kRQiN_Fg_m8N1oVD93ktqQhhXv8z8y08nBKuypB_t3k,32563
|
2912
|
-
pulumi_oci-2.14.
|
2913
|
-
pulumi_oci-2.14.
|
2914
|
-
pulumi_oci-2.14.
|
2915
|
-
pulumi_oci-2.14.
|
2912
|
+
pulumi_oci-2.14.0a1730182164.dist-info/METADATA,sha256=qj_v68aT73R5kY4EBF4A96PG8bktOUvLlAxpfvIpgHw,3970
|
2913
|
+
pulumi_oci-2.14.0a1730182164.dist-info/WHEEL,sha256=OVMc5UfuAQiSplgO0_WdW7vXVGAt9Hdd6qtN4HotdyA,91
|
2914
|
+
pulumi_oci-2.14.0a1730182164.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2915
|
+
pulumi_oci-2.14.0a1730182164.dist-info/RECORD,,
|
File without changes
|