pulumi-oci 2.13.0a1729059403__py3-none-any.whl → 2.13.0a1729613556__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.
Files changed (65) hide show
  1. pulumi_oci/__init__.py +24 -19
  2. pulumi_oci/containerengine/_inputs.py +341 -0
  3. pulumi_oci/containerengine/cluster.py +64 -0
  4. pulumi_oci/containerengine/get_cluster.py +12 -1
  5. pulumi_oci/containerengine/outputs.py +582 -0
  6. pulumi_oci/core/_inputs.py +299 -37
  7. pulumi_oci/core/boot_volume.py +90 -5
  8. pulumi_oci/core/get_block_volume_replica.py +15 -1
  9. pulumi_oci/core/get_boot_volume.py +15 -4
  10. pulumi_oci/core/get_boot_volume_replica.py +15 -1
  11. pulumi_oci/core/get_volume.py +18 -4
  12. pulumi_oci/core/instance_configuration.py +4 -0
  13. pulumi_oci/core/outputs.py +573 -46
  14. pulumi_oci/core/volume.py +110 -12
  15. pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
  16. pulumi_oci/core/volume_group.py +56 -5
  17. pulumi_oci/datasafe/__init__.py +1 -0
  18. pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
  19. pulumi_oci/desktops/_inputs.py +175 -13
  20. pulumi_oci/desktops/desktop_pool.py +67 -0
  21. pulumi_oci/desktops/get_desktop_pool.py +16 -1
  22. pulumi_oci/desktops/outputs.py +339 -18
  23. pulumi_oci/dns/__init__.py +2 -0
  24. pulumi_oci/dns/_inputs.py +1157 -12
  25. pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
  26. pulumi_oci/dns/get_records.py +45 -13
  27. pulumi_oci/dns/get_resolver.py +8 -6
  28. pulumi_oci/dns/get_resolver_endpoint.py +8 -6
  29. pulumi_oci/dns/get_resolver_endpoints.py +2 -2
  30. pulumi_oci/dns/get_resolvers.py +12 -12
  31. pulumi_oci/dns/get_rrset.py +16 -16
  32. pulumi_oci/dns/get_rrsets.py +12 -10
  33. pulumi_oci/dns/get_view.py +8 -4
  34. pulumi_oci/dns/get_views.py +12 -12
  35. pulumi_oci/dns/get_zones.py +33 -13
  36. pulumi_oci/dns/outputs.py +1388 -79
  37. pulumi_oci/dns/record.py +12 -12
  38. pulumi_oci/dns/resolver.py +7 -7
  39. pulumi_oci/dns/resolver_endpoint.py +2 -2
  40. pulumi_oci/dns/rrset.py +50 -41
  41. pulumi_oci/dns/zone.py +176 -17
  42. pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
  43. pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
  44. pulumi_oci/goldengate/__init__.py +1 -0
  45. pulumi_oci/goldengate/_inputs.py +165 -0
  46. pulumi_oci/goldengate/connection.py +49 -35
  47. pulumi_oci/goldengate/database_registration.py +7 -7
  48. pulumi_oci/goldengate/deployment.py +79 -4
  49. pulumi_oci/goldengate/get_deployment.py +30 -2
  50. pulumi_oci/goldengate/get_deployment_environments.py +144 -0
  51. pulumi_oci/goldengate/outputs.py +409 -2
  52. pulumi_oci/pulumi-plugin.json +1 -1
  53. {pulumi_oci-2.13.0a1729059403.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/METADATA +1 -1
  54. {pulumi_oci-2.13.0a1729059403.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/RECORD +56 -61
  55. {pulumi_oci-2.13.0a1729059403.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/WHEEL +1 -1
  56. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  57. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
  58. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
  59. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
  60. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
  61. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
  62. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
  63. pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
  64. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
  65. {pulumi_oci-2.13.0a1729059403.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/top_level.txt +0 -0
@@ -1,747 +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__ = ['PrivateEndpointArgs', 'PrivateEndpoint']
18
-
19
- @pulumi.input_type
20
- class PrivateEndpointArgs:
21
- def __init__(__self__, *,
22
- compartment_id: pulumi.Input[str],
23
- display_name: pulumi.Input[str],
24
- subnet_id: pulumi.Input[str],
25
- defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
26
- description: Optional[pulumi.Input[str]] = None,
27
- freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
28
- nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
29
- """
30
- The set of arguments for constructing a PrivateEndpoint resource.
31
- :param pulumi.Input[str] compartment_id: (Updatable) Identifier of the compartment where private endpoint is to be created.
32
- :param pulumi.Input[str] display_name: (Updatable) Private endpoint display name.
33
- :param pulumi.Input[str] subnet_id: Identifier of the customer subnet against which private endpoint is to be created.
34
-
35
-
36
- ** IMPORTANT **
37
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
38
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
39
- :param pulumi.Input[str] description: (Updatable) PrivateEndpoint description.
40
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
41
- :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
42
- """
43
- pulumi.set(__self__, "compartment_id", compartment_id)
44
- pulumi.set(__self__, "display_name", display_name)
45
- pulumi.set(__self__, "subnet_id", subnet_id)
46
- if defined_tags is not None:
47
- pulumi.set(__self__, "defined_tags", defined_tags)
48
- if description is not None:
49
- pulumi.set(__self__, "description", description)
50
- if freeform_tags is not None:
51
- pulumi.set(__self__, "freeform_tags", freeform_tags)
52
- if nsg_ids is not None:
53
- pulumi.set(__self__, "nsg_ids", nsg_ids)
54
-
55
- @property
56
- @pulumi.getter(name="compartmentId")
57
- def compartment_id(self) -> pulumi.Input[str]:
58
- """
59
- (Updatable) Identifier of the compartment where private endpoint is to be created.
60
- """
61
- return pulumi.get(self, "compartment_id")
62
-
63
- @compartment_id.setter
64
- def compartment_id(self, value: pulumi.Input[str]):
65
- pulumi.set(self, "compartment_id", value)
66
-
67
- @property
68
- @pulumi.getter(name="displayName")
69
- def display_name(self) -> pulumi.Input[str]:
70
- """
71
- (Updatable) Private endpoint display name.
72
- """
73
- return pulumi.get(self, "display_name")
74
-
75
- @display_name.setter
76
- def display_name(self, value: pulumi.Input[str]):
77
- pulumi.set(self, "display_name", value)
78
-
79
- @property
80
- @pulumi.getter(name="subnetId")
81
- def subnet_id(self) -> pulumi.Input[str]:
82
- """
83
- Identifier of the customer subnet against which private endpoint is to be created.
84
-
85
-
86
- ** IMPORTANT **
87
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
88
- """
89
- return pulumi.get(self, "subnet_id")
90
-
91
- @subnet_id.setter
92
- def subnet_id(self, value: pulumi.Input[str]):
93
- pulumi.set(self, "subnet_id", value)
94
-
95
- @property
96
- @pulumi.getter(name="definedTags")
97
- def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
98
- """
99
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
100
- """
101
- return pulumi.get(self, "defined_tags")
102
-
103
- @defined_tags.setter
104
- def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
105
- pulumi.set(self, "defined_tags", value)
106
-
107
- @property
108
- @pulumi.getter
109
- def description(self) -> Optional[pulumi.Input[str]]:
110
- """
111
- (Updatable) PrivateEndpoint description.
112
- """
113
- return pulumi.get(self, "description")
114
-
115
- @description.setter
116
- def description(self, value: Optional[pulumi.Input[str]]):
117
- pulumi.set(self, "description", value)
118
-
119
- @property
120
- @pulumi.getter(name="freeformTags")
121
- def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
122
- """
123
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
124
- """
125
- return pulumi.get(self, "freeform_tags")
126
-
127
- @freeform_tags.setter
128
- def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
129
- pulumi.set(self, "freeform_tags", value)
130
-
131
- @property
132
- @pulumi.getter(name="nsgIds")
133
- def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
134
- """
135
- (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
136
- """
137
- return pulumi.get(self, "nsg_ids")
138
-
139
- @nsg_ids.setter
140
- def nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
141
- pulumi.set(self, "nsg_ids", value)
142
-
143
-
144
- @pulumi.input_type
145
- class _PrivateEndpointState:
146
- def __init__(__self__, *,
147
- compartment_id: Optional[pulumi.Input[str]] = None,
148
- defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
149
- description: Optional[pulumi.Input[str]] = None,
150
- display_name: Optional[pulumi.Input[str]] = None,
151
- freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
152
- lifecycle_state_details: Optional[pulumi.Input[str]] = None,
153
- nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
154
- private_ip: Optional[pulumi.Input[str]] = None,
155
- sharded_databases: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
156
- state: Optional[pulumi.Input[str]] = None,
157
- subnet_id: Optional[pulumi.Input[str]] = None,
158
- system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
159
- time_created: Optional[pulumi.Input[str]] = None,
160
- time_updated: Optional[pulumi.Input[str]] = None,
161
- vcn_id: Optional[pulumi.Input[str]] = None):
162
- """
163
- Input properties used for looking up and filtering PrivateEndpoint resources.
164
- :param pulumi.Input[str] compartment_id: (Updatable) Identifier of the compartment where private endpoint is to be created.
165
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
166
- :param pulumi.Input[str] description: (Updatable) PrivateEndpoint description.
167
- :param pulumi.Input[str] display_name: (Updatable) Private endpoint display name.
168
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
169
- :param pulumi.Input[str] lifecycle_state_details: Detailed message for the lifecycle state.
170
- :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
171
- :param pulumi.Input[str] private_ip: IP address of the Private Endpoint.
172
- :param pulumi.Input[Sequence[pulumi.Input[str]]] sharded_databases: The OCIDs of sharded databases that consumes the given private endpoint.
173
- :param pulumi.Input[str] state: Lifecycle states for private endpoint.
174
- :param pulumi.Input[str] subnet_id: Identifier of the customer subnet against which private endpoint is to be created.
175
-
176
-
177
- ** IMPORTANT **
178
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
179
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
180
- :param pulumi.Input[str] time_created: The time the PrivateEndpoint was first created. An RFC3339 formatted datetime string
181
- :param pulumi.Input[str] time_updated: The time the Private Endpoint was last updated. An RFC3339 formatted datetime string
182
- :param pulumi.Input[str] vcn_id: Identifier of the VCN in which subnet exists.
183
- """
184
- if compartment_id is not None:
185
- pulumi.set(__self__, "compartment_id", compartment_id)
186
- if defined_tags is not None:
187
- pulumi.set(__self__, "defined_tags", defined_tags)
188
- if description is not None:
189
- pulumi.set(__self__, "description", description)
190
- if display_name is not None:
191
- pulumi.set(__self__, "display_name", display_name)
192
- if freeform_tags is not None:
193
- pulumi.set(__self__, "freeform_tags", freeform_tags)
194
- if lifecycle_state_details is not None:
195
- pulumi.set(__self__, "lifecycle_state_details", lifecycle_state_details)
196
- if nsg_ids is not None:
197
- pulumi.set(__self__, "nsg_ids", nsg_ids)
198
- if private_ip is not None:
199
- pulumi.set(__self__, "private_ip", private_ip)
200
- if sharded_databases is not None:
201
- pulumi.set(__self__, "sharded_databases", sharded_databases)
202
- if state is not None:
203
- pulumi.set(__self__, "state", state)
204
- if subnet_id is not None:
205
- pulumi.set(__self__, "subnet_id", subnet_id)
206
- if system_tags is not None:
207
- pulumi.set(__self__, "system_tags", system_tags)
208
- if time_created is not None:
209
- pulumi.set(__self__, "time_created", time_created)
210
- if time_updated is not None:
211
- pulumi.set(__self__, "time_updated", time_updated)
212
- if vcn_id is not None:
213
- pulumi.set(__self__, "vcn_id", vcn_id)
214
-
215
- @property
216
- @pulumi.getter(name="compartmentId")
217
- def compartment_id(self) -> Optional[pulumi.Input[str]]:
218
- """
219
- (Updatable) Identifier of the compartment where private endpoint is to be created.
220
- """
221
- return pulumi.get(self, "compartment_id")
222
-
223
- @compartment_id.setter
224
- def compartment_id(self, value: Optional[pulumi.Input[str]]):
225
- pulumi.set(self, "compartment_id", value)
226
-
227
- @property
228
- @pulumi.getter(name="definedTags")
229
- def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
230
- """
231
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
232
- """
233
- return pulumi.get(self, "defined_tags")
234
-
235
- @defined_tags.setter
236
- def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
237
- pulumi.set(self, "defined_tags", value)
238
-
239
- @property
240
- @pulumi.getter
241
- def description(self) -> Optional[pulumi.Input[str]]:
242
- """
243
- (Updatable) PrivateEndpoint description.
244
- """
245
- return pulumi.get(self, "description")
246
-
247
- @description.setter
248
- def description(self, value: Optional[pulumi.Input[str]]):
249
- pulumi.set(self, "description", value)
250
-
251
- @property
252
- @pulumi.getter(name="displayName")
253
- def display_name(self) -> Optional[pulumi.Input[str]]:
254
- """
255
- (Updatable) Private endpoint display name.
256
- """
257
- return pulumi.get(self, "display_name")
258
-
259
- @display_name.setter
260
- def display_name(self, value: Optional[pulumi.Input[str]]):
261
- pulumi.set(self, "display_name", value)
262
-
263
- @property
264
- @pulumi.getter(name="freeformTags")
265
- def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
266
- """
267
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
268
- """
269
- return pulumi.get(self, "freeform_tags")
270
-
271
- @freeform_tags.setter
272
- def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
273
- pulumi.set(self, "freeform_tags", value)
274
-
275
- @property
276
- @pulumi.getter(name="lifecycleStateDetails")
277
- def lifecycle_state_details(self) -> Optional[pulumi.Input[str]]:
278
- """
279
- Detailed message for the lifecycle state.
280
- """
281
- return pulumi.get(self, "lifecycle_state_details")
282
-
283
- @lifecycle_state_details.setter
284
- def lifecycle_state_details(self, value: Optional[pulumi.Input[str]]):
285
- pulumi.set(self, "lifecycle_state_details", value)
286
-
287
- @property
288
- @pulumi.getter(name="nsgIds")
289
- def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
290
- """
291
- (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
292
- """
293
- return pulumi.get(self, "nsg_ids")
294
-
295
- @nsg_ids.setter
296
- def nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
297
- pulumi.set(self, "nsg_ids", value)
298
-
299
- @property
300
- @pulumi.getter(name="privateIp")
301
- def private_ip(self) -> Optional[pulumi.Input[str]]:
302
- """
303
- IP address of the Private Endpoint.
304
- """
305
- return pulumi.get(self, "private_ip")
306
-
307
- @private_ip.setter
308
- def private_ip(self, value: Optional[pulumi.Input[str]]):
309
- pulumi.set(self, "private_ip", value)
310
-
311
- @property
312
- @pulumi.getter(name="shardedDatabases")
313
- def sharded_databases(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
314
- """
315
- The OCIDs of sharded databases that consumes the given private endpoint.
316
- """
317
- return pulumi.get(self, "sharded_databases")
318
-
319
- @sharded_databases.setter
320
- def sharded_databases(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
321
- pulumi.set(self, "sharded_databases", value)
322
-
323
- @property
324
- @pulumi.getter
325
- def state(self) -> Optional[pulumi.Input[str]]:
326
- """
327
- Lifecycle states for private endpoint.
328
- """
329
- return pulumi.get(self, "state")
330
-
331
- @state.setter
332
- def state(self, value: Optional[pulumi.Input[str]]):
333
- pulumi.set(self, "state", value)
334
-
335
- @property
336
- @pulumi.getter(name="subnetId")
337
- def subnet_id(self) -> Optional[pulumi.Input[str]]:
338
- """
339
- Identifier of the customer subnet against which private endpoint is to be created.
340
-
341
-
342
- ** IMPORTANT **
343
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
344
- """
345
- return pulumi.get(self, "subnet_id")
346
-
347
- @subnet_id.setter
348
- def subnet_id(self, value: Optional[pulumi.Input[str]]):
349
- pulumi.set(self, "subnet_id", value)
350
-
351
- @property
352
- @pulumi.getter(name="systemTags")
353
- def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
354
- """
355
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
356
- """
357
- return pulumi.get(self, "system_tags")
358
-
359
- @system_tags.setter
360
- def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
361
- pulumi.set(self, "system_tags", value)
362
-
363
- @property
364
- @pulumi.getter(name="timeCreated")
365
- def time_created(self) -> Optional[pulumi.Input[str]]:
366
- """
367
- The time the PrivateEndpoint was first created. An RFC3339 formatted datetime string
368
- """
369
- return pulumi.get(self, "time_created")
370
-
371
- @time_created.setter
372
- def time_created(self, value: Optional[pulumi.Input[str]]):
373
- pulumi.set(self, "time_created", value)
374
-
375
- @property
376
- @pulumi.getter(name="timeUpdated")
377
- def time_updated(self) -> Optional[pulumi.Input[str]]:
378
- """
379
- The time the Private Endpoint was last updated. An RFC3339 formatted datetime string
380
- """
381
- return pulumi.get(self, "time_updated")
382
-
383
- @time_updated.setter
384
- def time_updated(self, value: Optional[pulumi.Input[str]]):
385
- pulumi.set(self, "time_updated", value)
386
-
387
- @property
388
- @pulumi.getter(name="vcnId")
389
- def vcn_id(self) -> Optional[pulumi.Input[str]]:
390
- """
391
- Identifier of the VCN in which subnet exists.
392
- """
393
- return pulumi.get(self, "vcn_id")
394
-
395
- @vcn_id.setter
396
- def vcn_id(self, value: Optional[pulumi.Input[str]]):
397
- pulumi.set(self, "vcn_id", value)
398
-
399
-
400
- class PrivateEndpoint(pulumi.CustomResource):
401
- @overload
402
- def __init__(__self__,
403
- resource_name: str,
404
- opts: Optional[pulumi.ResourceOptions] = None,
405
- compartment_id: Optional[pulumi.Input[str]] = None,
406
- defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
407
- description: Optional[pulumi.Input[str]] = None,
408
- display_name: Optional[pulumi.Input[str]] = None,
409
- freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
410
- nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
411
- subnet_id: Optional[pulumi.Input[str]] = None,
412
- __props__=None):
413
- """
414
- This resource provides the Private Endpoint resource in Oracle Cloud Infrastructure Globally Distributed Database service.
415
-
416
- Creates a PrivateEndpoint.
417
-
418
- ## Example Usage
419
-
420
- ```python
421
- import pulumi
422
- import pulumi_oci as oci
423
-
424
- test_private_endpoint = oci.globally_distributed_database.PrivateEndpoint("test_private_endpoint",
425
- compartment_id=compartment_id,
426
- display_name=private_endpoint_display_name,
427
- subnet_id=test_subnet["id"],
428
- defined_tags={
429
- "foo-namespace.bar-key": "value",
430
- },
431
- description=private_endpoint_description,
432
- freeform_tags={
433
- "bar-key": "value",
434
- },
435
- nsg_ids=private_endpoint_nsg_ids)
436
- ```
437
-
438
- ## Import
439
-
440
- PrivateEndpoints can be imported using the `id`, e.g.
441
-
442
- ```sh
443
- $ pulumi import oci:GloballyDistributedDatabase/privateEndpoint:PrivateEndpoint test_private_endpoint "id"
444
- ```
445
-
446
- :param str resource_name: The name of the resource.
447
- :param pulumi.ResourceOptions opts: Options for the resource.
448
- :param pulumi.Input[str] compartment_id: (Updatable) Identifier of the compartment where private endpoint is to be created.
449
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
450
- :param pulumi.Input[str] description: (Updatable) PrivateEndpoint description.
451
- :param pulumi.Input[str] display_name: (Updatable) Private endpoint display name.
452
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
453
- :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
454
- :param pulumi.Input[str] subnet_id: Identifier of the customer subnet against which private endpoint is to be created.
455
-
456
-
457
- ** IMPORTANT **
458
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
459
- """
460
- ...
461
- @overload
462
- def __init__(__self__,
463
- resource_name: str,
464
- args: PrivateEndpointArgs,
465
- opts: Optional[pulumi.ResourceOptions] = None):
466
- """
467
- This resource provides the Private Endpoint resource in Oracle Cloud Infrastructure Globally Distributed Database service.
468
-
469
- Creates a PrivateEndpoint.
470
-
471
- ## Example Usage
472
-
473
- ```python
474
- import pulumi
475
- import pulumi_oci as oci
476
-
477
- test_private_endpoint = oci.globally_distributed_database.PrivateEndpoint("test_private_endpoint",
478
- compartment_id=compartment_id,
479
- display_name=private_endpoint_display_name,
480
- subnet_id=test_subnet["id"],
481
- defined_tags={
482
- "foo-namespace.bar-key": "value",
483
- },
484
- description=private_endpoint_description,
485
- freeform_tags={
486
- "bar-key": "value",
487
- },
488
- nsg_ids=private_endpoint_nsg_ids)
489
- ```
490
-
491
- ## Import
492
-
493
- PrivateEndpoints can be imported using the `id`, e.g.
494
-
495
- ```sh
496
- $ pulumi import oci:GloballyDistributedDatabase/privateEndpoint:PrivateEndpoint test_private_endpoint "id"
497
- ```
498
-
499
- :param str resource_name: The name of the resource.
500
- :param PrivateEndpointArgs args: The arguments to use to populate this resource's properties.
501
- :param pulumi.ResourceOptions opts: Options for the resource.
502
- """
503
- ...
504
- def __init__(__self__, resource_name: str, *args, **kwargs):
505
- resource_args, opts = _utilities.get_resource_args_opts(PrivateEndpointArgs, pulumi.ResourceOptions, *args, **kwargs)
506
- if resource_args is not None:
507
- __self__._internal_init(resource_name, opts, **resource_args.__dict__)
508
- else:
509
- __self__._internal_init(resource_name, *args, **kwargs)
510
-
511
- def _internal_init(__self__,
512
- resource_name: str,
513
- opts: Optional[pulumi.ResourceOptions] = None,
514
- compartment_id: Optional[pulumi.Input[str]] = None,
515
- defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
516
- description: Optional[pulumi.Input[str]] = None,
517
- display_name: Optional[pulumi.Input[str]] = None,
518
- freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
519
- nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
520
- subnet_id: Optional[pulumi.Input[str]] = None,
521
- __props__=None):
522
- opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
523
- if not isinstance(opts, pulumi.ResourceOptions):
524
- raise TypeError('Expected resource options to be a ResourceOptions instance')
525
- if opts.id is None:
526
- if __props__ is not None:
527
- raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
528
- __props__ = PrivateEndpointArgs.__new__(PrivateEndpointArgs)
529
-
530
- if compartment_id is None and not opts.urn:
531
- raise TypeError("Missing required property 'compartment_id'")
532
- __props__.__dict__["compartment_id"] = compartment_id
533
- __props__.__dict__["defined_tags"] = defined_tags
534
- __props__.__dict__["description"] = description
535
- if display_name is None and not opts.urn:
536
- raise TypeError("Missing required property 'display_name'")
537
- __props__.__dict__["display_name"] = display_name
538
- __props__.__dict__["freeform_tags"] = freeform_tags
539
- __props__.__dict__["nsg_ids"] = nsg_ids
540
- if subnet_id is None and not opts.urn:
541
- raise TypeError("Missing required property 'subnet_id'")
542
- __props__.__dict__["subnet_id"] = subnet_id
543
- __props__.__dict__["lifecycle_state_details"] = None
544
- __props__.__dict__["private_ip"] = None
545
- __props__.__dict__["sharded_databases"] = None
546
- __props__.__dict__["state"] = None
547
- __props__.__dict__["system_tags"] = None
548
- __props__.__dict__["time_created"] = None
549
- __props__.__dict__["time_updated"] = None
550
- __props__.__dict__["vcn_id"] = None
551
- super(PrivateEndpoint, __self__).__init__(
552
- 'oci:GloballyDistributedDatabase/privateEndpoint:PrivateEndpoint',
553
- resource_name,
554
- __props__,
555
- opts)
556
-
557
- @staticmethod
558
- def get(resource_name: str,
559
- id: pulumi.Input[str],
560
- opts: Optional[pulumi.ResourceOptions] = None,
561
- compartment_id: Optional[pulumi.Input[str]] = None,
562
- defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
563
- description: Optional[pulumi.Input[str]] = None,
564
- display_name: Optional[pulumi.Input[str]] = None,
565
- freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
566
- lifecycle_state_details: Optional[pulumi.Input[str]] = None,
567
- nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
568
- private_ip: Optional[pulumi.Input[str]] = None,
569
- sharded_databases: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
570
- state: Optional[pulumi.Input[str]] = None,
571
- subnet_id: Optional[pulumi.Input[str]] = None,
572
- system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
573
- time_created: Optional[pulumi.Input[str]] = None,
574
- time_updated: Optional[pulumi.Input[str]] = None,
575
- vcn_id: Optional[pulumi.Input[str]] = None) -> 'PrivateEndpoint':
576
- """
577
- Get an existing PrivateEndpoint resource's state with the given name, id, and optional extra
578
- properties used to qualify the lookup.
579
-
580
- :param str resource_name: The unique name of the resulting resource.
581
- :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
582
- :param pulumi.ResourceOptions opts: Options for the resource.
583
- :param pulumi.Input[str] compartment_id: (Updatable) Identifier of the compartment where private endpoint is to be created.
584
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
585
- :param pulumi.Input[str] description: (Updatable) PrivateEndpoint description.
586
- :param pulumi.Input[str] display_name: (Updatable) Private endpoint display name.
587
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
588
- :param pulumi.Input[str] lifecycle_state_details: Detailed message for the lifecycle state.
589
- :param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
590
- :param pulumi.Input[str] private_ip: IP address of the Private Endpoint.
591
- :param pulumi.Input[Sequence[pulumi.Input[str]]] sharded_databases: The OCIDs of sharded databases that consumes the given private endpoint.
592
- :param pulumi.Input[str] state: Lifecycle states for private endpoint.
593
- :param pulumi.Input[str] subnet_id: Identifier of the customer subnet against which private endpoint is to be created.
594
-
595
-
596
- ** IMPORTANT **
597
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
598
- :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
599
- :param pulumi.Input[str] time_created: The time the PrivateEndpoint was first created. An RFC3339 formatted datetime string
600
- :param pulumi.Input[str] time_updated: The time the Private Endpoint was last updated. An RFC3339 formatted datetime string
601
- :param pulumi.Input[str] vcn_id: Identifier of the VCN in which subnet exists.
602
- """
603
- opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
604
-
605
- __props__ = _PrivateEndpointState.__new__(_PrivateEndpointState)
606
-
607
- __props__.__dict__["compartment_id"] = compartment_id
608
- __props__.__dict__["defined_tags"] = defined_tags
609
- __props__.__dict__["description"] = description
610
- __props__.__dict__["display_name"] = display_name
611
- __props__.__dict__["freeform_tags"] = freeform_tags
612
- __props__.__dict__["lifecycle_state_details"] = lifecycle_state_details
613
- __props__.__dict__["nsg_ids"] = nsg_ids
614
- __props__.__dict__["private_ip"] = private_ip
615
- __props__.__dict__["sharded_databases"] = sharded_databases
616
- __props__.__dict__["state"] = state
617
- __props__.__dict__["subnet_id"] = subnet_id
618
- __props__.__dict__["system_tags"] = system_tags
619
- __props__.__dict__["time_created"] = time_created
620
- __props__.__dict__["time_updated"] = time_updated
621
- __props__.__dict__["vcn_id"] = vcn_id
622
- return PrivateEndpoint(resource_name, opts=opts, __props__=__props__)
623
-
624
- @property
625
- @pulumi.getter(name="compartmentId")
626
- def compartment_id(self) -> pulumi.Output[str]:
627
- """
628
- (Updatable) Identifier of the compartment where private endpoint is to be created.
629
- """
630
- return pulumi.get(self, "compartment_id")
631
-
632
- @property
633
- @pulumi.getter(name="definedTags")
634
- def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
635
- """
636
- (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
637
- """
638
- return pulumi.get(self, "defined_tags")
639
-
640
- @property
641
- @pulumi.getter
642
- def description(self) -> pulumi.Output[str]:
643
- """
644
- (Updatable) PrivateEndpoint description.
645
- """
646
- return pulumi.get(self, "description")
647
-
648
- @property
649
- @pulumi.getter(name="displayName")
650
- def display_name(self) -> pulumi.Output[str]:
651
- """
652
- (Updatable) Private endpoint display name.
653
- """
654
- return pulumi.get(self, "display_name")
655
-
656
- @property
657
- @pulumi.getter(name="freeformTags")
658
- def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
659
- """
660
- (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
661
- """
662
- return pulumi.get(self, "freeform_tags")
663
-
664
- @property
665
- @pulumi.getter(name="lifecycleStateDetails")
666
- def lifecycle_state_details(self) -> pulumi.Output[str]:
667
- """
668
- Detailed message for the lifecycle state.
669
- """
670
- return pulumi.get(self, "lifecycle_state_details")
671
-
672
- @property
673
- @pulumi.getter(name="nsgIds")
674
- def nsg_ids(self) -> pulumi.Output[Sequence[str]]:
675
- """
676
- (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
677
- """
678
- return pulumi.get(self, "nsg_ids")
679
-
680
- @property
681
- @pulumi.getter(name="privateIp")
682
- def private_ip(self) -> pulumi.Output[str]:
683
- """
684
- IP address of the Private Endpoint.
685
- """
686
- return pulumi.get(self, "private_ip")
687
-
688
- @property
689
- @pulumi.getter(name="shardedDatabases")
690
- def sharded_databases(self) -> pulumi.Output[Sequence[str]]:
691
- """
692
- The OCIDs of sharded databases that consumes the given private endpoint.
693
- """
694
- return pulumi.get(self, "sharded_databases")
695
-
696
- @property
697
- @pulumi.getter
698
- def state(self) -> pulumi.Output[str]:
699
- """
700
- Lifecycle states for private endpoint.
701
- """
702
- return pulumi.get(self, "state")
703
-
704
- @property
705
- @pulumi.getter(name="subnetId")
706
- def subnet_id(self) -> pulumi.Output[str]:
707
- """
708
- Identifier of the customer subnet against which private endpoint is to be created.
709
-
710
-
711
- ** IMPORTANT **
712
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
713
- """
714
- return pulumi.get(self, "subnet_id")
715
-
716
- @property
717
- @pulumi.getter(name="systemTags")
718
- def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
719
- """
720
- Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
721
- """
722
- return pulumi.get(self, "system_tags")
723
-
724
- @property
725
- @pulumi.getter(name="timeCreated")
726
- def time_created(self) -> pulumi.Output[str]:
727
- """
728
- The time the PrivateEndpoint was first created. An RFC3339 formatted datetime string
729
- """
730
- return pulumi.get(self, "time_created")
731
-
732
- @property
733
- @pulumi.getter(name="timeUpdated")
734
- def time_updated(self) -> pulumi.Output[str]:
735
- """
736
- The time the Private Endpoint was last updated. An RFC3339 formatted datetime string
737
- """
738
- return pulumi.get(self, "time_updated")
739
-
740
- @property
741
- @pulumi.getter(name="vcnId")
742
- def vcn_id(self) -> pulumi.Output[str]:
743
- """
744
- Identifier of the VCN in which subnet exists.
745
- """
746
- return pulumi.get(self, "vcn_id")
747
-