pulumi-oci 2.13.0a1729198151__py3-none-any.whl → 2.14.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 +24 -19
- pulumi_oci/containerengine/_inputs.py +341 -0
- pulumi_oci/containerengine/cluster.py +64 -0
- pulumi_oci/containerengine/get_cluster.py +12 -1
- pulumi_oci/containerengine/outputs.py +582 -0
- pulumi_oci/core/_inputs.py +373 -37
- pulumi_oci/core/boot_volume.py +90 -5
- pulumi_oci/core/get_block_volume_replica.py +15 -1
- pulumi_oci/core/get_boot_volume.py +15 -4
- pulumi_oci/core/get_boot_volume_replica.py +15 -1
- pulumi_oci/core/get_instance.py +1 -1
- pulumi_oci/core/get_virtual_circuit.py +18 -4
- pulumi_oci/core/get_volume.py +18 -4
- pulumi_oci/core/instance.py +7 -7
- pulumi_oci/core/instance_configuration.py +4 -0
- pulumi_oci/core/outputs.py +738 -53
- pulumi_oci/core/virtual_circuit.py +30 -2
- pulumi_oci/core/volume.py +110 -12
- pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
- pulumi_oci/core/volume_group.py +56 -5
- pulumi_oci/database/_inputs.py +642 -0
- pulumi_oci/database/autonomous_container_database.py +14 -14
- pulumi_oci/database/autonomous_database.py +75 -0
- pulumi_oci/database/get_autonomous_container_database.py +3 -3
- pulumi_oci/database/get_autonomous_database.py +29 -1
- pulumi_oci/database/get_autonomous_databases.py +22 -28
- pulumi_oci/database/outputs.py +1669 -86
- pulumi_oci/datasafe/__init__.py +1 -0
- pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
- 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/desktops/_inputs.py +175 -13
- pulumi_oci/desktops/desktop_pool.py +67 -0
- pulumi_oci/desktops/get_desktop_pool.py +16 -1
- pulumi_oci/desktops/outputs.py +339 -18
- pulumi_oci/dns/__init__.py +2 -0
- pulumi_oci/dns/_inputs.py +1157 -12
- pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
- pulumi_oci/dns/get_records.py +45 -13
- pulumi_oci/dns/get_resolver.py +8 -6
- pulumi_oci/dns/get_resolver_endpoint.py +8 -6
- pulumi_oci/dns/get_resolver_endpoints.py +2 -2
- pulumi_oci/dns/get_resolvers.py +12 -12
- pulumi_oci/dns/get_rrset.py +16 -16
- pulumi_oci/dns/get_rrsets.py +12 -10
- pulumi_oci/dns/get_view.py +8 -4
- pulumi_oci/dns/get_views.py +12 -12
- pulumi_oci/dns/get_zones.py +33 -13
- pulumi_oci/dns/outputs.py +1388 -79
- pulumi_oci/dns/record.py +12 -12
- pulumi_oci/dns/resolver.py +7 -7
- pulumi_oci/dns/resolver_endpoint.py +2 -2
- pulumi_oci/dns/rrset.py +50 -41
- pulumi_oci/dns/zone.py +176 -17
- pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
- pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -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/goldengate/__init__.py +1 -0
- pulumi_oci/goldengate/_inputs.py +165 -0
- pulumi_oci/goldengate/connection.py +49 -35
- pulumi_oci/goldengate/database_registration.py +7 -7
- pulumi_oci/goldengate/deployment.py +79 -4
- pulumi_oci/goldengate/get_deployment.py +30 -2
- pulumi_oci/goldengate/get_deployment_environments.py +144 -0
- pulumi_oci/goldengate/outputs.py +409 -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.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/RECORD +88 -93
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/WHEEL +1 -1
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
- pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
- pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
- {pulumi_oci-2.13.0a1729198151.dist-info → pulumi_oci-2.14.0.dist-info}/top_level.txt +0 -0
@@ -1,323 +0,0 @@
|
|
1
|
-
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
-
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
-
|
5
|
-
import copy
|
6
|
-
import warnings
|
7
|
-
import sys
|
8
|
-
import pulumi
|
9
|
-
import pulumi.runtime
|
10
|
-
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
-
if sys.version_info >= (3, 11):
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
-
else:
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
-
from .. import _utilities
|
16
|
-
|
17
|
-
__all__ = [
|
18
|
-
'GetPrivateEndpointResult',
|
19
|
-
'AwaitableGetPrivateEndpointResult',
|
20
|
-
'get_private_endpoint',
|
21
|
-
'get_private_endpoint_output',
|
22
|
-
]
|
23
|
-
|
24
|
-
@pulumi.output_type
|
25
|
-
class GetPrivateEndpointResult:
|
26
|
-
"""
|
27
|
-
A collection of values returned by getPrivateEndpoint.
|
28
|
-
"""
|
29
|
-
def __init__(__self__, compartment_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, lifecycle_state_details=None, nsg_ids=None, private_endpoint_id=None, private_ip=None, sharded_databases=None, state=None, subnet_id=None, system_tags=None, time_created=None, time_updated=None, vcn_id=None):
|
30
|
-
if compartment_id and not isinstance(compartment_id, str):
|
31
|
-
raise TypeError("Expected argument 'compartment_id' to be a str")
|
32
|
-
pulumi.set(__self__, "compartment_id", compartment_id)
|
33
|
-
if defined_tags and not isinstance(defined_tags, dict):
|
34
|
-
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
35
|
-
pulumi.set(__self__, "defined_tags", defined_tags)
|
36
|
-
if description and not isinstance(description, str):
|
37
|
-
raise TypeError("Expected argument 'description' to be a str")
|
38
|
-
pulumi.set(__self__, "description", description)
|
39
|
-
if display_name and not isinstance(display_name, str):
|
40
|
-
raise TypeError("Expected argument 'display_name' to be a str")
|
41
|
-
pulumi.set(__self__, "display_name", display_name)
|
42
|
-
if freeform_tags and not isinstance(freeform_tags, dict):
|
43
|
-
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
44
|
-
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
45
|
-
if id and not isinstance(id, str):
|
46
|
-
raise TypeError("Expected argument 'id' to be a str")
|
47
|
-
pulumi.set(__self__, "id", id)
|
48
|
-
if lifecycle_state_details and not isinstance(lifecycle_state_details, str):
|
49
|
-
raise TypeError("Expected argument 'lifecycle_state_details' to be a str")
|
50
|
-
pulumi.set(__self__, "lifecycle_state_details", lifecycle_state_details)
|
51
|
-
if nsg_ids and not isinstance(nsg_ids, list):
|
52
|
-
raise TypeError("Expected argument 'nsg_ids' to be a list")
|
53
|
-
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
54
|
-
if private_endpoint_id and not isinstance(private_endpoint_id, str):
|
55
|
-
raise TypeError("Expected argument 'private_endpoint_id' to be a str")
|
56
|
-
pulumi.set(__self__, "private_endpoint_id", private_endpoint_id)
|
57
|
-
if private_ip and not isinstance(private_ip, str):
|
58
|
-
raise TypeError("Expected argument 'private_ip' to be a str")
|
59
|
-
pulumi.set(__self__, "private_ip", private_ip)
|
60
|
-
if sharded_databases and not isinstance(sharded_databases, list):
|
61
|
-
raise TypeError("Expected argument 'sharded_databases' to be a list")
|
62
|
-
pulumi.set(__self__, "sharded_databases", sharded_databases)
|
63
|
-
if state and not isinstance(state, str):
|
64
|
-
raise TypeError("Expected argument 'state' to be a str")
|
65
|
-
pulumi.set(__self__, "state", state)
|
66
|
-
if subnet_id and not isinstance(subnet_id, str):
|
67
|
-
raise TypeError("Expected argument 'subnet_id' to be a str")
|
68
|
-
pulumi.set(__self__, "subnet_id", subnet_id)
|
69
|
-
if system_tags and not isinstance(system_tags, dict):
|
70
|
-
raise TypeError("Expected argument 'system_tags' to be a dict")
|
71
|
-
pulumi.set(__self__, "system_tags", system_tags)
|
72
|
-
if time_created and not isinstance(time_created, str):
|
73
|
-
raise TypeError("Expected argument 'time_created' to be a str")
|
74
|
-
pulumi.set(__self__, "time_created", time_created)
|
75
|
-
if time_updated and not isinstance(time_updated, str):
|
76
|
-
raise TypeError("Expected argument 'time_updated' to be a str")
|
77
|
-
pulumi.set(__self__, "time_updated", time_updated)
|
78
|
-
if vcn_id and not isinstance(vcn_id, str):
|
79
|
-
raise TypeError("Expected argument 'vcn_id' to be a str")
|
80
|
-
pulumi.set(__self__, "vcn_id", vcn_id)
|
81
|
-
|
82
|
-
@property
|
83
|
-
@pulumi.getter(name="compartmentId")
|
84
|
-
def compartment_id(self) -> str:
|
85
|
-
"""
|
86
|
-
Identifier of the compartment in which private endpoint exists.
|
87
|
-
"""
|
88
|
-
return pulumi.get(self, "compartment_id")
|
89
|
-
|
90
|
-
@property
|
91
|
-
@pulumi.getter(name="definedTags")
|
92
|
-
def defined_tags(self) -> Mapping[str, str]:
|
93
|
-
"""
|
94
|
-
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
95
|
-
"""
|
96
|
-
return pulumi.get(self, "defined_tags")
|
97
|
-
|
98
|
-
@property
|
99
|
-
@pulumi.getter
|
100
|
-
def description(self) -> str:
|
101
|
-
"""
|
102
|
-
PrivateEndpoint description.
|
103
|
-
"""
|
104
|
-
return pulumi.get(self, "description")
|
105
|
-
|
106
|
-
@property
|
107
|
-
@pulumi.getter(name="displayName")
|
108
|
-
def display_name(self) -> str:
|
109
|
-
"""
|
110
|
-
PrivateEndpoint display name.
|
111
|
-
"""
|
112
|
-
return pulumi.get(self, "display_name")
|
113
|
-
|
114
|
-
@property
|
115
|
-
@pulumi.getter(name="freeformTags")
|
116
|
-
def freeform_tags(self) -> Mapping[str, str]:
|
117
|
-
"""
|
118
|
-
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
119
|
-
"""
|
120
|
-
return pulumi.get(self, "freeform_tags")
|
121
|
-
|
122
|
-
@property
|
123
|
-
@pulumi.getter
|
124
|
-
def id(self) -> str:
|
125
|
-
"""
|
126
|
-
The identifier of the Private Endpoint.
|
127
|
-
"""
|
128
|
-
return pulumi.get(self, "id")
|
129
|
-
|
130
|
-
@property
|
131
|
-
@pulumi.getter(name="lifecycleStateDetails")
|
132
|
-
def lifecycle_state_details(self) -> str:
|
133
|
-
"""
|
134
|
-
Detailed message for the lifecycle state.
|
135
|
-
"""
|
136
|
-
return pulumi.get(self, "lifecycle_state_details")
|
137
|
-
|
138
|
-
@property
|
139
|
-
@pulumi.getter(name="nsgIds")
|
140
|
-
def nsg_ids(self) -> Sequence[str]:
|
141
|
-
"""
|
142
|
-
The OCIDs of the network security groups that the private endpoint belongs to.
|
143
|
-
"""
|
144
|
-
return pulumi.get(self, "nsg_ids")
|
145
|
-
|
146
|
-
@property
|
147
|
-
@pulumi.getter(name="privateEndpointId")
|
148
|
-
def private_endpoint_id(self) -> str:
|
149
|
-
return pulumi.get(self, "private_endpoint_id")
|
150
|
-
|
151
|
-
@property
|
152
|
-
@pulumi.getter(name="privateIp")
|
153
|
-
def private_ip(self) -> str:
|
154
|
-
"""
|
155
|
-
IP address of the Private Endpoint.
|
156
|
-
"""
|
157
|
-
return pulumi.get(self, "private_ip")
|
158
|
-
|
159
|
-
@property
|
160
|
-
@pulumi.getter(name="shardedDatabases")
|
161
|
-
def sharded_databases(self) -> Sequence[str]:
|
162
|
-
"""
|
163
|
-
The OCIDs of sharded databases that consumes the given private endpoint.
|
164
|
-
"""
|
165
|
-
return pulumi.get(self, "sharded_databases")
|
166
|
-
|
167
|
-
@property
|
168
|
-
@pulumi.getter
|
169
|
-
def state(self) -> str:
|
170
|
-
"""
|
171
|
-
Lifecycle states for private endpoint.
|
172
|
-
"""
|
173
|
-
return pulumi.get(self, "state")
|
174
|
-
|
175
|
-
@property
|
176
|
-
@pulumi.getter(name="subnetId")
|
177
|
-
def subnet_id(self) -> str:
|
178
|
-
"""
|
179
|
-
Identifier of the subnet in which private endpoint exists.
|
180
|
-
"""
|
181
|
-
return pulumi.get(self, "subnet_id")
|
182
|
-
|
183
|
-
@property
|
184
|
-
@pulumi.getter(name="systemTags")
|
185
|
-
def system_tags(self) -> Mapping[str, str]:
|
186
|
-
"""
|
187
|
-
Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
188
|
-
"""
|
189
|
-
return pulumi.get(self, "system_tags")
|
190
|
-
|
191
|
-
@property
|
192
|
-
@pulumi.getter(name="timeCreated")
|
193
|
-
def time_created(self) -> str:
|
194
|
-
"""
|
195
|
-
The time the PrivateEndpoint was first created. An RFC3339 formatted datetime string
|
196
|
-
"""
|
197
|
-
return pulumi.get(self, "time_created")
|
198
|
-
|
199
|
-
@property
|
200
|
-
@pulumi.getter(name="timeUpdated")
|
201
|
-
def time_updated(self) -> str:
|
202
|
-
"""
|
203
|
-
The time the Private Endpoint was last updated. An RFC3339 formatted datetime string
|
204
|
-
"""
|
205
|
-
return pulumi.get(self, "time_updated")
|
206
|
-
|
207
|
-
@property
|
208
|
-
@pulumi.getter(name="vcnId")
|
209
|
-
def vcn_id(self) -> str:
|
210
|
-
"""
|
211
|
-
Identifier of the VCN in which subnet exists.
|
212
|
-
"""
|
213
|
-
return pulumi.get(self, "vcn_id")
|
214
|
-
|
215
|
-
|
216
|
-
class AwaitableGetPrivateEndpointResult(GetPrivateEndpointResult):
|
217
|
-
# pylint: disable=using-constant-test
|
218
|
-
def __await__(self):
|
219
|
-
if False:
|
220
|
-
yield self
|
221
|
-
return GetPrivateEndpointResult(
|
222
|
-
compartment_id=self.compartment_id,
|
223
|
-
defined_tags=self.defined_tags,
|
224
|
-
description=self.description,
|
225
|
-
display_name=self.display_name,
|
226
|
-
freeform_tags=self.freeform_tags,
|
227
|
-
id=self.id,
|
228
|
-
lifecycle_state_details=self.lifecycle_state_details,
|
229
|
-
nsg_ids=self.nsg_ids,
|
230
|
-
private_endpoint_id=self.private_endpoint_id,
|
231
|
-
private_ip=self.private_ip,
|
232
|
-
sharded_databases=self.sharded_databases,
|
233
|
-
state=self.state,
|
234
|
-
subnet_id=self.subnet_id,
|
235
|
-
system_tags=self.system_tags,
|
236
|
-
time_created=self.time_created,
|
237
|
-
time_updated=self.time_updated,
|
238
|
-
vcn_id=self.vcn_id)
|
239
|
-
|
240
|
-
|
241
|
-
def get_private_endpoint(private_endpoint_id: Optional[str] = None,
|
242
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPrivateEndpointResult:
|
243
|
-
"""
|
244
|
-
This data source provides details about a specific Private Endpoint resource in Oracle Cloud Infrastructure Globally Distributed Database service.
|
245
|
-
|
246
|
-
Get the PrivateEndpoint resource.
|
247
|
-
|
248
|
-
## Example Usage
|
249
|
-
|
250
|
-
```python
|
251
|
-
import pulumi
|
252
|
-
import pulumi_oci as oci
|
253
|
-
|
254
|
-
test_private_endpoint = oci.GloballyDistributedDatabase.get_private_endpoint(private_endpoint_id=test_private_endpoint_oci_globally_distributed_database_private_endpoint["id"])
|
255
|
-
```
|
256
|
-
|
257
|
-
|
258
|
-
:param str private_endpoint_id: Oracle Sharded Database PrivateEndpoint identifier
|
259
|
-
"""
|
260
|
-
__args__ = dict()
|
261
|
-
__args__['privateEndpointId'] = private_endpoint_id
|
262
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
263
|
-
__ret__ = pulumi.runtime.invoke('oci:GloballyDistributedDatabase/getPrivateEndpoint:getPrivateEndpoint', __args__, opts=opts, typ=GetPrivateEndpointResult).value
|
264
|
-
|
265
|
-
return AwaitableGetPrivateEndpointResult(
|
266
|
-
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
267
|
-
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
268
|
-
description=pulumi.get(__ret__, 'description'),
|
269
|
-
display_name=pulumi.get(__ret__, 'display_name'),
|
270
|
-
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
271
|
-
id=pulumi.get(__ret__, 'id'),
|
272
|
-
lifecycle_state_details=pulumi.get(__ret__, 'lifecycle_state_details'),
|
273
|
-
nsg_ids=pulumi.get(__ret__, 'nsg_ids'),
|
274
|
-
private_endpoint_id=pulumi.get(__ret__, 'private_endpoint_id'),
|
275
|
-
private_ip=pulumi.get(__ret__, 'private_ip'),
|
276
|
-
sharded_databases=pulumi.get(__ret__, 'sharded_databases'),
|
277
|
-
state=pulumi.get(__ret__, 'state'),
|
278
|
-
subnet_id=pulumi.get(__ret__, 'subnet_id'),
|
279
|
-
system_tags=pulumi.get(__ret__, 'system_tags'),
|
280
|
-
time_created=pulumi.get(__ret__, 'time_created'),
|
281
|
-
time_updated=pulumi.get(__ret__, 'time_updated'),
|
282
|
-
vcn_id=pulumi.get(__ret__, 'vcn_id'))
|
283
|
-
def get_private_endpoint_output(private_endpoint_id: Optional[pulumi.Input[str]] = None,
|
284
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPrivateEndpointResult]:
|
285
|
-
"""
|
286
|
-
This data source provides details about a specific Private Endpoint resource in Oracle Cloud Infrastructure Globally Distributed Database service.
|
287
|
-
|
288
|
-
Get the PrivateEndpoint resource.
|
289
|
-
|
290
|
-
## Example Usage
|
291
|
-
|
292
|
-
```python
|
293
|
-
import pulumi
|
294
|
-
import pulumi_oci as oci
|
295
|
-
|
296
|
-
test_private_endpoint = oci.GloballyDistributedDatabase.get_private_endpoint(private_endpoint_id=test_private_endpoint_oci_globally_distributed_database_private_endpoint["id"])
|
297
|
-
```
|
298
|
-
|
299
|
-
|
300
|
-
:param str private_endpoint_id: Oracle Sharded Database PrivateEndpoint identifier
|
301
|
-
"""
|
302
|
-
__args__ = dict()
|
303
|
-
__args__['privateEndpointId'] = private_endpoint_id
|
304
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
305
|
-
__ret__ = pulumi.runtime.invoke_output('oci:GloballyDistributedDatabase/getPrivateEndpoint:getPrivateEndpoint', __args__, opts=opts, typ=GetPrivateEndpointResult)
|
306
|
-
return __ret__.apply(lambda __response__: GetPrivateEndpointResult(
|
307
|
-
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
308
|
-
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
309
|
-
description=pulumi.get(__response__, 'description'),
|
310
|
-
display_name=pulumi.get(__response__, 'display_name'),
|
311
|
-
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
312
|
-
id=pulumi.get(__response__, 'id'),
|
313
|
-
lifecycle_state_details=pulumi.get(__response__, 'lifecycle_state_details'),
|
314
|
-
nsg_ids=pulumi.get(__response__, 'nsg_ids'),
|
315
|
-
private_endpoint_id=pulumi.get(__response__, 'private_endpoint_id'),
|
316
|
-
private_ip=pulumi.get(__response__, 'private_ip'),
|
317
|
-
sharded_databases=pulumi.get(__response__, 'sharded_databases'),
|
318
|
-
state=pulumi.get(__response__, 'state'),
|
319
|
-
subnet_id=pulumi.get(__response__, 'subnet_id'),
|
320
|
-
system_tags=pulumi.get(__response__, 'system_tags'),
|
321
|
-
time_created=pulumi.get(__response__, 'time_created'),
|
322
|
-
time_updated=pulumi.get(__response__, 'time_updated'),
|
323
|
-
vcn_id=pulumi.get(__response__, 'vcn_id')))
|
@@ -1,191 +0,0 @@
|
|
1
|
-
# coding=utf-8
|
2
|
-
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
-
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
-
|
5
|
-
import copy
|
6
|
-
import warnings
|
7
|
-
import sys
|
8
|
-
import pulumi
|
9
|
-
import pulumi.runtime
|
10
|
-
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
-
if sys.version_info >= (3, 11):
|
12
|
-
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
-
else:
|
14
|
-
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
-
from .. import _utilities
|
16
|
-
from . import outputs
|
17
|
-
from ._inputs import *
|
18
|
-
|
19
|
-
__all__ = [
|
20
|
-
'GetPrivateEndpointsResult',
|
21
|
-
'AwaitableGetPrivateEndpointsResult',
|
22
|
-
'get_private_endpoints',
|
23
|
-
'get_private_endpoints_output',
|
24
|
-
]
|
25
|
-
|
26
|
-
@pulumi.output_type
|
27
|
-
class GetPrivateEndpointsResult:
|
28
|
-
"""
|
29
|
-
A collection of values returned by getPrivateEndpoints.
|
30
|
-
"""
|
31
|
-
def __init__(__self__, compartment_id=None, display_name=None, filters=None, id=None, private_endpoint_collections=None, state=None):
|
32
|
-
if compartment_id and not isinstance(compartment_id, str):
|
33
|
-
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
|
-
pulumi.set(__self__, "compartment_id", compartment_id)
|
35
|
-
if display_name and not isinstance(display_name, str):
|
36
|
-
raise TypeError("Expected argument 'display_name' to be a str")
|
37
|
-
pulumi.set(__self__, "display_name", display_name)
|
38
|
-
if filters and not isinstance(filters, list):
|
39
|
-
raise TypeError("Expected argument 'filters' to be a list")
|
40
|
-
pulumi.set(__self__, "filters", filters)
|
41
|
-
if id and not isinstance(id, str):
|
42
|
-
raise TypeError("Expected argument 'id' to be a str")
|
43
|
-
pulumi.set(__self__, "id", id)
|
44
|
-
if private_endpoint_collections and not isinstance(private_endpoint_collections, list):
|
45
|
-
raise TypeError("Expected argument 'private_endpoint_collections' to be a list")
|
46
|
-
pulumi.set(__self__, "private_endpoint_collections", private_endpoint_collections)
|
47
|
-
if state and not isinstance(state, str):
|
48
|
-
raise TypeError("Expected argument 'state' to be a str")
|
49
|
-
pulumi.set(__self__, "state", state)
|
50
|
-
|
51
|
-
@property
|
52
|
-
@pulumi.getter(name="compartmentId")
|
53
|
-
def compartment_id(self) -> str:
|
54
|
-
"""
|
55
|
-
Identifier of the compartment in which private endpoint exists.
|
56
|
-
"""
|
57
|
-
return pulumi.get(self, "compartment_id")
|
58
|
-
|
59
|
-
@property
|
60
|
-
@pulumi.getter(name="displayName")
|
61
|
-
def display_name(self) -> Optional[str]:
|
62
|
-
"""
|
63
|
-
PrivateEndpoint display name.
|
64
|
-
"""
|
65
|
-
return pulumi.get(self, "display_name")
|
66
|
-
|
67
|
-
@property
|
68
|
-
@pulumi.getter
|
69
|
-
def filters(self) -> Optional[Sequence['outputs.GetPrivateEndpointsFilterResult']]:
|
70
|
-
return pulumi.get(self, "filters")
|
71
|
-
|
72
|
-
@property
|
73
|
-
@pulumi.getter
|
74
|
-
def id(self) -> str:
|
75
|
-
"""
|
76
|
-
The provider-assigned unique ID for this managed resource.
|
77
|
-
"""
|
78
|
-
return pulumi.get(self, "id")
|
79
|
-
|
80
|
-
@property
|
81
|
-
@pulumi.getter(name="privateEndpointCollections")
|
82
|
-
def private_endpoint_collections(self) -> Sequence['outputs.GetPrivateEndpointsPrivateEndpointCollectionResult']:
|
83
|
-
"""
|
84
|
-
The list of private_endpoint_collection.
|
85
|
-
"""
|
86
|
-
return pulumi.get(self, "private_endpoint_collections")
|
87
|
-
|
88
|
-
@property
|
89
|
-
@pulumi.getter
|
90
|
-
def state(self) -> Optional[str]:
|
91
|
-
"""
|
92
|
-
Lifecycle states for private endpoint.
|
93
|
-
"""
|
94
|
-
return pulumi.get(self, "state")
|
95
|
-
|
96
|
-
|
97
|
-
class AwaitableGetPrivateEndpointsResult(GetPrivateEndpointsResult):
|
98
|
-
# pylint: disable=using-constant-test
|
99
|
-
def __await__(self):
|
100
|
-
if False:
|
101
|
-
yield self
|
102
|
-
return GetPrivateEndpointsResult(
|
103
|
-
compartment_id=self.compartment_id,
|
104
|
-
display_name=self.display_name,
|
105
|
-
filters=self.filters,
|
106
|
-
id=self.id,
|
107
|
-
private_endpoint_collections=self.private_endpoint_collections,
|
108
|
-
state=self.state)
|
109
|
-
|
110
|
-
|
111
|
-
def get_private_endpoints(compartment_id: Optional[str] = None,
|
112
|
-
display_name: Optional[str] = None,
|
113
|
-
filters: Optional[Sequence[Union['GetPrivateEndpointsFilterArgs', 'GetPrivateEndpointsFilterArgsDict']]] = None,
|
114
|
-
state: Optional[str] = None,
|
115
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPrivateEndpointsResult:
|
116
|
-
"""
|
117
|
-
This data source provides the list of Private Endpoints in Oracle Cloud Infrastructure Globally Distributed Database service.
|
118
|
-
|
119
|
-
List of PrivateEndpoints.
|
120
|
-
|
121
|
-
## Example Usage
|
122
|
-
|
123
|
-
```python
|
124
|
-
import pulumi
|
125
|
-
import pulumi_oci as oci
|
126
|
-
|
127
|
-
test_private_endpoints = oci.GloballyDistributedDatabase.get_private_endpoints(compartment_id=compartment_id,
|
128
|
-
display_name=private_endpoint_display_name,
|
129
|
-
state=private_endpoint_state)
|
130
|
-
```
|
131
|
-
|
132
|
-
|
133
|
-
:param str compartment_id: The ID of the compartment in which to list resources.
|
134
|
-
:param str display_name: A filter to return only private endpoint that match the entire name given. The match is not case sensitive.
|
135
|
-
:param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
|
136
|
-
"""
|
137
|
-
__args__ = dict()
|
138
|
-
__args__['compartmentId'] = compartment_id
|
139
|
-
__args__['displayName'] = display_name
|
140
|
-
__args__['filters'] = filters
|
141
|
-
__args__['state'] = state
|
142
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
143
|
-
__ret__ = pulumi.runtime.invoke('oci:GloballyDistributedDatabase/getPrivateEndpoints:getPrivateEndpoints', __args__, opts=opts, typ=GetPrivateEndpointsResult).value
|
144
|
-
|
145
|
-
return AwaitableGetPrivateEndpointsResult(
|
146
|
-
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
147
|
-
display_name=pulumi.get(__ret__, 'display_name'),
|
148
|
-
filters=pulumi.get(__ret__, 'filters'),
|
149
|
-
id=pulumi.get(__ret__, 'id'),
|
150
|
-
private_endpoint_collections=pulumi.get(__ret__, 'private_endpoint_collections'),
|
151
|
-
state=pulumi.get(__ret__, 'state'))
|
152
|
-
def get_private_endpoints_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
153
|
-
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
154
|
-
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetPrivateEndpointsFilterArgs', 'GetPrivateEndpointsFilterArgsDict']]]]] = None,
|
155
|
-
state: Optional[pulumi.Input[Optional[str]]] = None,
|
156
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPrivateEndpointsResult]:
|
157
|
-
"""
|
158
|
-
This data source provides the list of Private Endpoints in Oracle Cloud Infrastructure Globally Distributed Database service.
|
159
|
-
|
160
|
-
List of PrivateEndpoints.
|
161
|
-
|
162
|
-
## Example Usage
|
163
|
-
|
164
|
-
```python
|
165
|
-
import pulumi
|
166
|
-
import pulumi_oci as oci
|
167
|
-
|
168
|
-
test_private_endpoints = oci.GloballyDistributedDatabase.get_private_endpoints(compartment_id=compartment_id,
|
169
|
-
display_name=private_endpoint_display_name,
|
170
|
-
state=private_endpoint_state)
|
171
|
-
```
|
172
|
-
|
173
|
-
|
174
|
-
:param str compartment_id: The ID of the compartment in which to list resources.
|
175
|
-
:param str display_name: A filter to return only private endpoint that match the entire name given. The match is not case sensitive.
|
176
|
-
:param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
|
177
|
-
"""
|
178
|
-
__args__ = dict()
|
179
|
-
__args__['compartmentId'] = compartment_id
|
180
|
-
__args__['displayName'] = display_name
|
181
|
-
__args__['filters'] = filters
|
182
|
-
__args__['state'] = state
|
183
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
184
|
-
__ret__ = pulumi.runtime.invoke_output('oci:GloballyDistributedDatabase/getPrivateEndpoints:getPrivateEndpoints', __args__, opts=opts, typ=GetPrivateEndpointsResult)
|
185
|
-
return __ret__.apply(lambda __response__: GetPrivateEndpointsResult(
|
186
|
-
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
187
|
-
display_name=pulumi.get(__response__, 'display_name'),
|
188
|
-
filters=pulumi.get(__response__, 'filters'),
|
189
|
-
id=pulumi.get(__response__, 'id'),
|
190
|
-
private_endpoint_collections=pulumi.get(__response__, 'private_endpoint_collections'),
|
191
|
-
state=pulumi.get(__response__, 'state')))
|