pulumi-oci 2.13.0__py3-none-any.whl → 2.13.0a1729059403__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 +19 -24
- pulumi_oci/containerengine/_inputs.py +0 -341
- pulumi_oci/containerengine/cluster.py +0 -64
- pulumi_oci/containerengine/get_cluster.py +1 -12
- pulumi_oci/containerengine/outputs.py +0 -582
- pulumi_oci/core/_inputs.py +37 -299
- pulumi_oci/core/boot_volume.py +5 -90
- pulumi_oci/core/get_block_volume_replica.py +1 -15
- pulumi_oci/core/get_boot_volume.py +4 -15
- pulumi_oci/core/get_boot_volume_replica.py +1 -15
- pulumi_oci/core/get_volume.py +4 -18
- pulumi_oci/core/instance_configuration.py +0 -4
- pulumi_oci/core/outputs.py +46 -573
- pulumi_oci/core/volume.py +12 -110
- pulumi_oci/core/volume_backup_policy_assignment.py +19 -68
- pulumi_oci/core/volume_group.py +5 -56
- pulumi_oci/datasafe/__init__.py +0 -1
- pulumi_oci/desktops/_inputs.py +13 -175
- pulumi_oci/desktops/desktop_pool.py +0 -67
- pulumi_oci/desktops/get_desktop_pool.py +1 -16
- pulumi_oci/desktops/outputs.py +18 -339
- pulumi_oci/dns/__init__.py +0 -2
- pulumi_oci/dns/_inputs.py +12 -1157
- pulumi_oci/dns/action_create_zone_from_zone_file.py +2 -42
- pulumi_oci/dns/get_records.py +13 -45
- pulumi_oci/dns/get_resolver.py +6 -8
- pulumi_oci/dns/get_resolver_endpoint.py +6 -8
- 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 +10 -12
- pulumi_oci/dns/get_view.py +4 -8
- pulumi_oci/dns/get_views.py +12 -12
- pulumi_oci/dns/get_zones.py +13 -33
- pulumi_oci/dns/outputs.py +79 -1388
- 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 +41 -50
- pulumi_oci/dns/zone.py +17 -176
- pulumi_oci/globallydistributeddatabase/__init__.py +15 -0
- pulumi_oci/globallydistributeddatabase/_inputs.py +1289 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +323 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +191 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +660 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +191 -0
- pulumi_oci/globallydistributeddatabase/outputs.py +2063 -0
- pulumi_oci/globallydistributeddatabase/private_endpoint.py +747 -0
- pulumi_oci/globallydistributeddatabase/sharded_database.py +1821 -0
- pulumi_oci/goldengate/__init__.py +0 -1
- pulumi_oci/goldengate/_inputs.py +0 -165
- pulumi_oci/goldengate/connection.py +35 -49
- pulumi_oci/goldengate/database_registration.py +7 -7
- pulumi_oci/goldengate/deployment.py +4 -79
- pulumi_oci/goldengate/get_deployment.py +2 -30
- pulumi_oci/goldengate/outputs.py +2 -409
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729059403.dist-info}/METADATA +1 -1
- {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729059403.dist-info}/RECORD +61 -56
- {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729059403.dist-info}/WHEEL +1 -1
- pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +0 -271
- pulumi_oci/dns/zone_promote_dnssec_key_version.py +0 -328
- pulumi_oci/dns/zone_stage_dnssec_key_version.py +0 -318
- pulumi_oci/goldengate/get_deployment_environments.py +0 -144
- {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729059403.dist-info}/top_level.txt +0 -0
@@ -102,8 +102,6 @@ class _ActionCreateZoneFromZoneFileState:
|
|
102
102
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
103
103
|
create_zone_from_zone_file_details: Optional[pulumi.Input[str]] = None,
|
104
104
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
105
|
-
dnssec_configs: Optional[pulumi.Input[Sequence[pulumi.Input['ActionCreateZoneFromZoneFileDnssecConfigArgs']]]] = None,
|
106
|
-
dnssec_state: Optional[pulumi.Input[str]] = None,
|
107
105
|
external_downstreams: Optional[pulumi.Input[Sequence[pulumi.Input['ActionCreateZoneFromZoneFileExternalDownstreamArgs']]]] = None,
|
108
106
|
external_masters: Optional[pulumi.Input[Sequence[pulumi.Input['ActionCreateZoneFromZoneFileExternalMasterArgs']]]] = None,
|
109
107
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -150,10 +148,6 @@ class _ActionCreateZoneFromZoneFileState:
|
|
150
148
|
pulumi.set(__self__, "create_zone_from_zone_file_details", create_zone_from_zone_file_details)
|
151
149
|
if defined_tags is not None:
|
152
150
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
153
|
-
if dnssec_configs is not None:
|
154
|
-
pulumi.set(__self__, "dnssec_configs", dnssec_configs)
|
155
|
-
if dnssec_state is not None:
|
156
|
-
pulumi.set(__self__, "dnssec_state", dnssec_state)
|
157
151
|
if external_downstreams is not None:
|
158
152
|
pulumi.set(__self__, "external_downstreams", external_downstreams)
|
159
153
|
if external_masters is not None:
|
@@ -221,24 +215,6 @@ class _ActionCreateZoneFromZoneFileState:
|
|
221
215
|
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
222
216
|
pulumi.set(self, "defined_tags", value)
|
223
217
|
|
224
|
-
@property
|
225
|
-
@pulumi.getter(name="dnssecConfigs")
|
226
|
-
def dnssec_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ActionCreateZoneFromZoneFileDnssecConfigArgs']]]]:
|
227
|
-
return pulumi.get(self, "dnssec_configs")
|
228
|
-
|
229
|
-
@dnssec_configs.setter
|
230
|
-
def dnssec_configs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ActionCreateZoneFromZoneFileDnssecConfigArgs']]]]):
|
231
|
-
pulumi.set(self, "dnssec_configs", value)
|
232
|
-
|
233
|
-
@property
|
234
|
-
@pulumi.getter(name="dnssecState")
|
235
|
-
def dnssec_state(self) -> Optional[pulumi.Input[str]]:
|
236
|
-
return pulumi.get(self, "dnssec_state")
|
237
|
-
|
238
|
-
@dnssec_state.setter
|
239
|
-
def dnssec_state(self, value: Optional[pulumi.Input[str]]):
|
240
|
-
pulumi.set(self, "dnssec_state", value)
|
241
|
-
|
242
218
|
@property
|
243
219
|
@pulumi.getter(name="externalDownstreams")
|
244
220
|
def external_downstreams(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ActionCreateZoneFromZoneFileExternalDownstreamArgs']]]]:
|
@@ -437,7 +413,7 @@ class ActionCreateZoneFromZoneFile(pulumi.CustomResource):
|
|
437
413
|
"""
|
438
414
|
This resource provides the Action Create Zone From Zone File resource in Oracle Cloud Infrastructure DNS service.
|
439
415
|
|
440
|
-
Creates a new zone from a zone file in the specified compartment.
|
416
|
+
Creates a new zone from a zone file in the specified compartment.
|
441
417
|
|
442
418
|
After the zone has been created, it should be further managed by importing it to an `Dns.Zone` resource.
|
443
419
|
|
@@ -482,7 +458,7 @@ class ActionCreateZoneFromZoneFile(pulumi.CustomResource):
|
|
482
458
|
"""
|
483
459
|
This resource provides the Action Create Zone From Zone File resource in Oracle Cloud Infrastructure DNS service.
|
484
460
|
|
485
|
-
Creates a new zone from a zone file in the specified compartment.
|
461
|
+
Creates a new zone from a zone file in the specified compartment.
|
486
462
|
|
487
463
|
After the zone has been created, it should be further managed by importing it to an `Dns.Zone` resource.
|
488
464
|
|
@@ -544,8 +520,6 @@ class ActionCreateZoneFromZoneFile(pulumi.CustomResource):
|
|
544
520
|
__props__.__dict__["scope"] = scope
|
545
521
|
__props__.__dict__["view_id"] = view_id
|
546
522
|
__props__.__dict__["defined_tags"] = None
|
547
|
-
__props__.__dict__["dnssec_configs"] = None
|
548
|
-
__props__.__dict__["dnssec_state"] = None
|
549
523
|
__props__.__dict__["external_downstreams"] = None
|
550
524
|
__props__.__dict__["external_masters"] = None
|
551
525
|
__props__.__dict__["freeform_tags"] = None
|
@@ -572,8 +546,6 @@ class ActionCreateZoneFromZoneFile(pulumi.CustomResource):
|
|
572
546
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
573
547
|
create_zone_from_zone_file_details: Optional[pulumi.Input[str]] = None,
|
574
548
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
575
|
-
dnssec_configs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ActionCreateZoneFromZoneFileDnssecConfigArgs', 'ActionCreateZoneFromZoneFileDnssecConfigArgsDict']]]]] = None,
|
576
|
-
dnssec_state: Optional[pulumi.Input[str]] = None,
|
577
549
|
external_downstreams: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ActionCreateZoneFromZoneFileExternalDownstreamArgs', 'ActionCreateZoneFromZoneFileExternalDownstreamArgsDict']]]]] = None,
|
578
550
|
external_masters: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ActionCreateZoneFromZoneFileExternalMasterArgs', 'ActionCreateZoneFromZoneFileExternalMasterArgsDict']]]]] = None,
|
579
551
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -626,8 +598,6 @@ class ActionCreateZoneFromZoneFile(pulumi.CustomResource):
|
|
626
598
|
__props__.__dict__["compartment_id"] = compartment_id
|
627
599
|
__props__.__dict__["create_zone_from_zone_file_details"] = create_zone_from_zone_file_details
|
628
600
|
__props__.__dict__["defined_tags"] = defined_tags
|
629
|
-
__props__.__dict__["dnssec_configs"] = dnssec_configs
|
630
|
-
__props__.__dict__["dnssec_state"] = dnssec_state
|
631
601
|
__props__.__dict__["external_downstreams"] = external_downstreams
|
632
602
|
__props__.__dict__["external_masters"] = external_masters
|
633
603
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
@@ -669,16 +639,6 @@ class ActionCreateZoneFromZoneFile(pulumi.CustomResource):
|
|
669
639
|
"""
|
670
640
|
return pulumi.get(self, "defined_tags")
|
671
641
|
|
672
|
-
@property
|
673
|
-
@pulumi.getter(name="dnssecConfigs")
|
674
|
-
def dnssec_configs(self) -> pulumi.Output[Sequence['outputs.ActionCreateZoneFromZoneFileDnssecConfig']]:
|
675
|
-
return pulumi.get(self, "dnssec_configs")
|
676
|
-
|
677
|
-
@property
|
678
|
-
@pulumi.getter(name="dnssecState")
|
679
|
-
def dnssec_state(self) -> pulumi.Output[str]:
|
680
|
-
return pulumi.get(self, "dnssec_state")
|
681
|
-
|
682
642
|
@property
|
683
643
|
@pulumi.getter(name="externalDownstreams")
|
684
644
|
def external_downstreams(self) -> pulumi.Output[Sequence['outputs.ActionCreateZoneFromZoneFileExternalDownstream']]:
|
pulumi_oci/dns/get_records.py
CHANGED
@@ -106,7 +106,7 @@ class GetRecordsResult:
|
|
106
106
|
@pulumi.getter
|
107
107
|
def rtype(self) -> Optional[str]:
|
108
108
|
"""
|
109
|
-
The
|
109
|
+
The canonical name for the record's type, such as A or CNAME. For more information, see [Resource Record (RR) TYPEs](https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#dns-parameters-4).
|
110
110
|
"""
|
111
111
|
return pulumi.get(self, "rtype")
|
112
112
|
|
@@ -169,30 +169,14 @@ def get_records(compartment_id: Optional[str] = None,
|
|
169
169
|
|
170
170
|
This data source provides the list of Records in Oracle Cloud Infrastructure DNS service.
|
171
171
|
|
172
|
-
Gets all records in the specified zone.
|
172
|
+
Gets all records in the specified zone. The results are sorted by `domain` in alphabetical order by default.
|
173
|
+
For more information about records, see [Resource Record (RR) TYPEs](https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#dns-parameters-4).
|
174
|
+
For private zones, the scope query parameter is required with a value of `PRIVATE`. When the zone name is
|
175
|
+
provided as a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query
|
176
|
+
parameter is required.
|
173
177
|
|
174
|
-
The results are sorted by `domain` in alphabetical order by default. For more information about records,
|
175
|
-
see [Resource Record (RR) TYPEs](https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#dns-parameters-4).
|
176
|
-
When the zone name is provided as a path parameter and `PRIVATE` is used for the scope query parameter
|
177
|
-
then the viewId query parameter is required.
|
178
178
|
|
179
|
-
|
180
|
-
|
181
|
-
```python
|
182
|
-
import pulumi
|
183
|
-
import pulumi_oci as oci
|
184
|
-
|
185
|
-
test_records = oci.Dns.get_records(zone_name_or_id=test_zone_name_or["id"],
|
186
|
-
domain=record_domain,
|
187
|
-
domain_contains=record_domain_contains,
|
188
|
-
rtype=record_rtype,
|
189
|
-
zone_version=record_zone_version)
|
190
|
-
```
|
191
|
-
|
192
|
-
|
193
|
-
:param str compartment_id: The OCID of the compartment the zone belongs to.
|
194
|
-
|
195
|
-
This parameter is deprecated and should be omitted.
|
179
|
+
:param str compartment_id: The OCID of the compartment the resource belongs to.
|
196
180
|
:param str domain: Search by domain. Will match any record whose domain (case-insensitive) equals the provided value.
|
197
181
|
:param str domain_contains: Search by domain. Will match any record whose domain (case-insensitive) contains the provided value.
|
198
182
|
:param str rtype: Search by record type. Will match any record whose [type](https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#dns-parameters-4) (case-insensitive) equals the provided value.
|
@@ -241,30 +225,14 @@ def get_records_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = N
|
|
241
225
|
|
242
226
|
This data source provides the list of Records in Oracle Cloud Infrastructure DNS service.
|
243
227
|
|
244
|
-
Gets all records in the specified zone.
|
245
|
-
|
246
|
-
|
247
|
-
|
248
|
-
|
249
|
-
then the viewId query parameter is required.
|
250
|
-
|
251
|
-
## Example Usage
|
252
|
-
|
253
|
-
```python
|
254
|
-
import pulumi
|
255
|
-
import pulumi_oci as oci
|
256
|
-
|
257
|
-
test_records = oci.Dns.get_records(zone_name_or_id=test_zone_name_or["id"],
|
258
|
-
domain=record_domain,
|
259
|
-
domain_contains=record_domain_contains,
|
260
|
-
rtype=record_rtype,
|
261
|
-
zone_version=record_zone_version)
|
262
|
-
```
|
228
|
+
Gets all records in the specified zone. The results are sorted by `domain` in alphabetical order by default.
|
229
|
+
For more information about records, see [Resource Record (RR) TYPEs](https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#dns-parameters-4).
|
230
|
+
For private zones, the scope query parameter is required with a value of `PRIVATE`. When the zone name is
|
231
|
+
provided as a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query
|
232
|
+
parameter is required.
|
263
233
|
|
264
234
|
|
265
|
-
:param str compartment_id: The OCID of the compartment the
|
266
|
-
|
267
|
-
This parameter is deprecated and should be omitted.
|
235
|
+
:param str compartment_id: The OCID of the compartment the resource belongs to.
|
268
236
|
:param str domain: Search by domain. Will match any record whose domain (case-insensitive) equals the provided value.
|
269
237
|
:param str domain_contains: Search by domain. Will match any record whose domain (case-insensitive) contains the provided value.
|
270
238
|
:param str rtype: Search by record type. Will match any record whose [type](https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#dns-parameters-4) (case-insensitive) equals the provided value.
|
pulumi_oci/dns/get_resolver.py
CHANGED
@@ -242,10 +242,9 @@ def get_resolver(resolver_id: Optional[str] = None,
|
|
242
242
|
"""
|
243
243
|
This data source provides details about a specific Resolver resource in Oracle Cloud Infrastructure DNS service.
|
244
244
|
|
245
|
-
Gets information about a specific resolver.
|
246
|
-
|
247
|
-
|
248
|
-
response to be consistent with other operations of the API.
|
245
|
+
Gets information about a specific resolver. Note that attempting to get a
|
246
|
+
resolver in the DELETED lifecycleState will result in a `404` response to be
|
247
|
+
consistent with other operations of the API. Requires a `PRIVATE` scope query parameter.
|
249
248
|
|
250
249
|
## Example Usage
|
251
250
|
|
@@ -291,10 +290,9 @@ def get_resolver_output(resolver_id: Optional[pulumi.Input[str]] = None,
|
|
291
290
|
"""
|
292
291
|
This data source provides details about a specific Resolver resource in Oracle Cloud Infrastructure DNS service.
|
293
292
|
|
294
|
-
Gets information about a specific resolver.
|
295
|
-
|
296
|
-
|
297
|
-
response to be consistent with other operations of the API.
|
293
|
+
Gets information about a specific resolver. Note that attempting to get a
|
294
|
+
resolver in the DELETED lifecycleState will result in a `404` response to be
|
295
|
+
consistent with other operations of the API. Requires a `PRIVATE` scope query parameter.
|
298
296
|
|
299
297
|
## Example Usage
|
300
298
|
|
@@ -236,10 +236,9 @@ def get_resolver_endpoint(resolver_endpoint_name: Optional[str] = None,
|
|
236
236
|
"""
|
237
237
|
This data source provides details about a specific Resolver Endpoint resource in Oracle Cloud Infrastructure DNS service.
|
238
238
|
|
239
|
-
Gets information about a specific resolver endpoint.
|
240
|
-
|
241
|
-
|
242
|
-
in a `404` response to be consistent with other operations of the API.
|
239
|
+
Gets information about a specific resolver endpoint. Note that attempting to get a resolver endpoint
|
240
|
+
in the DELETED lifecycle state will result in a `404` response to be consistent with other operations of the
|
241
|
+
API. Requires a `PRIVATE` scope query parameter.
|
243
242
|
|
244
243
|
## Example Usage
|
245
244
|
|
@@ -289,10 +288,9 @@ def get_resolver_endpoint_output(resolver_endpoint_name: Optional[pulumi.Input[s
|
|
289
288
|
"""
|
290
289
|
This data source provides details about a specific Resolver Endpoint resource in Oracle Cloud Infrastructure DNS service.
|
291
290
|
|
292
|
-
Gets information about a specific resolver endpoint.
|
293
|
-
|
294
|
-
|
295
|
-
in a `404` response to be consistent with other operations of the API.
|
291
|
+
Gets information about a specific resolver endpoint. Note that attempting to get a resolver endpoint
|
292
|
+
in the DELETED lifecycle state will result in a `404` response to be consistent with other operations of the
|
293
|
+
API. Requires a `PRIVATE` scope query parameter.
|
296
294
|
|
297
295
|
## Example Usage
|
298
296
|
|
@@ -126,7 +126,7 @@ def get_resolver_endpoints(filters: Optional[Sequence[Union['GetResolverEndpoint
|
|
126
126
|
Gets a list of all endpoints within a resolver. The collection can be filtered by name or lifecycle state.
|
127
127
|
It can be sorted on creation time or name both in ASC or DESC order. Note that when no lifecycleState
|
128
128
|
query parameter is provided, the collection does not include resolver endpoints in the DELETED
|
129
|
-
lifecycle state to be consistent with other operations of the API.
|
129
|
+
lifecycle state to be consistent with other operations of the API. Requires a `PRIVATE` scope query parameter.
|
130
130
|
|
131
131
|
## Example Usage
|
132
132
|
|
@@ -175,7 +175,7 @@ def get_resolver_endpoints_output(filters: Optional[pulumi.Input[Optional[Sequen
|
|
175
175
|
Gets a list of all endpoints within a resolver. The collection can be filtered by name or lifecycle state.
|
176
176
|
It can be sorted on creation time or name both in ASC or DESC order. Note that when no lifecycleState
|
177
177
|
query parameter is provided, the collection does not include resolver endpoints in the DELETED
|
178
|
-
lifecycle state to be consistent with other operations of the API.
|
178
|
+
lifecycle state to be consistent with other operations of the API. Requires a `PRIVATE` scope query parameter.
|
179
179
|
|
180
180
|
## Example Usage
|
181
181
|
|
pulumi_oci/dns/get_resolvers.py
CHANGED
@@ -127,12 +127,12 @@ def get_resolvers(compartment_id: Optional[str] = None,
|
|
127
127
|
"""
|
128
128
|
This data source provides the list of Resolvers in Oracle Cloud Infrastructure DNS service.
|
129
129
|
|
130
|
-
Gets a list of all resolvers within a compartment.
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
130
|
+
Gets a list of all resolvers within a compartment. The collection can
|
131
|
+
be filtered by display name, id, or lifecycle state. It can be sorted
|
132
|
+
on creation time or displayName both in ASC or DESC order. Note that
|
133
|
+
when no lifecycleState query parameter is provided, the collection
|
134
|
+
does not include resolvers in the DELETED lifecycleState to be consistent
|
135
|
+
with other operations of the API. Requires a `PRIVATE` scope query parameter.
|
136
136
|
|
137
137
|
## Example Usage
|
138
138
|
|
@@ -182,12 +182,12 @@ def get_resolvers_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
|
182
182
|
"""
|
183
183
|
This data source provides the list of Resolvers in Oracle Cloud Infrastructure DNS service.
|
184
184
|
|
185
|
-
Gets a list of all resolvers within a compartment.
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
185
|
+
Gets a list of all resolvers within a compartment. The collection can
|
186
|
+
be filtered by display name, id, or lifecycle state. It can be sorted
|
187
|
+
on creation time or displayName both in ASC or DESC order. Note that
|
188
|
+
when no lifecycleState query parameter is provided, the collection
|
189
|
+
does not include resolvers in the DELETED lifecycleState to be consistent
|
190
|
+
with other operations of the API. Requires a `PRIVATE` scope query parameter.
|
191
191
|
|
192
192
|
## Example Usage
|
193
193
|
|
pulumi_oci/dns/get_rrset.py
CHANGED
@@ -136,10 +136,10 @@ def get_rrset(compartment_id: Optional[str] = None,
|
|
136
136
|
"""
|
137
137
|
This data source provides details about a specific Rrset resource in Oracle Cloud Infrastructure DNS service.
|
138
138
|
|
139
|
-
Gets a list of all records in the specified RRSet.
|
140
|
-
|
141
|
-
|
142
|
-
|
139
|
+
Gets a list of all records in the specified RRSet. The results are sorted by `recordHash` by default. For
|
140
|
+
private zones, the scope query parameter is required with a value of `PRIVATE`. When the zone name is
|
141
|
+
provided as a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query
|
142
|
+
parameter is required.
|
143
143
|
|
144
144
|
## Example Usage
|
145
145
|
|
@@ -150,18 +150,18 @@ def get_rrset(compartment_id: Optional[str] = None,
|
|
150
150
|
test_rrset = oci.Dns.get_rrset(domain=rrset_domain,
|
151
151
|
rtype=rrset_rtype,
|
152
152
|
zone_name_or_id=test_zone["id"],
|
153
|
+
compartment_id=compartment_id,
|
153
154
|
scope=rrset_scope,
|
154
155
|
view_id=test_view["id"])
|
155
156
|
```
|
156
157
|
|
157
158
|
|
158
|
-
:param str compartment_id: The OCID of the compartment the
|
159
|
-
|
160
|
-
This parameter is deprecated and should be omitted.
|
159
|
+
:param str compartment_id: The OCID of the compartment the resource belongs to.
|
161
160
|
:param str domain: The target fully-qualified domain name (FQDN) within the target zone.
|
162
161
|
:param str rtype: The type of the target RRSet within the target zone.
|
163
162
|
:param str scope: Specifies to operate only on resources that have a matching DNS scope.
|
164
|
-
|
163
|
+
This value will be null for zones in the global DNS and `PRIVATE` when listing private Rrsets.
|
164
|
+
:param str view_id: The OCID of the view the resource is associated with.
|
165
165
|
:param str zone_name_or_id: The name or OCID of the target zone.
|
166
166
|
:param str zone_version: The version of the zone for which data is requested.
|
167
167
|
"""
|
@@ -197,10 +197,10 @@ def get_rrset_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = Non
|
|
197
197
|
"""
|
198
198
|
This data source provides details about a specific Rrset resource in Oracle Cloud Infrastructure DNS service.
|
199
199
|
|
200
|
-
Gets a list of all records in the specified RRSet.
|
201
|
-
|
202
|
-
|
203
|
-
|
200
|
+
Gets a list of all records in the specified RRSet. The results are sorted by `recordHash` by default. For
|
201
|
+
private zones, the scope query parameter is required with a value of `PRIVATE`. When the zone name is
|
202
|
+
provided as a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query
|
203
|
+
parameter is required.
|
204
204
|
|
205
205
|
## Example Usage
|
206
206
|
|
@@ -211,18 +211,18 @@ def get_rrset_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = Non
|
|
211
211
|
test_rrset = oci.Dns.get_rrset(domain=rrset_domain,
|
212
212
|
rtype=rrset_rtype,
|
213
213
|
zone_name_or_id=test_zone["id"],
|
214
|
+
compartment_id=compartment_id,
|
214
215
|
scope=rrset_scope,
|
215
216
|
view_id=test_view["id"])
|
216
217
|
```
|
217
218
|
|
218
219
|
|
219
|
-
:param str compartment_id: The OCID of the compartment the
|
220
|
-
|
221
|
-
This parameter is deprecated and should be omitted.
|
220
|
+
:param str compartment_id: The OCID of the compartment the resource belongs to.
|
222
221
|
:param str domain: The target fully-qualified domain name (FQDN) within the target zone.
|
223
222
|
:param str rtype: The type of the target RRSet within the target zone.
|
224
223
|
:param str scope: Specifies to operate only on resources that have a matching DNS scope.
|
225
|
-
|
224
|
+
This value will be null for zones in the global DNS and `PRIVATE` when listing private Rrsets.
|
225
|
+
:param str view_id: The OCID of the view the resource is associated with.
|
226
226
|
:param str zone_name_or_id: The name or OCID of the target zone.
|
227
227
|
:param str zone_version: The version of the zone for which data is requested.
|
228
228
|
"""
|
pulumi_oci/dns/get_rrsets.py
CHANGED
@@ -143,11 +143,10 @@ def get_rrsets(domain: Optional[str] = None,
|
|
143
143
|
"""
|
144
144
|
This data source provides the list of RRsets in Oracle Cloud Infrastructure DNS service.
|
145
145
|
|
146
|
-
Gets a list of all rrsets in the specified zone.
|
147
|
-
|
148
|
-
|
149
|
-
|
150
|
-
the viewId parameter is required.
|
146
|
+
Gets a list of all rrsets in the specified zone. You can optionally filter the results using the listed parameters.
|
147
|
+
For private zones, the scope query parameter is required with a value of `PRIVATE`. When the zone name is
|
148
|
+
provided as a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query
|
149
|
+
parameter is required.
|
151
150
|
|
152
151
|
## Example Usage
|
153
152
|
|
@@ -168,7 +167,7 @@ def get_rrsets(domain: Optional[str] = None,
|
|
168
167
|
:param str domain_contains: Matches any rrset whose fully-qualified domain name (FQDN) contains the provided value.
|
169
168
|
:param str rtype: Search by record type. Will match any record whose [type](https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#dns-parameters-4) (case-insensitive) equals the provided value.
|
170
169
|
:param str scope: Specifies to operate only on resources that have a matching DNS scope.
|
171
|
-
:param str view_id: The OCID of the view the
|
170
|
+
:param str view_id: The OCID of the view the resource is associated with.
|
172
171
|
:param str zone_name_or_id: The name or OCID of the target zone.
|
173
172
|
"""
|
174
173
|
__args__ = dict()
|
@@ -203,11 +202,10 @@ def get_rrsets_output(domain: Optional[pulumi.Input[Optional[str]]] = None,
|
|
203
202
|
"""
|
204
203
|
This data source provides the list of RRsets in Oracle Cloud Infrastructure DNS service.
|
205
204
|
|
206
|
-
Gets a list of all rrsets in the specified zone.
|
207
|
-
|
208
|
-
|
209
|
-
|
210
|
-
the viewId parameter is required.
|
205
|
+
Gets a list of all rrsets in the specified zone. You can optionally filter the results using the listed parameters.
|
206
|
+
For private zones, the scope query parameter is required with a value of `PRIVATE`. When the zone name is
|
207
|
+
provided as a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query
|
208
|
+
parameter is required.
|
211
209
|
|
212
210
|
## Example Usage
|
213
211
|
|
@@ -228,7 +226,7 @@ def get_rrsets_output(domain: Optional[pulumi.Input[Optional[str]]] = None,
|
|
228
226
|
:param str domain_contains: Matches any rrset whose fully-qualified domain name (FQDN) contains the provided value.
|
229
227
|
:param str rtype: Search by record type. Will match any record whose [type](https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#dns-parameters-4) (case-insensitive) equals the provided value.
|
230
228
|
:param str scope: Specifies to operate only on resources that have a matching DNS scope.
|
231
|
-
:param str view_id: The OCID of the view the
|
229
|
+
:param str view_id: The OCID of the view the resource is associated with.
|
232
230
|
:param str zone_name_or_id: The name or OCID of the target zone.
|
233
231
|
"""
|
234
232
|
__args__ = dict()
|
pulumi_oci/dns/get_view.py
CHANGED
@@ -181,11 +181,9 @@ def get_view(scope: Optional[str] = None,
|
|
181
181
|
"""
|
182
182
|
This data source provides details about a specific View resource in Oracle Cloud Infrastructure DNS service.
|
183
183
|
|
184
|
-
Gets information about a specific view.
|
185
|
-
|
186
|
-
Note that attempting to get a
|
184
|
+
Gets information about a specific view. Note that attempting to get a
|
187
185
|
view in the DELETED lifecycleState will result in a `404` response to be
|
188
|
-
consistent with other operations of the API.
|
186
|
+
consistent with other operations of the API. Requires a `PRIVATE` scope query parameter.
|
189
187
|
|
190
188
|
## Example Usage
|
191
189
|
|
@@ -226,11 +224,9 @@ def get_view_output(scope: Optional[pulumi.Input[Optional[str]]] = None,
|
|
226
224
|
"""
|
227
225
|
This data source provides details about a specific View resource in Oracle Cloud Infrastructure DNS service.
|
228
226
|
|
229
|
-
Gets information about a specific view.
|
230
|
-
|
231
|
-
Note that attempting to get a
|
227
|
+
Gets information about a specific view. Note that attempting to get a
|
232
228
|
view in the DELETED lifecycleState will result in a `404` response to be
|
233
|
-
consistent with other operations of the API.
|
229
|
+
consistent with other operations of the API. Requires a `PRIVATE` scope query parameter.
|
234
230
|
|
235
231
|
## Example Usage
|
236
232
|
|
pulumi_oci/dns/get_views.py
CHANGED
@@ -127,12 +127,12 @@ def get_views(compartment_id: Optional[str] = None,
|
|
127
127
|
"""
|
128
128
|
This data source provides the list of Views in Oracle Cloud Infrastructure DNS service.
|
129
129
|
|
130
|
-
Gets a list of all views within a compartment.
|
131
|
-
|
132
|
-
|
133
|
-
|
134
|
-
|
135
|
-
|
130
|
+
Gets a list of all views within a compartment. The collection can
|
131
|
+
be filtered by display name, id, or lifecycle state. It can be sorted
|
132
|
+
on creation time or displayName both in ASC or DESC order. Note that
|
133
|
+
when no lifecycleState query parameter is provided, the collection
|
134
|
+
does not include views in the DELETED lifecycleState to be consistent
|
135
|
+
with other operations of the API. Requires a `PRIVATE` scope query parameter.
|
136
136
|
|
137
137
|
## Example Usage
|
138
138
|
|
@@ -182,12 +182,12 @@ def get_views_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
|
182
182
|
"""
|
183
183
|
This data source provides the list of Views in Oracle Cloud Infrastructure DNS service.
|
184
184
|
|
185
|
-
Gets a list of all views within a compartment.
|
186
|
-
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
185
|
+
Gets a list of all views within a compartment. The collection can
|
186
|
+
be filtered by display name, id, or lifecycle state. It can be sorted
|
187
|
+
on creation time or displayName both in ASC or DESC order. Note that
|
188
|
+
when no lifecycleState query parameter is provided, the collection
|
189
|
+
does not include views in the DELETED lifecycleState to be consistent
|
190
|
+
with other operations of the API. Requires a `PRIVATE` scope query parameter.
|
191
191
|
|
192
192
|
## Example Usage
|
193
193
|
|