pulumi-oci 2.14.0a1730182164__py3-none-any.whl → 2.14.0a1730198001__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 +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/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/datascience/_inputs.py +353 -0
- pulumi_oci/datascience/get_model.py +85 -1
- pulumi_oci/datascience/get_models.py +5 -0
- pulumi_oci/datascience/model.py +206 -66
- pulumi_oci/datascience/outputs.py +759 -0
- 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/networkloadbalancer/get_network_load_balancer.py +15 -1
- pulumi_oci/networkloadbalancer/network_load_balancer.py +47 -0
- pulumi_oci/networkloadbalancer/outputs.py +11 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.14.0a1730198001.dist-info}/METADATA +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.14.0a1730198001.dist-info}/RECORD +39 -39
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.14.0a1730198001.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.14.0a1730198001.dist-info}/top_level.txt +0 -0
@@ -34,6 +34,7 @@ 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,
|
37
38
|
subnet_ipv6cidr: Optional[pulumi.Input[str]] = None):
|
38
39
|
"""
|
39
40
|
The set of arguments for constructing a NetworkLoadBalancer resource.
|
@@ -69,6 +70,7 @@ class NetworkLoadBalancerArgs:
|
|
69
70
|
Example: ["ocid1.nsg.oc1.phx.unique_ID"]
|
70
71
|
:param pulumi.Input[str] nlb_ip_version: (Updatable) IP version associated with the NLB.
|
71
72
|
: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"}}}`
|
72
74
|
: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.
|
73
75
|
|
74
76
|
|
@@ -98,6 +100,8 @@ class NetworkLoadBalancerArgs:
|
|
98
100
|
pulumi.set(__self__, "nlb_ip_version", nlb_ip_version)
|
99
101
|
if reserved_ips is not None:
|
100
102
|
pulumi.set(__self__, "reserved_ips", reserved_ips)
|
103
|
+
if security_attributes is not None:
|
104
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
101
105
|
if subnet_ipv6cidr is not None:
|
102
106
|
pulumi.set(__self__, "subnet_ipv6cidr", subnet_ipv6cidr)
|
103
107
|
|
@@ -276,6 +280,18 @@ class NetworkLoadBalancerArgs:
|
|
276
280
|
def reserved_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerReservedIpArgs']]]]):
|
277
281
|
pulumi.set(self, "reserved_ips", value)
|
278
282
|
|
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
|
+
|
279
295
|
@property
|
280
296
|
@pulumi.getter(name="subnetIpv6cidr")
|
281
297
|
def subnet_ipv6cidr(self) -> Optional[pulumi.Input[str]]:
|
@@ -310,6 +326,7 @@ class _NetworkLoadBalancerState:
|
|
310
326
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
311
327
|
nlb_ip_version: Optional[pulumi.Input[str]] = None,
|
312
328
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerReservedIpArgs']]]] = None,
|
329
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
313
330
|
state: Optional[pulumi.Input[str]] = None,
|
314
331
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
315
332
|
subnet_ipv6cidr: Optional[pulumi.Input[str]] = None,
|
@@ -351,6 +368,7 @@ class _NetworkLoadBalancerState:
|
|
351
368
|
Example: ["ocid1.nsg.oc1.phx.unique_ID"]
|
352
369
|
:param pulumi.Input[str] nlb_ip_version: (Updatable) IP version associated with the NLB.
|
353
370
|
: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"}}}`
|
354
372
|
:param pulumi.Input[str] state: The current state of the network load balancer.
|
355
373
|
: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).
|
356
374
|
: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.
|
@@ -390,6 +408,8 @@ class _NetworkLoadBalancerState:
|
|
390
408
|
pulumi.set(__self__, "nlb_ip_version", nlb_ip_version)
|
391
409
|
if reserved_ips is not None:
|
392
410
|
pulumi.set(__self__, "reserved_ips", reserved_ips)
|
411
|
+
if security_attributes is not None:
|
412
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
393
413
|
if state is not None:
|
394
414
|
pulumi.set(__self__, "state", state)
|
395
415
|
if subnet_id is not None:
|
@@ -590,6 +610,18 @@ class _NetworkLoadBalancerState:
|
|
590
610
|
def reserved_ips(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['NetworkLoadBalancerReservedIpArgs']]]]):
|
591
611
|
pulumi.set(self, "reserved_ips", value)
|
592
612
|
|
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
|
+
|
593
625
|
@property
|
594
626
|
@pulumi.getter
|
595
627
|
def state(self) -> Optional[pulumi.Input[str]]:
|
@@ -684,6 +716,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
684
716
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
685
717
|
nlb_ip_version: Optional[pulumi.Input[str]] = None,
|
686
718
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NetworkLoadBalancerReservedIpArgs', 'NetworkLoadBalancerReservedIpArgsDict']]]]] = None,
|
719
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
687
720
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
688
721
|
subnet_ipv6cidr: Optional[pulumi.Input[str]] = None,
|
689
722
|
__props__=None):
|
@@ -733,6 +766,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
733
766
|
Example: ["ocid1.nsg.oc1.phx.unique_ID"]
|
734
767
|
:param pulumi.Input[str] nlb_ip_version: (Updatable) IP version associated with the NLB.
|
735
768
|
: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"}}}`
|
736
770
|
: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).
|
737
771
|
: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.
|
738
772
|
|
@@ -786,6 +820,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
786
820
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
787
821
|
nlb_ip_version: Optional[pulumi.Input[str]] = None,
|
788
822
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NetworkLoadBalancerReservedIpArgs', 'NetworkLoadBalancerReservedIpArgsDict']]]]] = None,
|
823
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
789
824
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
790
825
|
subnet_ipv6cidr: Optional[pulumi.Input[str]] = None,
|
791
826
|
__props__=None):
|
@@ -813,6 +848,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
813
848
|
__props__.__dict__["network_security_group_ids"] = network_security_group_ids
|
814
849
|
__props__.__dict__["nlb_ip_version"] = nlb_ip_version
|
815
850
|
__props__.__dict__["reserved_ips"] = reserved_ips
|
851
|
+
__props__.__dict__["security_attributes"] = security_attributes
|
816
852
|
if subnet_id is None and not opts.urn:
|
817
853
|
raise TypeError("Missing required property 'subnet_id'")
|
818
854
|
__props__.__dict__["subnet_id"] = subnet_id
|
@@ -847,6 +883,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
847
883
|
network_security_group_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
848
884
|
nlb_ip_version: Optional[pulumi.Input[str]] = None,
|
849
885
|
reserved_ips: Optional[pulumi.Input[Sequence[pulumi.Input[Union['NetworkLoadBalancerReservedIpArgs', 'NetworkLoadBalancerReservedIpArgsDict']]]]] = None,
|
886
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
850
887
|
state: Optional[pulumi.Input[str]] = None,
|
851
888
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
852
889
|
subnet_ipv6cidr: Optional[pulumi.Input[str]] = None,
|
@@ -893,6 +930,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
893
930
|
Example: ["ocid1.nsg.oc1.phx.unique_ID"]
|
894
931
|
:param pulumi.Input[str] nlb_ip_version: (Updatable) IP version associated with the NLB.
|
895
932
|
: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"}}}`
|
896
934
|
:param pulumi.Input[str] state: The current state of the network load balancer.
|
897
935
|
: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).
|
898
936
|
: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.
|
@@ -922,6 +960,7 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
922
960
|
__props__.__dict__["network_security_group_ids"] = network_security_group_ids
|
923
961
|
__props__.__dict__["nlb_ip_version"] = nlb_ip_version
|
924
962
|
__props__.__dict__["reserved_ips"] = reserved_ips
|
963
|
+
__props__.__dict__["security_attributes"] = security_attributes
|
925
964
|
__props__.__dict__["state"] = state
|
926
965
|
__props__.__dict__["subnet_id"] = subnet_id
|
927
966
|
__props__.__dict__["subnet_ipv6cidr"] = subnet_ipv6cidr
|
@@ -1061,6 +1100,14 @@ class NetworkLoadBalancer(pulumi.CustomResource):
|
|
1061
1100
|
"""
|
1062
1101
|
return pulumi.get(self, "reserved_ips")
|
1063
1102
|
|
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
|
+
|
1064
1111
|
@property
|
1065
1112
|
@pulumi.getter
|
1066
1113
|
def state(self) -> pulumi.Output[str]:
|
@@ -2188,6 +2188,7 @@ 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],
|
2191
2192
|
state: str,
|
2192
2193
|
subnet_id: str,
|
2193
2194
|
subnet_ipv6cidr: str,
|
@@ -2206,6 +2207,7 @@ class GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemResult(dict):
|
|
2206
2207
|
: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.
|
2207
2208
|
: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.
|
2208
2209
|
: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" } } }`
|
2209
2211
|
:param str state: A filter to return only resources that match the given lifecycle state.
|
2210
2212
|
: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)."
|
2211
2213
|
:param Mapping[str, str] system_tags: Key-value pair representing system tags' keys and values scoped to a namespace. Example: `{"bar-key": "value"}`
|
@@ -2227,6 +2229,7 @@ class GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemResult(dict):
|
|
2227
2229
|
pulumi.set(__self__, "network_security_group_ids", network_security_group_ids)
|
2228
2230
|
pulumi.set(__self__, "nlb_ip_version", nlb_ip_version)
|
2229
2231
|
pulumi.set(__self__, "reserved_ips", reserved_ips)
|
2232
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
2230
2233
|
pulumi.set(__self__, "state", state)
|
2231
2234
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
2232
2235
|
pulumi.set(__self__, "subnet_ipv6cidr", subnet_ipv6cidr)
|
@@ -2342,6 +2345,14 @@ class GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemResult(dict):
|
|
2342
2345
|
def reserved_ips(self) -> Sequence['outputs.GetNetworkLoadBalancersNetworkLoadBalancerCollectionItemReservedIpResult']:
|
2343
2346
|
return pulumi.get(self, "reserved_ips")
|
2344
2347
|
|
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
|
+
|
2345
2356
|
@property
|
2346
2357
|
@pulumi.getter
|
2347
2358
|
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=AhAX89C9ytTiOH_toYX9IKaCo-tFf3Z9D1RpHdJTo8o,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=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,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=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
|
@@ -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
|
@@ -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=PQwsKnJ6XlmhTdFZhPZUjitYz4JEW5mquWVyRKVceeA,296699
|
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=0f0GNJOElpuw3mhAwGFQpF7khAp3vUZO_nBf2w1wcz0,21014
|
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=EvfXxGtEVzjdNTgsS_-ZVNAf1XbdOkMbXwJ8eMihLLc,12829
|
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=KvzU6gnK2NafFNyMqViP7A1oS-3qaRPZGhTW3ZigW-c,62341
|
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=wB42WpLl85S3i5SDn8vwWGtjfmw5TVAPjN9IruSFyjA,621537
|
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=GmPVLvf7o8Rz-KndDEb7l1jtI0L6yWCoL1OS_le42_8,75979
|
1507
|
+
pulumi_oci/filestorage/export.py,sha256=WVSWhClrEKdqv2OU1XBSzB_U_P8yC1g_2dsaDLqc3p8,39224
|
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=Q1ZNb57yzYrj9rDZtVLHNcUVOPRq6IUQZRCuvz68vsg,66678
|
1510
|
+
pulumi_oci/filestorage/filesystem_snapshot_policy.py,sha256=2F3yCHyWc_oLc_GflvJcoKTB7VECjYg5P5DMVxPo0aU,41966
|
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=TovImswor9TzWLn79ccqEmfFfzpFhsyPHuO7PI3O17c,12657
|
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=16n3liSTk4I8I7t-Fa70gXNHM21v2eY5q-7hNuojwss,14358
|
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=fnOnBS7PNvCoDXlmkfNQM6sKXsD_RHd1ZF6ce0Ar2o4,16999
|
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=Q4Wdy-69hQzaib86oMmZOJC-Kk0nDXYwFa1erCv--co,14774
|
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=N7wPftWZc-O5iper8HkxaZs8SpwJVEsMfCqIO0YBSoo,80833
|
1526
|
+
pulumi_oci/filestorage/outbound_connector.py,sha256=gLfBwDsSjEuxjzW8cAB5ap1mvNvy9ayNhuzFMqFOQ8w,47046
|
1527
|
+
pulumi_oci/filestorage/outputs.py,sha256=8ORi38ykgGRxe-XJbf2Wd9RZNLwSYZm3gHHZtJw9wFo,192076
|
1528
|
+
pulumi_oci/filestorage/replication.py,sha256=_X1rgxGjutgnQ8OY5_nEQYo2wgV9cYOFV8Egh9wrWgA,51036
|
1529
|
+
pulumi_oci/filestorage/snapshot.py,sha256=ga_xBbnabrKx4P4pzJc04zNvcjbvtRzxeIC7QXOTK_Q,41106
|
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=Ksreta79Sp338boRukOJc5rlIkdsPSpKOnEEbAu1XcM,19952
|
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=mWbBHZF__VfTAGZmB_7S09WnEwS9eMhu-PZY5cO187I,71680
|
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=SaEh94UGHrOOyTjiyalvVAhiBuxDDLhp77gRnxBcYqQ,118724
|
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.0a1730198001.dist-info/METADATA,sha256=n90V2w1UbbtmqGqomGLre5quggRUo_GnYSfTV_fWWMc,3970
|
2913
|
+
pulumi_oci-2.14.0a1730198001.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
2914
|
+
pulumi_oci-2.14.0a1730198001.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2915
|
+
pulumi_oci-2.14.0a1730198001.dist-info/RECORD,,
|
{pulumi_oci-2.14.0a1730182164.dist-info → pulumi_oci-2.14.0a1730198001.dist-info}/top_level.txt
RENAMED
File without changes
|