pulumi-oci 2.17.0a1731653778__py3-none-any.whl → 2.18.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +40 -0
- pulumi_oci/core/_inputs.py +3 -3
- pulumi_oci/core/compute_capacity_reservation.py +7 -7
- pulumi_oci/core/get_boot_volume.py +1 -1
- pulumi_oci/core/get_volume.py +1 -1
- pulumi_oci/core/instance_pool.py +7 -7
- pulumi_oci/core/outputs.py +46 -46
- pulumi_oci/database/_inputs.py +20 -0
- pulumi_oci/database/autonomous_container_database.py +0 -7
- pulumi_oci/database/autonomous_database.py +7 -7
- pulumi_oci/database/get_autonomous_database.py +1 -1
- pulumi_oci/database/outputs.py +27 -4
- pulumi_oci/generativeai/__init__.py +16 -0
- pulumi_oci/generativeai/_inputs.py +1090 -0
- pulumi_oci/generativeai/agent_agent.py +665 -0
- pulumi_oci/generativeai/agent_agent_endpoint.py +888 -0
- pulumi_oci/generativeai/agent_data_ingestion_job.py +647 -0
- pulumi_oci/generativeai/agent_data_source.py +697 -0
- pulumi_oci/generativeai/agent_knowledge_base.py +659 -0
- pulumi_oci/generativeai/get_agent_agent.py +285 -0
- pulumi_oci/generativeai/get_agent_agent_endpoint.py +342 -0
- pulumi_oci/generativeai/get_agent_agent_endpoints.py +217 -0
- pulumi_oci/generativeai/get_agent_agents.py +195 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_job.py +286 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_job_log_content.py +117 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_jobs.py +217 -0
- pulumi_oci/generativeai/get_agent_data_source.py +286 -0
- pulumi_oci/generativeai/get_agent_data_sources.py +217 -0
- pulumi_oci/generativeai/get_agent_knowledge_base.py +272 -0
- pulumi_oci/generativeai/get_agent_knowledge_bases.py +195 -0
- pulumi_oci/generativeai/outputs.py +2840 -268
- pulumi_oci/goldengate/connection.py +1065 -78
- pulumi_oci/goldengate/deployment.py +7 -7
- pulumi_oci/goldengate/deployment_backup.py +49 -0
- pulumi_oci/goldengate/get_connection.py +288 -7
- pulumi_oci/goldengate/get_deployment.py +1 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +240 -3
- pulumi_oci/psql/_inputs.py +20 -0
- pulumi_oci/psql/db_system.py +2 -0
- pulumi_oci/psql/get_db_system_connection_detail.py +18 -4
- pulumi_oci/psql/outputs.py +77 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.17.0a1731653778.dist-info → pulumi_oci-2.18.0.dist-info}/METADATA +5 -5
- {pulumi_oci-2.17.0a1731653778.dist-info → pulumi_oci-2.18.0.dist-info}/RECORD +47 -31
- {pulumi_oci-2.17.0a1731653778.dist-info → pulumi_oci-2.18.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.17.0a1731653778.dist-info → pulumi_oci-2.18.0.dist-info}/top_level.txt +0 -0
pulumi_oci/psql/_inputs.py
CHANGED
@@ -957,6 +957,10 @@ if not MYPY:
|
|
957
957
|
"""
|
958
958
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer subnet associated with the database system.
|
959
959
|
"""
|
960
|
+
is_reader_endpoint_enabled: NotRequired[pulumi.Input[bool]]
|
961
|
+
"""
|
962
|
+
(Updatable) Specifies if the reader endpoint is enabled on the dbSystem.
|
963
|
+
"""
|
960
964
|
nsg_ids: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
961
965
|
"""
|
962
966
|
(Updatable) List of customer Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the database system.
|
@@ -972,14 +976,18 @@ elif False:
|
|
972
976
|
class DbSystemNetworkDetailsArgs:
|
973
977
|
def __init__(__self__, *,
|
974
978
|
subnet_id: pulumi.Input[str],
|
979
|
+
is_reader_endpoint_enabled: Optional[pulumi.Input[bool]] = None,
|
975
980
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
976
981
|
primary_db_endpoint_private_ip: Optional[pulumi.Input[str]] = None):
|
977
982
|
"""
|
978
983
|
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer subnet associated with the database system.
|
984
|
+
:param pulumi.Input[bool] is_reader_endpoint_enabled: (Updatable) Specifies if the reader endpoint is enabled on the dbSystem.
|
979
985
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) List of customer Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the database system.
|
980
986
|
:param pulumi.Input[str] primary_db_endpoint_private_ip: Private IP in customer subnet. The value is optional. If the IP is not provided, the IP will be chosen from the available IP addresses from the specified subnet.
|
981
987
|
"""
|
982
988
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
989
|
+
if is_reader_endpoint_enabled is not None:
|
990
|
+
pulumi.set(__self__, "is_reader_endpoint_enabled", is_reader_endpoint_enabled)
|
983
991
|
if nsg_ids is not None:
|
984
992
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
985
993
|
if primary_db_endpoint_private_ip is not None:
|
@@ -997,6 +1005,18 @@ class DbSystemNetworkDetailsArgs:
|
|
997
1005
|
def subnet_id(self, value: pulumi.Input[str]):
|
998
1006
|
pulumi.set(self, "subnet_id", value)
|
999
1007
|
|
1008
|
+
@property
|
1009
|
+
@pulumi.getter(name="isReaderEndpointEnabled")
|
1010
|
+
def is_reader_endpoint_enabled(self) -> Optional[pulumi.Input[bool]]:
|
1011
|
+
"""
|
1012
|
+
(Updatable) Specifies if the reader endpoint is enabled on the dbSystem.
|
1013
|
+
"""
|
1014
|
+
return pulumi.get(self, "is_reader_endpoint_enabled")
|
1015
|
+
|
1016
|
+
@is_reader_endpoint_enabled.setter
|
1017
|
+
def is_reader_endpoint_enabled(self, value: Optional[pulumi.Input[bool]]):
|
1018
|
+
pulumi.set(self, "is_reader_endpoint_enabled", value)
|
1019
|
+
|
1000
1020
|
@property
|
1001
1021
|
@pulumi.getter(name="nsgIds")
|
1002
1022
|
def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
pulumi_oci/psql/db_system.py
CHANGED
@@ -848,6 +848,7 @@ class DbSystem(pulumi.CustomResource):
|
|
848
848
|
display_name=db_system_display_name,
|
849
849
|
network_details={
|
850
850
|
"subnet_id": test_subnet["id"],
|
851
|
+
"is_reader_endpoint_enabled": db_system_network_details_is_reader_endpoint_enabled,
|
851
852
|
"nsg_ids": db_system_network_details_nsg_ids,
|
852
853
|
"primary_db_endpoint_private_ip": db_system_network_details_primary_db_endpoint_private_ip,
|
853
854
|
},
|
@@ -964,6 +965,7 @@ class DbSystem(pulumi.CustomResource):
|
|
964
965
|
display_name=db_system_display_name,
|
965
966
|
network_details={
|
966
967
|
"subnet_id": test_subnet["id"],
|
968
|
+
"is_reader_endpoint_enabled": db_system_network_details_is_reader_endpoint_enabled,
|
967
969
|
"nsg_ids": db_system_network_details_nsg_ids,
|
968
970
|
"primary_db_endpoint_private_ip": db_system_network_details_primary_db_endpoint_private_ip,
|
969
971
|
},
|
@@ -27,7 +27,7 @@ class GetDbSystemConnectionDetailResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getDbSystemConnectionDetail.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, ca_certificate=None, db_system_id=None, id=None, instance_endpoints=None, primary_db_endpoints=None):
|
30
|
+
def __init__(__self__, ca_certificate=None, db_system_id=None, id=None, instance_endpoints=None, primary_db_endpoints=None, reader_endpoints=None):
|
31
31
|
if ca_certificate and not isinstance(ca_certificate, str):
|
32
32
|
raise TypeError("Expected argument 'ca_certificate' to be a str")
|
33
33
|
pulumi.set(__self__, "ca_certificate", ca_certificate)
|
@@ -43,6 +43,9 @@ class GetDbSystemConnectionDetailResult:
|
|
43
43
|
if primary_db_endpoints and not isinstance(primary_db_endpoints, list):
|
44
44
|
raise TypeError("Expected argument 'primary_db_endpoints' to be a list")
|
45
45
|
pulumi.set(__self__, "primary_db_endpoints", primary_db_endpoints)
|
46
|
+
if reader_endpoints and not isinstance(reader_endpoints, list):
|
47
|
+
raise TypeError("Expected argument 'reader_endpoints' to be a list")
|
48
|
+
pulumi.set(__self__, "reader_endpoints", reader_endpoints)
|
46
49
|
|
47
50
|
@property
|
48
51
|
@pulumi.getter(name="caCertificate")
|
@@ -81,6 +84,14 @@ class GetDbSystemConnectionDetailResult:
|
|
81
84
|
"""
|
82
85
|
return pulumi.get(self, "primary_db_endpoints")
|
83
86
|
|
87
|
+
@property
|
88
|
+
@pulumi.getter(name="readerEndpoints")
|
89
|
+
def reader_endpoints(self) -> Sequence['outputs.GetDbSystemConnectionDetailReaderEndpointResult']:
|
90
|
+
"""
|
91
|
+
Information about the database instance node endpoint.
|
92
|
+
"""
|
93
|
+
return pulumi.get(self, "reader_endpoints")
|
94
|
+
|
84
95
|
|
85
96
|
class AwaitableGetDbSystemConnectionDetailResult(GetDbSystemConnectionDetailResult):
|
86
97
|
# pylint: disable=using-constant-test
|
@@ -92,7 +103,8 @@ class AwaitableGetDbSystemConnectionDetailResult(GetDbSystemConnectionDetailResu
|
|
92
103
|
db_system_id=self.db_system_id,
|
93
104
|
id=self.id,
|
94
105
|
instance_endpoints=self.instance_endpoints,
|
95
|
-
primary_db_endpoints=self.primary_db_endpoints
|
106
|
+
primary_db_endpoints=self.primary_db_endpoints,
|
107
|
+
reader_endpoints=self.reader_endpoints)
|
96
108
|
|
97
109
|
|
98
110
|
def get_db_system_connection_detail(db_system_id: Optional[str] = None,
|
@@ -124,7 +136,8 @@ def get_db_system_connection_detail(db_system_id: Optional[str] = None,
|
|
124
136
|
db_system_id=pulumi.get(__ret__, 'db_system_id'),
|
125
137
|
id=pulumi.get(__ret__, 'id'),
|
126
138
|
instance_endpoints=pulumi.get(__ret__, 'instance_endpoints'),
|
127
|
-
primary_db_endpoints=pulumi.get(__ret__, 'primary_db_endpoints')
|
139
|
+
primary_db_endpoints=pulumi.get(__ret__, 'primary_db_endpoints'),
|
140
|
+
reader_endpoints=pulumi.get(__ret__, 'reader_endpoints'))
|
128
141
|
def get_db_system_connection_detail_output(db_system_id: Optional[pulumi.Input[str]] = None,
|
129
142
|
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDbSystemConnectionDetailResult]:
|
130
143
|
"""
|
@@ -153,4 +166,5 @@ def get_db_system_connection_detail_output(db_system_id: Optional[pulumi.Input[s
|
|
153
166
|
db_system_id=pulumi.get(__response__, 'db_system_id'),
|
154
167
|
id=pulumi.get(__response__, 'id'),
|
155
168
|
instance_endpoints=pulumi.get(__response__, 'instance_endpoints'),
|
156
|
-
primary_db_endpoints=pulumi.get(__response__, 'primary_db_endpoints')
|
169
|
+
primary_db_endpoints=pulumi.get(__response__, 'primary_db_endpoints'),
|
170
|
+
reader_endpoints=pulumi.get(__response__, 'reader_endpoints')))
|
pulumi_oci/psql/outputs.py
CHANGED
@@ -50,6 +50,7 @@ __all__ = [
|
|
50
50
|
'GetDbSystemConnectionDetailInstanceEndpointResult',
|
51
51
|
'GetDbSystemConnectionDetailInstanceEndpointEndpointResult',
|
52
52
|
'GetDbSystemConnectionDetailPrimaryDbEndpointResult',
|
53
|
+
'GetDbSystemConnectionDetailReaderEndpointResult',
|
53
54
|
'GetDbSystemCredentialResult',
|
54
55
|
'GetDbSystemCredentialPasswordDetailResult',
|
55
56
|
'GetDbSystemInstanceResult',
|
@@ -816,6 +817,8 @@ class DbSystemNetworkDetails(dict):
|
|
816
817
|
suggest = None
|
817
818
|
if key == "subnetId":
|
818
819
|
suggest = "subnet_id"
|
820
|
+
elif key == "isReaderEndpointEnabled":
|
821
|
+
suggest = "is_reader_endpoint_enabled"
|
819
822
|
elif key == "nsgIds":
|
820
823
|
suggest = "nsg_ids"
|
821
824
|
elif key == "primaryDbEndpointPrivateIp":
|
@@ -834,14 +837,18 @@ class DbSystemNetworkDetails(dict):
|
|
834
837
|
|
835
838
|
def __init__(__self__, *,
|
836
839
|
subnet_id: str,
|
840
|
+
is_reader_endpoint_enabled: Optional[bool] = None,
|
837
841
|
nsg_ids: Optional[Sequence[str]] = None,
|
838
842
|
primary_db_endpoint_private_ip: Optional[str] = None):
|
839
843
|
"""
|
840
844
|
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer subnet associated with the database system.
|
845
|
+
:param bool is_reader_endpoint_enabled: (Updatable) Specifies if the reader endpoint is enabled on the dbSystem.
|
841
846
|
:param Sequence[str] nsg_ids: (Updatable) List of customer Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the database system.
|
842
847
|
:param str primary_db_endpoint_private_ip: Private IP in customer subnet. The value is optional. If the IP is not provided, the IP will be chosen from the available IP addresses from the specified subnet.
|
843
848
|
"""
|
844
849
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
850
|
+
if is_reader_endpoint_enabled is not None:
|
851
|
+
pulumi.set(__self__, "is_reader_endpoint_enabled", is_reader_endpoint_enabled)
|
845
852
|
if nsg_ids is not None:
|
846
853
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
847
854
|
if primary_db_endpoint_private_ip is not None:
|
@@ -855,6 +862,14 @@ class DbSystemNetworkDetails(dict):
|
|
855
862
|
"""
|
856
863
|
return pulumi.get(self, "subnet_id")
|
857
864
|
|
865
|
+
@property
|
866
|
+
@pulumi.getter(name="isReaderEndpointEnabled")
|
867
|
+
def is_reader_endpoint_enabled(self) -> Optional[bool]:
|
868
|
+
"""
|
869
|
+
(Updatable) Specifies if the reader endpoint is enabled on the dbSystem.
|
870
|
+
"""
|
871
|
+
return pulumi.get(self, "is_reader_endpoint_enabled")
|
872
|
+
|
858
873
|
@property
|
859
874
|
@pulumi.getter(name="nsgIds")
|
860
875
|
def nsg_ids(self) -> Optional[Sequence[str]]:
|
@@ -2070,6 +2085,46 @@ class GetDbSystemConnectionDetailPrimaryDbEndpointResult(dict):
|
|
2070
2085
|
return pulumi.get(self, "port")
|
2071
2086
|
|
2072
2087
|
|
2088
|
+
@pulumi.output_type
|
2089
|
+
class GetDbSystemConnectionDetailReaderEndpointResult(dict):
|
2090
|
+
def __init__(__self__, *,
|
2091
|
+
fqdn: str,
|
2092
|
+
ip_address: str,
|
2093
|
+
port: int):
|
2094
|
+
"""
|
2095
|
+
:param str fqdn: The FQDN of the endpoint.
|
2096
|
+
:param str ip_address: The IP address of the endpoint.
|
2097
|
+
:param int port: The port address of the endpoint.
|
2098
|
+
"""
|
2099
|
+
pulumi.set(__self__, "fqdn", fqdn)
|
2100
|
+
pulumi.set(__self__, "ip_address", ip_address)
|
2101
|
+
pulumi.set(__self__, "port", port)
|
2102
|
+
|
2103
|
+
@property
|
2104
|
+
@pulumi.getter
|
2105
|
+
def fqdn(self) -> str:
|
2106
|
+
"""
|
2107
|
+
The FQDN of the endpoint.
|
2108
|
+
"""
|
2109
|
+
return pulumi.get(self, "fqdn")
|
2110
|
+
|
2111
|
+
@property
|
2112
|
+
@pulumi.getter(name="ipAddress")
|
2113
|
+
def ip_address(self) -> str:
|
2114
|
+
"""
|
2115
|
+
The IP address of the endpoint.
|
2116
|
+
"""
|
2117
|
+
return pulumi.get(self, "ip_address")
|
2118
|
+
|
2119
|
+
@property
|
2120
|
+
@pulumi.getter
|
2121
|
+
def port(self) -> int:
|
2122
|
+
"""
|
2123
|
+
The port address of the endpoint.
|
2124
|
+
"""
|
2125
|
+
return pulumi.get(self, "port")
|
2126
|
+
|
2127
|
+
|
2073
2128
|
@pulumi.output_type
|
2074
2129
|
class GetDbSystemCredentialResult(dict):
|
2075
2130
|
def __init__(__self__, *,
|
@@ -2347,18 +2402,29 @@ class GetDbSystemManagementPolicyBackupPolicyResult(dict):
|
|
2347
2402
|
@pulumi.output_type
|
2348
2403
|
class GetDbSystemNetworkDetailResult(dict):
|
2349
2404
|
def __init__(__self__, *,
|
2405
|
+
is_reader_endpoint_enabled: bool,
|
2350
2406
|
nsg_ids: Sequence[str],
|
2351
2407
|
primary_db_endpoint_private_ip: str,
|
2352
2408
|
subnet_id: str):
|
2353
2409
|
"""
|
2410
|
+
:param bool is_reader_endpoint_enabled: Specifies if the reader endpoint is enabled on the dbSystem.
|
2354
2411
|
:param Sequence[str] nsg_ids: List of customer Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the database system.
|
2355
2412
|
:param str primary_db_endpoint_private_ip: Private IP in customer subnet. The value is optional. If the IP is not provided, the IP will be chosen from the available IP addresses from the specified subnet.
|
2356
2413
|
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer subnet associated with the database system.
|
2357
2414
|
"""
|
2415
|
+
pulumi.set(__self__, "is_reader_endpoint_enabled", is_reader_endpoint_enabled)
|
2358
2416
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
2359
2417
|
pulumi.set(__self__, "primary_db_endpoint_private_ip", primary_db_endpoint_private_ip)
|
2360
2418
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
2361
2419
|
|
2420
|
+
@property
|
2421
|
+
@pulumi.getter(name="isReaderEndpointEnabled")
|
2422
|
+
def is_reader_endpoint_enabled(self) -> bool:
|
2423
|
+
"""
|
2424
|
+
Specifies if the reader endpoint is enabled on the dbSystem.
|
2425
|
+
"""
|
2426
|
+
return pulumi.get(self, "is_reader_endpoint_enabled")
|
2427
|
+
|
2362
2428
|
@property
|
2363
2429
|
@pulumi.getter(name="nsgIds")
|
2364
2430
|
def nsg_ids(self) -> Sequence[str]:
|
@@ -3110,18 +3176,29 @@ class GetDbSystemsDbSystemCollectionItemManagementPolicyBackupPolicyResult(dict)
|
|
3110
3176
|
@pulumi.output_type
|
3111
3177
|
class GetDbSystemsDbSystemCollectionItemNetworkDetailResult(dict):
|
3112
3178
|
def __init__(__self__, *,
|
3179
|
+
is_reader_endpoint_enabled: bool,
|
3113
3180
|
nsg_ids: Sequence[str],
|
3114
3181
|
primary_db_endpoint_private_ip: str,
|
3115
3182
|
subnet_id: str):
|
3116
3183
|
"""
|
3184
|
+
:param bool is_reader_endpoint_enabled: Specifies if the reader endpoint is enabled on the dbSystem.
|
3117
3185
|
:param Sequence[str] nsg_ids: List of customer Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with the database system.
|
3118
3186
|
:param str primary_db_endpoint_private_ip: Private IP in customer subnet. The value is optional. If the IP is not provided, the IP will be chosen from the available IP addresses from the specified subnet.
|
3119
3187
|
:param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the customer subnet associated with the database system.
|
3120
3188
|
"""
|
3189
|
+
pulumi.set(__self__, "is_reader_endpoint_enabled", is_reader_endpoint_enabled)
|
3121
3190
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
3122
3191
|
pulumi.set(__self__, "primary_db_endpoint_private_ip", primary_db_endpoint_private_ip)
|
3123
3192
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
3124
3193
|
|
3194
|
+
@property
|
3195
|
+
@pulumi.getter(name="isReaderEndpointEnabled")
|
3196
|
+
def is_reader_endpoint_enabled(self) -> bool:
|
3197
|
+
"""
|
3198
|
+
Specifies if the reader endpoint is enabled on the dbSystem.
|
3199
|
+
"""
|
3200
|
+
return pulumi.get(self, "is_reader_endpoint_enabled")
|
3201
|
+
|
3125
3202
|
@property
|
3126
3203
|
@pulumi.getter(name="nsgIds")
|
3127
3204
|
def nsg_ids(self) -> Sequence[str]:
|
pulumi_oci/pulumi-plugin.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pulumi_oci
|
3
|
-
Version: 2.
|
3
|
+
Version: 2.18.0
|
4
4
|
Summary: A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.
|
5
5
|
License: Apache-2.0
|
6
6
|
Project-URL: Homepage, https://www.pulumi.com
|
@@ -8,10 +8,10 @@ Project-URL: Repository, https://github.com/pulumi/pulumi-oci
|
|
8
8
|
Keywords: pulumi,oci,oracle,category/cloud
|
9
9
|
Requires-Python: >=3.8
|
10
10
|
Description-Content-Type: text/markdown
|
11
|
-
Requires-Dist: parver
|
12
|
-
Requires-Dist: pulumi
|
13
|
-
Requires-Dist: semver
|
14
|
-
Requires-Dist: typing-extensions
|
11
|
+
Requires-Dist: parver>=0.2.1
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.136.0
|
13
|
+
Requires-Dist: semver>=2.8.1
|
14
|
+
Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
15
15
|
|
16
16
|
# Oracle Cloud Infrastructure Resource Provider
|
17
17
|
|
@@ -1,7 +1,7 @@
|
|
1
|
-
pulumi_oci/__init__.py,sha256=
|
1
|
+
pulumi_oci/__init__.py,sha256=REECRQRrkwfxqAJzBm4qanFJFYJFnOB9Vwht9Q1VJ0I,171917
|
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=I6-UFQCyjj23Gt50dOkR3pCrppGv-HSU1OC8ZSP4uz4,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
|
@@ -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=DLRe4T05YYoNpbMSmK369zf4V5x1wzNIjSARwkiO5vg,1209726
|
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
|
@@ -454,7 +454,7 @@ pulumi_oci/core/boot_volume_backup.py,sha256=g30NOU8Ys_ecJeUvAldR2lSjze1Hs3VJyB0
|
|
454
454
|
pulumi_oci/core/capture_filter.py,sha256=ZJyuX7HfgFW-Ff4AH2wfaiqZLIPHp08PzeA2ziQauCM,41556
|
455
455
|
pulumi_oci/core/cluster_network.py,sha256=HPj_UqyE-uT2jbYLA91bAe24isZLGywnJBl48awAl2U,45499
|
456
456
|
pulumi_oci/core/compute_capacity_report.py,sha256=W491LXEhLyJRDYVZnEazve7Z0DOHAJt4TYF1LoNBw4g,17992
|
457
|
-
pulumi_oci/core/compute_capacity_reservation.py,sha256=
|
457
|
+
pulumi_oci/core/compute_capacity_reservation.py,sha256=9dkUYZld3UcLoisfpykqQ9ro-OanV3ooepnE0AhGw4Q,45848
|
458
458
|
pulumi_oci/core/compute_capacity_topology.py,sha256=BIA9893sTYtmIuIM7ZipZBdqFL4uD_cfMZ88l07REQw,31937
|
459
459
|
pulumi_oci/core/compute_cluster.py,sha256=WjatGY6yTbgcIAMKw2ywMh2GFddVBU03P_oPhwh9dyc,27194
|
460
460
|
pulumi_oci/core/compute_image_capability_schema.py,sha256=gklrzmC543ttqjWl6eWYClOtsFZyeOXaI7gWxhQ3E-0,29080
|
@@ -482,7 +482,7 @@ pulumi_oci/core/get_app_catalog_listings.py,sha256=WOSB9GR__dEOibxxkMJooXz47e3mG
|
|
482
482
|
pulumi_oci/core/get_app_catalog_subscriptions.py,sha256=f55dt_EXSPDnhJz6WzEROxJKK1pVnIBjLP7ZaWDLM7Q,7325
|
483
483
|
pulumi_oci/core/get_block_volume_replica.py,sha256=iLi8GD_t5Y2RSpGB4-XU0bhgyiTCHsaEn0op_CMDfZs,12818
|
484
484
|
pulumi_oci/core/get_block_volume_replicas.py,sha256=hPq3MfcsrvBDixROosZMTenyZSF2pOGevKJvRf2QMVo,11278
|
485
|
-
pulumi_oci/core/get_boot_volume.py,sha256=
|
485
|
+
pulumi_oci/core/get_boot_volume.py,sha256=Up7Dd5fTZmF6irlq80nbr2ZKFvvDIBr4mdpuZRKSvpA,20667
|
486
486
|
pulumi_oci/core/get_boot_volume_attachments.py,sha256=cFNydHrIBzofV4qJWj9nN_cihSz-6cMoPeSfhh8fRqo,9958
|
487
487
|
pulumi_oci/core/get_boot_volume_backup.py,sha256=uWBqTdJt5840raFrjPdWNmNvnY9CRLLGPx3a6uGdm-o,17034
|
488
488
|
pulumi_oci/core/get_boot_volume_backups.py,sha256=vXTz_Shb5deeVDc8gb_DN2x2J0g1775j7ZML5lD7MRs,11015
|
@@ -616,7 +616,7 @@ pulumi_oci/core/get_vlan.py,sha256=hImcsCYVv2FKcwi9p2iFbqPjG8RrZu-ZOWxNs3ArFag,1
|
|
616
616
|
pulumi_oci/core/get_vlans.py,sha256=raYSrH58iCyYDKBw1JMNtWMObQ0encO1n-kUYURq1kU,8559
|
617
617
|
pulumi_oci/core/get_vnic.py,sha256=JyZYl3CyYPhF7g2hScy1DHgqBg8JmYQBu8FMO587UHw,17452
|
618
618
|
pulumi_oci/core/get_vnic_attachments.py,sha256=qnt6o5lOjIer9gG84nieXFpr8YlZVGLOnlJtr__1y_8,9448
|
619
|
-
pulumi_oci/core/get_volume.py,sha256=
|
619
|
+
pulumi_oci/core/get_volume.py,sha256=tSsLWwcx14-v4RIo1vajfKl1JtMqxJE4Ug8N1G53tzU,20838
|
620
620
|
pulumi_oci/core/get_volume_attachments.py,sha256=zqxpCkTUuWaC8Es8cBJ8mgcy62Eo912sZ6lV5PMts4w,9991
|
621
621
|
pulumi_oci/core/get_volume_backup_policies.py,sha256=0rQSn8QVikTOteHcpbppZz9azMd8WP9R4NX5XfFEbAI,6620
|
622
622
|
pulumi_oci/core/get_volume_backup_policy_assignments.py,sha256=wnmi6cLUtSrow_8AcRwNykVKP7HbOGayXnUrjh29nhs,6733
|
@@ -633,7 +633,7 @@ pulumi_oci/core/instance.py,sha256=unCQ_o-8IIv-cym-1aXZ0a_LCm916iTSJ1jpW_21WFg,1
|
|
633
633
|
pulumi_oci/core/instance_configuration.py,sha256=_Q58FK9Y3kVQcvyJtimgjXFv3hzBB9iC18ZEKhL7P1I,111126
|
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=QZ0uVDIhAVc5KpZLXCSLZqgEtCfM3SfGU_Ar5KipWqg,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=89j2hYRMfmWP8BK0esUb5A_XWG8eIJoDzompYQoEILk,2489153
|
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
|
@@ -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=1ImW4rSj7tXWyVEZ64g0F9MxYYAGlwIk9G4tAlvEfik,1016938
|
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=_O44mxmyvUwPPfqzPRpy3FLH4F-p2LompF_0M0Mvsik,162125
|
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=6TRXZRssao2kPTWyNO4sL5Xb3mXNVGkz9IWBOo_t2Xc,485322
|
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
|
@@ -733,7 +733,7 @@ pulumi_oci/database/get_autonomous_container_database_resource_usage.py,sha256=k
|
|
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=I3xG_bCFXMF_MxuriNojM-iXSUeuqMSxNbPG7qQam9c,122088
|
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
|
@@ -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=UxUYmsRMF6BDFVv4UTufAsXvptY6jLZF4F2FytKwmCo,2416849
|
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
|
@@ -1618,10 +1618,26 @@ pulumi_oci/fusionapps/fusion_environment_family.py,sha256=6acoZCYvjNNQfsubJiN3bg
|
|
1618
1618
|
pulumi_oci/fusionapps/fusion_environment_refresh_activity.py,sha256=okLJyeAVNWMBFcfihLE9_Tdx31ipukHnEeE4cnhtOos,28687
|
1619
1619
|
pulumi_oci/fusionapps/fusion_environment_service_attachment.py,sha256=I25MvArnZ1nhCtkF3Do4-JwP2BGEb-UAlBnuuNPSCkA,27462
|
1620
1620
|
pulumi_oci/fusionapps/outputs.py,sha256=9cf4quH4pSEY0ElFD-K_K2Zqtl8v33btXNHUobwrz3Y,27503
|
1621
|
-
pulumi_oci/generativeai/__init__.py,sha256=
|
1622
|
-
pulumi_oci/generativeai/_inputs.py,sha256=
|
1621
|
+
pulumi_oci/generativeai/__init__.py,sha256=k8mS2cE9rGUgxyyG0LKA553jI845SWRwMRJ7icgwUyI,1201
|
1622
|
+
pulumi_oci/generativeai/_inputs.py,sha256=lM4I0666SJCUbFu4Mve1R4JvuPRkDnGAJ3rBKrkiHWY,71154
|
1623
|
+
pulumi_oci/generativeai/agent_agent.py,sha256=HKk1PemuNDeodPsSXhteMY-OvDvQu3_ORzGwv7zB1lo,35124
|
1624
|
+
pulumi_oci/generativeai/agent_agent_endpoint.py,sha256=veddW9LLJpznsRmUYi8kvXEgQpjf8ZCSGcwHyWe1kTc,48160
|
1625
|
+
pulumi_oci/generativeai/agent_data_ingestion_job.py,sha256=Dc1PJGYZxVVXxwYeV_--x6J3qIulDJltgsijuFt7ZO4,34760
|
1626
|
+
pulumi_oci/generativeai/agent_data_source.py,sha256=CPWFp2nznlGpifLJQiuGcpfK7xjI5l9swHj8kEyWZIk,36864
|
1627
|
+
pulumi_oci/generativeai/agent_knowledge_base.py,sha256=CJXrWGskoEKVUCErov7JpHpetDnoNAG0TU_i8q9lWsk,35076
|
1623
1628
|
pulumi_oci/generativeai/dedicated_ai_cluster.py,sha256=fl6QPNouP1Bn61cbguNuNyaMOETAjnnMUBUaOgQ8gEI,39837
|
1624
1629
|
pulumi_oci/generativeai/endpoint.py,sha256=wHQrK6vhbiPhCgt28XfA1Ys02uh5hWrYPXKo9xqBQAs,37632
|
1630
|
+
pulumi_oci/generativeai/get_agent_agent.py,sha256=LxrT1CBRO8C_dO9QTzJyo3GEUATPxAVom41j8Vs5s38,12328
|
1631
|
+
pulumi_oci/generativeai/get_agent_agent_endpoint.py,sha256=6211m75mOEzG7ECZnvFyKqLN_EydrM0atqDY_rtmInQ,15924
|
1632
|
+
pulumi_oci/generativeai/get_agent_agent_endpoints.py,sha256=6sZbV_b5wQZUCjBsvMvzKgyvAZNY82Pi21zbAlz16co,9643
|
1633
|
+
pulumi_oci/generativeai/get_agent_agents.py,sha256=ePhe1Yf5h34aynoUMMceVI617rSjCI_IQNlcn56g5w4,7974
|
1634
|
+
pulumi_oci/generativeai/get_agent_data_ingestion_job.py,sha256=qxauLVvAbKdsS8LkcdxkhLwepb7PDUw_dyUmFW9tDz8,13405
|
1635
|
+
pulumi_oci/generativeai/get_agent_data_ingestion_job_log_content.py,sha256=rrPVHd80D5R9q0iJGQcF7E0JlmSNZJfxPxrUeE8glUE,5068
|
1636
|
+
pulumi_oci/generativeai/get_agent_data_ingestion_jobs.py,sha256=VDDW6nS5VSvwZKsPGFMomXy-b4gvflfqplYlWm9wFBs,10134
|
1637
|
+
pulumi_oci/generativeai/get_agent_data_source.py,sha256=Qsp_DuLYc2cqHUNemJxlzcKUkLj9CxvoJSVOW5xvfV0,12783
|
1638
|
+
pulumi_oci/generativeai/get_agent_data_sources.py,sha256=y6Iw_tkSRwscx1QinyVgLWEIpaqFLf19_8HLmjBmKGw,9768
|
1639
|
+
pulumi_oci/generativeai/get_agent_knowledge_base.py,sha256=_obQ-BR9dU5x7on9yanRoduGhZULpKIDNKrlowSOJlg,12155
|
1640
|
+
pulumi_oci/generativeai/get_agent_knowledge_bases.py,sha256=DBbb_tbfgjJMB9kzgV2JBX3OTfIAa4kfKjchR3T3xQU,8550
|
1625
1641
|
pulumi_oci/generativeai/get_dedicated_ai_cluster.py,sha256=-29PduG1tuiyHGl5Dll8QtUmVe8GnJhgE18PW5biimU,11824
|
1626
1642
|
pulumi_oci/generativeai/get_dedicated_ai_clusters.py,sha256=_EmbdHtgmZfEyGQGPYG5vvzAaytog8CtPFBsKKOWU-4,8957
|
1627
1643
|
pulumi_oci/generativeai/get_endpoint.py,sha256=o0lZMwRVEMBs5P2drXq5WpnetT_f6tPNFRiCobBwNps,11470
|
@@ -1629,7 +1645,7 @@ pulumi_oci/generativeai/get_endpoints.py,sha256=-X2gQw4MLumYYkWIN9qdk8BYvZ2-L5N_
|
|
1629
1645
|
pulumi_oci/generativeai/get_model.py,sha256=mmLG-EXBRKdZKbo_VXWAL1qWPMf3o58-L8xxOh2j_l8,15574
|
1630
1646
|
pulumi_oci/generativeai/get_models.py,sha256=lOXURjdcmobWMkkspy_Qp91k9bIsR8VdtNXgzkIYODQ,10058
|
1631
1647
|
pulumi_oci/generativeai/model.py,sha256=VDrNYqRb5DEXieOI17U3hMGwollSrF2CQO83VHJjlog,42355
|
1632
|
-
pulumi_oci/generativeai/outputs.py,sha256=
|
1648
|
+
pulumi_oci/generativeai/outputs.py,sha256=80E_CWnpYV49cnshb9sx1n4IdzFGGYgFaXTcaR9UCa4,178234
|
1633
1649
|
pulumi_oci/genericartifactscontent/__init__.py,sha256=hgIxlRzoszlQaqeflk8QurTNj87qkBbx16jZXw0p8Dk,382
|
1634
1650
|
pulumi_oci/genericartifactscontent/artifact_by_path.py,sha256=4HVZMU4EHAXvvDnApcAqd6n2t3zWoaSdRKDOL-NzErs,31961
|
1635
1651
|
pulumi_oci/genericartifactscontent/get_artifact_by_path.py,sha256=iKOhgb-_Y9_jxriAedycXJPn4q2BwaGn2fOIdtCP4lo,11494
|
@@ -1645,20 +1661,20 @@ pulumi_oci/globallydistributeddatabase/private_endpoint.py,sha256=d6ZYahta1qdr0z
|
|
1645
1661
|
pulumi_oci/globallydistributeddatabase/sharded_database.py,sha256=YnILiz4cVq7dBZ0pIxbbh_g6VWkjr_vI8Sw7qbnHGno,123043
|
1646
1662
|
pulumi_oci/goldengate/__init__.py,sha256=kO2QNJJrjzwTVZ-embsBBEp0opCxB2QdHLcz_M6790E,1374
|
1647
1663
|
pulumi_oci/goldengate/_inputs.py,sha256=MVjcViZUXX2Y0oBLqJRNrX8BL9H7w5RlQqZDylsSuTQ,72569
|
1648
|
-
pulumi_oci/goldengate/connection.py,sha256=
|
1664
|
+
pulumi_oci/goldengate/connection.py,sha256=HntoVT-3xpifbrKQ_eCLj2WJ0iecyvc_IOGh7tIs-QY,325869
|
1649
1665
|
pulumi_oci/goldengate/connection_assignment.py,sha256=XNtTILpAQjfNSYn6csr98gQIDCUXMyyv4kf72q_D7ck,20881
|
1650
1666
|
pulumi_oci/goldengate/database_registration.py,sha256=3yI6iEmAO6H-kkjqutqxizE79f6cEvdSpl1MiTYP1Fc,69571
|
1651
|
-
pulumi_oci/goldengate/deployment.py,sha256=
|
1652
|
-
pulumi_oci/goldengate/deployment_backup.py,sha256=
|
1667
|
+
pulumi_oci/goldengate/deployment.py,sha256=G4cxU49Rsz--LLmihTcGwetM6nQbtwbxSnQ3QHfcWwU,99894
|
1668
|
+
pulumi_oci/goldengate/deployment_backup.py,sha256=s4gsSJslAXPaALDEw9XtOpo1NiMuEhBzpF2iNoj9sdo,51201
|
1653
1669
|
pulumi_oci/goldengate/deployment_certificate.py,sha256=BdJUzPc09T0OLb6KtJEqhtqzaIXFejWueRXkzlQShw4,35680
|
1654
|
-
pulumi_oci/goldengate/get_connection.py,sha256=
|
1670
|
+
pulumi_oci/goldengate/get_connection.py,sha256=b6173_0KPAZmi7A88m8vXM87UTUt6-EIl2U-_ZGLSO8,79587
|
1655
1671
|
pulumi_oci/goldengate/get_connection_assignment.py,sha256=Enf2HbGmnLh_8GqMRobApi7W-LDuC7ErOiyE4srJ5wQ,9873
|
1656
1672
|
pulumi_oci/goldengate/get_connection_assignments.py,sha256=1U9449ttTqL_3RiL90_wpYCkZmW5zVXQpm6U4uXbEC4,11470
|
1657
1673
|
pulumi_oci/goldengate/get_connections.py,sha256=oTKqTVeP7CWdDjCVgmmdPjBYB5vGPLWIp_2q3Rr90OY,14962
|
1658
1674
|
pulumi_oci/goldengate/get_database_registration.py,sha256=ZpKpTqJfuKsTsw-lYn8eOeGYTHtY8e_grbF93tCQfyU,21488
|
1659
1675
|
pulumi_oci/goldengate/get_database_registrations.py,sha256=xw37kO8DcEqWI3obcoxNIjtdeCzncq44ogaiDD8XMI4,9177
|
1660
|
-
pulumi_oci/goldengate/get_deployment.py,sha256=
|
1661
|
-
pulumi_oci/goldengate/get_deployment_backup.py,sha256=
|
1676
|
+
pulumi_oci/goldengate/get_deployment.py,sha256=vUIXf3YiGpFCQYc1y3wXgdFGIWE0JTsPOpDxmKSNkx0,36210
|
1677
|
+
pulumi_oci/goldengate/get_deployment_backup.py,sha256=nQ30InZhOent5nnf4GwZVBb5vDeIwJ4vJ_pB9QMLme4,19349
|
1662
1678
|
pulumi_oci/goldengate/get_deployment_backups.py,sha256=d1cuiQ2jiE8tz3sb3CebYhQElKBI6qoMLMP29-I89h8,10152
|
1663
1679
|
pulumi_oci/goldengate/get_deployment_certificate.py,sha256=YqAbDz_HQokZ7REE-2i7b5CLFBoumbtk73jWlaZOtfw,17022
|
1664
1680
|
pulumi_oci/goldengate/get_deployment_certificates.py,sha256=UMC7bvoB16d0Xbfe3dT7mjLwkFZb581L6G2MzjFMCkg,7102
|
@@ -1675,7 +1691,7 @@ pulumi_oci/goldengate/get_trail_file.py,sha256=MdgF6u4zu3w5AJWwQj2nlrQecCGvnQlAb
|
|
1675
1691
|
pulumi_oci/goldengate/get_trail_files.py,sha256=rmCUVoxZ6Zj9hK0oxvV_IUXQQfEfelwxvOqiTsi9u80,7906
|
1676
1692
|
pulumi_oci/goldengate/get_trail_sequence.py,sha256=SWod0DdvXpv4mIzKYtlvkAByLWuLjVkxucAPZ13nooA,8556
|
1677
1693
|
pulumi_oci/goldengate/get_trail_sequences.py,sha256=fCzy7BV16EASa9CgbMh0Nu7lbp_5NCaZN_k4Zt7WI3U,9206
|
1678
|
-
pulumi_oci/goldengate/outputs.py,sha256=
|
1694
|
+
pulumi_oci/goldengate/outputs.py,sha256=BpzY-BemgqrbHLI25chYLyaQZvAaHEBurawoeFhVK-0,301093
|
1679
1695
|
pulumi_oci/healthchecks/__init__.py,sha256=PJnzYouMBWUvQ3Du18Ga3ztCAO2ekzXs2E8fPG4C0XU,662
|
1680
1696
|
pulumi_oci/healthchecks/_inputs.py,sha256=ak61T7VVp0CrgPcfw-62NcEb54Orb3-QC68cVDQkbew,7330
|
1681
1697
|
pulumi_oci/healthchecks/get_http_monitor.py,sha256=BIa6H-w7MxuxkoMh-53MhwSKkE_5tbetIt9Q9rr8lMw,14419
|
@@ -2634,22 +2650,22 @@ pulumi_oci/osubusage/get_computed_usage.py,sha256=F91qtuG2spcmMRm3wsY5cPm3Sl1eL7
|
|
2634
2650
|
pulumi_oci/osubusage/get_computed_usages.py,sha256=g6nzACbnf5KqFKrMGokKVRodgWoqzq7ghyNfkU7Q4PI,11593
|
2635
2651
|
pulumi_oci/osubusage/outputs.py,sha256=b0BicdDMUgAaCwxn1gVkljAdezDCeEqVYmv35oFiKo4,37995
|
2636
2652
|
pulumi_oci/psql/__init__.py,sha256=Ze9Vw0SqWLlOMonve0kvQypQH1rN57OusxmHbnPZ2nk,774
|
2637
|
-
pulumi_oci/psql/_inputs.py,sha256=
|
2653
|
+
pulumi_oci/psql/_inputs.py,sha256=ZpK0437K2BUIDFUtqpsmjVExPrJTdivx940e__oIpu8,62304
|
2638
2654
|
pulumi_oci/psql/backup.py,sha256=eXs-kZ1EnG8LfqKDfCNGuyeRH8Pc6b9OChfG2lEpIkk,38502
|
2639
2655
|
pulumi_oci/psql/configuration.py,sha256=V7uoXpRd59RIgpXEy-K6Zpp6L1rjvGFs8GOrPDGpYuk,47119
|
2640
|
-
pulumi_oci/psql/db_system.py,sha256=
|
2656
|
+
pulumi_oci/psql/db_system.py,sha256=duyeZ49DPvY_aqRSIlUA1STVI2OK06ALi6NM66BE8ak,78269
|
2641
2657
|
pulumi_oci/psql/get_backup.py,sha256=ZDHVHb_yA4wN4q-9fyQRoGIlD1U4wxkPVahfUCY3oOI,15245
|
2642
2658
|
pulumi_oci/psql/get_backups.py,sha256=-hn94T_JNcWUgqcMtBL9I1sv1eF7OxWMwuk7AbtUGMw,11046
|
2643
2659
|
pulumi_oci/psql/get_configuration.py,sha256=HKLjicRTZAnjkrEqZOsNomIN-SYgCV2_OQCZwOfwsTE,15412
|
2644
2660
|
pulumi_oci/psql/get_configurations.py,sha256=6l_gnGo2LiyeBvTlQ6IpiVAwTJS8BQERdjE4DcOR4Fc,11179
|
2645
2661
|
pulumi_oci/psql/get_db_system.py,sha256=CY6h545HCRtUJ80x-MHuMrA9VLsCvK0jqP6Fw0mbAlE,22513
|
2646
|
-
pulumi_oci/psql/get_db_system_connection_detail.py,sha256=
|
2662
|
+
pulumi_oci/psql/get_db_system_connection_detail.py,sha256=TELZegTfvChprTho6jjH4R3H5bI6837S90nsJbwjgWk,7380
|
2647
2663
|
pulumi_oci/psql/get_db_system_primary_db_instance.py,sha256=ZItrC-2sNi6Vn8CZlxN5jSEJhORWRqmQdTbX6ajZ14o,4968
|
2648
2664
|
pulumi_oci/psql/get_db_systems.py,sha256=BTeVv0AbcnKNJGpi_jeqLMH5k5u9Dz1Ajn2XjATxtMA,8180
|
2649
2665
|
pulumi_oci/psql/get_default_configuration.py,sha256=_f_LfOgm6utE5yMWVrmnJ7PjoBhMfZTUDVEvDMD7WGU,11631
|
2650
2666
|
pulumi_oci/psql/get_default_configurations.py,sha256=AJmoTeHCshpM5dWN1-Iaz_XUGkHX9-n2Z-3wpoy4m0Y,10463
|
2651
2667
|
pulumi_oci/psql/get_shapes.py,sha256=TxxZZoniip7mtA9Epp6Zc1UiHvrKj6PhyVgjleE3MyQ,5637
|
2652
|
-
pulumi_oci/psql/outputs.py,sha256=
|
2668
|
+
pulumi_oci/psql/outputs.py,sha256=Oz0spT3oXf-062bNspj-jFzQRZ_pYhow1yr91aKfps8,157603
|
2653
2669
|
pulumi_oci/queue/__init__.py,sha256=jwKK25ETwcG0tqoblRZJX6MN7BKulcDaUyL3ql98tf4,386
|
2654
2670
|
pulumi_oci/queue/_inputs.py,sha256=Y309IljzLWnr4k7SVGurLHOsEOeQvVSI2B2gedww6P4,1811
|
2655
2671
|
pulumi_oci/queue/get_queue.py,sha256=tTQXOdb2Poug-TFowA0HXzcW-4upzuZ1Aj5U93CEymo,16545
|
@@ -2922,7 +2938,7 @@ pulumi_oci/zpr/get_zpr_policies.py,sha256=1QNe4eQ6jyzlwdY9dAhwUIRcRat1B1PDVV1Ier
|
|
2922
2938
|
pulumi_oci/zpr/get_zpr_policy.py,sha256=8T-CGxDxYn1TmAQRwv2mcJpw4kGQmL8pGyUaHfmeAe4,11424
|
2923
2939
|
pulumi_oci/zpr/outputs.py,sha256=bLQC7_On52bzTOlKVC9oF2CSxcSo7CiwTmOkBNy7MD4,8943
|
2924
2940
|
pulumi_oci/zpr/zpr_policy.py,sha256=kRQiN_Fg_m8N1oVD93ktqQhhXv8z8y08nBKuypB_t3k,32563
|
2925
|
-
pulumi_oci-2.
|
2926
|
-
pulumi_oci-2.
|
2927
|
-
pulumi_oci-2.
|
2928
|
-
pulumi_oci-2.
|
2941
|
+
pulumi_oci-2.18.0.dist-info/METADATA,sha256=COp96Hgsobk_0p7NxI75lGr2DAASwb5Nqo-G1uJqRiA,3954
|
2942
|
+
pulumi_oci-2.18.0.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
2943
|
+
pulumi_oci-2.18.0.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2944
|
+
pulumi_oci-2.18.0.dist-info/RECORD,,
|
File without changes
|