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.
- 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 +299 -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_volume.py +18 -4
- pulumi_oci/core/instance_configuration.py +4 -0
- pulumi_oci/core/outputs.py +573 -46
- 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/datasafe/__init__.py +1 -0
- pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -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/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/pulumi-plugin.json +1 -1
- {pulumi_oci-2.13.0a1729059403.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/METADATA +1 -1
- {pulumi_oci-2.13.0a1729059403.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/RECORD +56 -61
- {pulumi_oci-2.13.0a1729059403.dist-info → pulumi_oci-2.13.0a1729613556.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.0a1729059403.dist-info → pulumi_oci-2.13.0a1729613556.dist-info}/top_level.txt +0 -0
pulumi_oci/dns/record.py
CHANGED
@@ -326,11 +326,12 @@ class Record(pulumi.CustomResource):
|
|
326
326
|
|
327
327
|
This resource provides the Record resource in Oracle Cloud Infrastructure DNS service.
|
328
328
|
|
329
|
-
|
330
|
-
|
331
|
-
|
332
|
-
|
333
|
-
|
329
|
+
Updates a collection of records in the specified zone.
|
330
|
+
|
331
|
+
You can update one record or all records for the specified zone depending on the changes provided in the
|
332
|
+
request body. You can also add or remove records using this function. When the zone name is provided as
|
333
|
+
a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query parameter is
|
334
|
+
required.
|
334
335
|
|
335
336
|
## Example Usage
|
336
337
|
|
@@ -342,7 +343,6 @@ class Record(pulumi.CustomResource):
|
|
342
343
|
zone_name_or_id=test_zone_name_or["id"],
|
343
344
|
domain=record_items_domain,
|
344
345
|
rtype=record_items_rtype,
|
345
|
-
compartment_id=compartment_id,
|
346
346
|
rdata=record_items_rdata,
|
347
347
|
ttl=record_items_ttl)
|
348
348
|
```
|
@@ -375,11 +375,12 @@ class Record(pulumi.CustomResource):
|
|
375
375
|
|
376
376
|
This resource provides the Record resource in Oracle Cloud Infrastructure DNS service.
|
377
377
|
|
378
|
-
|
379
|
-
|
380
|
-
|
381
|
-
|
382
|
-
|
378
|
+
Updates a collection of records in the specified zone.
|
379
|
+
|
380
|
+
You can update one record or all records for the specified zone depending on the changes provided in the
|
381
|
+
request body. You can also add or remove records using this function. When the zone name is provided as
|
382
|
+
a path parameter and `PRIVATE` is used for the scope query parameter then the viewId query parameter is
|
383
|
+
required.
|
383
384
|
|
384
385
|
## Example Usage
|
385
386
|
|
@@ -391,7 +392,6 @@ class Record(pulumi.CustomResource):
|
|
391
392
|
zone_name_or_id=test_zone_name_or["id"],
|
392
393
|
domain=record_items_domain,
|
393
394
|
rtype=record_items_rtype,
|
394
|
-
compartment_id=compartment_id,
|
395
395
|
rdata=record_items_rdata,
|
396
396
|
ttl=record_items_ttl)
|
397
397
|
```
|
pulumi_oci/dns/resolver.py
CHANGED
@@ -42,7 +42,7 @@ class ResolverArgs:
|
|
42
42
|
|
43
43
|
**Example:** `{"Department": "Finance"}`
|
44
44
|
:param pulumi.Input[Sequence[pulumi.Input['ResolverRuleArgs']]] rules: (Updatable) Rules for the resolver. Rules are evaluated in order.
|
45
|
-
:param pulumi.Input[str] scope:
|
45
|
+
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
46
46
|
|
47
47
|
|
48
48
|
** IMPORTANT **
|
@@ -156,7 +156,7 @@ class ResolverArgs:
|
|
156
156
|
@pulumi.getter
|
157
157
|
def scope(self) -> Optional[pulumi.Input[str]]:
|
158
158
|
"""
|
159
|
-
|
159
|
+
Specifies to operate only on resources that have a matching DNS scope.
|
160
160
|
|
161
161
|
|
162
162
|
** IMPORTANT **
|
@@ -205,7 +205,7 @@ class _ResolverState:
|
|
205
205
|
:param pulumi.Input[bool] is_protected: A Boolean flag indicating whether or not parts of the resource are unable to be explicitly managed.
|
206
206
|
:param pulumi.Input[str] resolver_id: The OCID of the target resolver.
|
207
207
|
:param pulumi.Input[Sequence[pulumi.Input['ResolverRuleArgs']]] rules: (Updatable) Rules for the resolver. Rules are evaluated in order.
|
208
|
-
:param pulumi.Input[str] scope:
|
208
|
+
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
209
209
|
|
210
210
|
|
211
211
|
** IMPORTANT **
|
@@ -388,7 +388,7 @@ class _ResolverState:
|
|
388
388
|
@pulumi.getter
|
389
389
|
def scope(self) -> Optional[pulumi.Input[str]]:
|
390
390
|
"""
|
391
|
-
|
391
|
+
Specifies to operate only on resources that have a matching DNS scope.
|
392
392
|
|
393
393
|
|
394
394
|
** IMPORTANT **
|
@@ -492,7 +492,7 @@ class Resolver(pulumi.CustomResource):
|
|
492
492
|
**Example:** `{"Department": "Finance"}`
|
493
493
|
:param pulumi.Input[str] resolver_id: The OCID of the target resolver.
|
494
494
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ResolverRuleArgs', 'ResolverRuleArgsDict']]]] rules: (Updatable) Rules for the resolver. Rules are evaluated in order.
|
495
|
-
:param pulumi.Input[str] scope:
|
495
|
+
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
496
496
|
|
497
497
|
|
498
498
|
** IMPORTANT **
|
@@ -618,7 +618,7 @@ class Resolver(pulumi.CustomResource):
|
|
618
618
|
:param pulumi.Input[bool] is_protected: A Boolean flag indicating whether or not parts of the resource are unable to be explicitly managed.
|
619
619
|
:param pulumi.Input[str] resolver_id: The OCID of the target resolver.
|
620
620
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ResolverRuleArgs', 'ResolverRuleArgsDict']]]] rules: (Updatable) Rules for the resolver. Rules are evaluated in order.
|
621
|
-
:param pulumi.Input[str] scope:
|
621
|
+
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
622
622
|
|
623
623
|
|
624
624
|
** IMPORTANT **
|
@@ -746,7 +746,7 @@ class Resolver(pulumi.CustomResource):
|
|
746
746
|
@pulumi.getter
|
747
747
|
def scope(self) -> pulumi.Output[Optional[str]]:
|
748
748
|
"""
|
749
|
-
|
749
|
+
Specifies to operate only on resources that have a matching DNS scope.
|
750
750
|
|
751
751
|
|
752
752
|
** IMPORTANT **
|
@@ -463,7 +463,7 @@ class ResolverEndpoint(pulumi.CustomResource):
|
|
463
463
|
"""
|
464
464
|
This resource provides the Resolver Endpoint resource in Oracle Cloud Infrastructure DNS service.
|
465
465
|
|
466
|
-
Creates a new resolver endpoint
|
466
|
+
Creates a new resolver endpoint in the same compartment as the resolver.
|
467
467
|
|
468
468
|
## Example Usage
|
469
469
|
|
@@ -523,7 +523,7 @@ class ResolverEndpoint(pulumi.CustomResource):
|
|
523
523
|
"""
|
524
524
|
This resource provides the Resolver Endpoint resource in Oracle Cloud Infrastructure DNS service.
|
525
525
|
|
526
|
-
Creates a new resolver endpoint
|
526
|
+
Creates a new resolver endpoint in the same compartment as the resolver.
|
527
527
|
|
528
528
|
## Example Usage
|
529
529
|
|
pulumi_oci/dns/rrset.py
CHANGED
@@ -37,12 +37,13 @@ class RrsetArgs:
|
|
37
37
|
|
38
38
|
** IMPORTANT **
|
39
39
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
40
|
-
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the
|
40
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the zone belongs to.
|
41
|
+
|
42
|
+
This parameter is deprecated and should be omitted.
|
41
43
|
:param pulumi.Input[Sequence[pulumi.Input['RrsetItemArgs']]] items: (Updatable)
|
42
|
-
**NOTE** Omitting `items` at time of create
|
43
|
-
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
44
|
-
|
45
|
-
:param pulumi.Input[str] view_id: The OCID of the view the resource is associated with.
|
44
|
+
**NOTE** Omitting `items` at time of create will delete any existing records in the RRSet
|
45
|
+
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
46
|
+
:param pulumi.Input[str] view_id: The OCID of the view the zone is associated with. Required when accessing a private zone by name.
|
46
47
|
"""
|
47
48
|
pulumi.set(__self__, "domain", domain)
|
48
49
|
pulumi.set(__self__, "rtype", rtype)
|
@@ -100,7 +101,9 @@ class RrsetArgs:
|
|
100
101
|
@pulumi.getter(name="compartmentId")
|
101
102
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
102
103
|
"""
|
103
|
-
(Updatable) The OCID of the compartment the
|
104
|
+
(Updatable) The OCID of the compartment the zone belongs to.
|
105
|
+
|
106
|
+
This parameter is deprecated and should be omitted.
|
104
107
|
"""
|
105
108
|
return pulumi.get(self, "compartment_id")
|
106
109
|
|
@@ -113,7 +116,7 @@ class RrsetArgs:
|
|
113
116
|
def items(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RrsetItemArgs']]]]:
|
114
117
|
"""
|
115
118
|
(Updatable)
|
116
|
-
**NOTE** Omitting `items` at time of create
|
119
|
+
**NOTE** Omitting `items` at time of create will delete any existing records in the RRSet
|
117
120
|
"""
|
118
121
|
return pulumi.get(self, "items")
|
119
122
|
|
@@ -125,8 +128,7 @@ class RrsetArgs:
|
|
125
128
|
@pulumi.getter
|
126
129
|
def scope(self) -> Optional[pulumi.Input[str]]:
|
127
130
|
"""
|
128
|
-
Specifies to operate only on resources that have a matching DNS scope.
|
129
|
-
This value will be null for zones in the global DNS and `PRIVATE` when creating private Rrsets.
|
131
|
+
Specifies to operate only on resources that have a matching DNS scope.
|
130
132
|
"""
|
131
133
|
return pulumi.get(self, "scope")
|
132
134
|
|
@@ -138,7 +140,7 @@ class RrsetArgs:
|
|
138
140
|
@pulumi.getter(name="viewId")
|
139
141
|
def view_id(self) -> Optional[pulumi.Input[str]]:
|
140
142
|
"""
|
141
|
-
The OCID of the view the
|
143
|
+
The OCID of the view the zone is associated with. Required when accessing a private zone by name.
|
142
144
|
"""
|
143
145
|
return pulumi.get(self, "view_id")
|
144
146
|
|
@@ -159,14 +161,15 @@ class _RrsetState:
|
|
159
161
|
zone_name_or_id: Optional[pulumi.Input[str]] = None):
|
160
162
|
"""
|
161
163
|
Input properties used for looking up and filtering Rrset resources.
|
162
|
-
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the
|
164
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the zone belongs to.
|
165
|
+
|
166
|
+
This parameter is deprecated and should be omitted.
|
163
167
|
:param pulumi.Input[str] domain: The target fully-qualified domain name (FQDN) within the target zone.
|
164
168
|
:param pulumi.Input[Sequence[pulumi.Input['RrsetItemArgs']]] items: (Updatable)
|
165
|
-
**NOTE** Omitting `items` at time of create
|
169
|
+
**NOTE** Omitting `items` at time of create will delete any existing records in the RRSet
|
166
170
|
:param pulumi.Input[str] rtype: The type of the target RRSet within the target zone.
|
167
|
-
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
168
|
-
|
169
|
-
:param pulumi.Input[str] view_id: The OCID of the view the resource is associated with.
|
171
|
+
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
172
|
+
:param pulumi.Input[str] view_id: The OCID of the view the zone is associated with. Required when accessing a private zone by name.
|
170
173
|
:param pulumi.Input[str] zone_name_or_id: The name or OCID of the target zone.
|
171
174
|
|
172
175
|
|
@@ -192,7 +195,9 @@ class _RrsetState:
|
|
192
195
|
@pulumi.getter(name="compartmentId")
|
193
196
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
194
197
|
"""
|
195
|
-
(Updatable) The OCID of the compartment the
|
198
|
+
(Updatable) The OCID of the compartment the zone belongs to.
|
199
|
+
|
200
|
+
This parameter is deprecated and should be omitted.
|
196
201
|
"""
|
197
202
|
return pulumi.get(self, "compartment_id")
|
198
203
|
|
@@ -217,7 +222,7 @@ class _RrsetState:
|
|
217
222
|
def items(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RrsetItemArgs']]]]:
|
218
223
|
"""
|
219
224
|
(Updatable)
|
220
|
-
**NOTE** Omitting `items` at time of create
|
225
|
+
**NOTE** Omitting `items` at time of create will delete any existing records in the RRSet
|
221
226
|
"""
|
222
227
|
return pulumi.get(self, "items")
|
223
228
|
|
@@ -241,8 +246,7 @@ class _RrsetState:
|
|
241
246
|
@pulumi.getter
|
242
247
|
def scope(self) -> Optional[pulumi.Input[str]]:
|
243
248
|
"""
|
244
|
-
Specifies to operate only on resources that have a matching DNS scope.
|
245
|
-
This value will be null for zones in the global DNS and `PRIVATE` when creating private Rrsets.
|
249
|
+
Specifies to operate only on resources that have a matching DNS scope.
|
246
250
|
"""
|
247
251
|
return pulumi.get(self, "scope")
|
248
252
|
|
@@ -254,7 +258,7 @@ class _RrsetState:
|
|
254
258
|
@pulumi.getter(name="viewId")
|
255
259
|
def view_id(self) -> Optional[pulumi.Input[str]]:
|
256
260
|
"""
|
257
|
-
The OCID of the view the
|
261
|
+
The OCID of the view the zone is associated with. Required when accessing a private zone by name.
|
258
262
|
"""
|
259
263
|
return pulumi.get(self, "view_id")
|
260
264
|
|
@@ -295,8 +299,10 @@ class Rrset(pulumi.CustomResource):
|
|
295
299
|
"""
|
296
300
|
This resource provides the Rrset resource in Oracle Cloud Infrastructure DNS service.
|
297
301
|
|
298
|
-
|
299
|
-
|
302
|
+
Updates records in the specified RRSet.
|
303
|
+
|
304
|
+
When the zone name is provided as a path parameter and `PRIVATE` is used for the scope query
|
305
|
+
parameter then the viewId query parameter is required.
|
300
306
|
|
301
307
|
## Example Usage
|
302
308
|
|
@@ -308,7 +314,6 @@ class Rrset(pulumi.CustomResource):
|
|
308
314
|
domain=rrset_domain,
|
309
315
|
rtype=rrset_rtype,
|
310
316
|
zone_name_or_id=test_zone["id"],
|
311
|
-
compartment_id=compartment_id,
|
312
317
|
items=[{
|
313
318
|
"domain": rrset_items_domain,
|
314
319
|
"rdata": rrset_items_rdata,
|
@@ -335,14 +340,15 @@ class Rrset(pulumi.CustomResource):
|
|
335
340
|
|
336
341
|
:param str resource_name: The name of the resource.
|
337
342
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
338
|
-
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the
|
343
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the zone belongs to.
|
344
|
+
|
345
|
+
This parameter is deprecated and should be omitted.
|
339
346
|
:param pulumi.Input[str] domain: The target fully-qualified domain name (FQDN) within the target zone.
|
340
347
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RrsetItemArgs', 'RrsetItemArgsDict']]]] items: (Updatable)
|
341
|
-
**NOTE** Omitting `items` at time of create
|
348
|
+
**NOTE** Omitting `items` at time of create will delete any existing records in the RRSet
|
342
349
|
:param pulumi.Input[str] rtype: The type of the target RRSet within the target zone.
|
343
|
-
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
344
|
-
|
345
|
-
:param pulumi.Input[str] view_id: The OCID of the view the resource is associated with.
|
350
|
+
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
351
|
+
:param pulumi.Input[str] view_id: The OCID of the view the zone is associated with. Required when accessing a private zone by name.
|
346
352
|
:param pulumi.Input[str] zone_name_or_id: The name or OCID of the target zone.
|
347
353
|
|
348
354
|
|
@@ -358,8 +364,10 @@ class Rrset(pulumi.CustomResource):
|
|
358
364
|
"""
|
359
365
|
This resource provides the Rrset resource in Oracle Cloud Infrastructure DNS service.
|
360
366
|
|
361
|
-
|
362
|
-
|
367
|
+
Updates records in the specified RRSet.
|
368
|
+
|
369
|
+
When the zone name is provided as a path parameter and `PRIVATE` is used for the scope query
|
370
|
+
parameter then the viewId query parameter is required.
|
363
371
|
|
364
372
|
## Example Usage
|
365
373
|
|
@@ -371,7 +379,6 @@ class Rrset(pulumi.CustomResource):
|
|
371
379
|
domain=rrset_domain,
|
372
380
|
rtype=rrset_rtype,
|
373
381
|
zone_name_or_id=test_zone["id"],
|
374
|
-
compartment_id=compartment_id,
|
375
382
|
items=[{
|
376
383
|
"domain": rrset_items_domain,
|
377
384
|
"rdata": rrset_items_rdata,
|
@@ -464,14 +471,15 @@ class Rrset(pulumi.CustomResource):
|
|
464
471
|
:param str resource_name: The unique name of the resulting resource.
|
465
472
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
466
473
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
467
|
-
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the
|
474
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the zone belongs to.
|
475
|
+
|
476
|
+
This parameter is deprecated and should be omitted.
|
468
477
|
:param pulumi.Input[str] domain: The target fully-qualified domain name (FQDN) within the target zone.
|
469
478
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RrsetItemArgs', 'RrsetItemArgsDict']]]] items: (Updatable)
|
470
|
-
**NOTE** Omitting `items` at time of create
|
479
|
+
**NOTE** Omitting `items` at time of create will delete any existing records in the RRSet
|
471
480
|
:param pulumi.Input[str] rtype: The type of the target RRSet within the target zone.
|
472
|
-
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
473
|
-
|
474
|
-
:param pulumi.Input[str] view_id: The OCID of the view the resource is associated with.
|
481
|
+
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
482
|
+
:param pulumi.Input[str] view_id: The OCID of the view the zone is associated with. Required when accessing a private zone by name.
|
475
483
|
:param pulumi.Input[str] zone_name_or_id: The name or OCID of the target zone.
|
476
484
|
|
477
485
|
|
@@ -495,7 +503,9 @@ class Rrset(pulumi.CustomResource):
|
|
495
503
|
@pulumi.getter(name="compartmentId")
|
496
504
|
def compartment_id(self) -> pulumi.Output[str]:
|
497
505
|
"""
|
498
|
-
(Updatable) The OCID of the compartment the
|
506
|
+
(Updatable) The OCID of the compartment the zone belongs to.
|
507
|
+
|
508
|
+
This parameter is deprecated and should be omitted.
|
499
509
|
"""
|
500
510
|
return pulumi.get(self, "compartment_id")
|
501
511
|
|
@@ -512,7 +522,7 @@ class Rrset(pulumi.CustomResource):
|
|
512
522
|
def items(self) -> pulumi.Output[Sequence['outputs.RrsetItem']]:
|
513
523
|
"""
|
514
524
|
(Updatable)
|
515
|
-
**NOTE** Omitting `items` at time of create
|
525
|
+
**NOTE** Omitting `items` at time of create will delete any existing records in the RRSet
|
516
526
|
"""
|
517
527
|
return pulumi.get(self, "items")
|
518
528
|
|
@@ -528,8 +538,7 @@ class Rrset(pulumi.CustomResource):
|
|
528
538
|
@pulumi.getter
|
529
539
|
def scope(self) -> pulumi.Output[Optional[str]]:
|
530
540
|
"""
|
531
|
-
Specifies to operate only on resources that have a matching DNS scope.
|
532
|
-
This value will be null for zones in the global DNS and `PRIVATE` when creating private Rrsets.
|
541
|
+
Specifies to operate only on resources that have a matching DNS scope.
|
533
542
|
"""
|
534
543
|
return pulumi.get(self, "scope")
|
535
544
|
|
@@ -537,7 +546,7 @@ class Rrset(pulumi.CustomResource):
|
|
537
546
|
@pulumi.getter(name="viewId")
|
538
547
|
def view_id(self) -> pulumi.Output[Optional[str]]:
|
539
548
|
"""
|
540
|
-
The OCID of the view the
|
549
|
+
The OCID of the view the zone is associated with. Required when accessing a private zone by name.
|
541
550
|
"""
|
542
551
|
return pulumi.get(self, "view_id")
|
543
552
|
|