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
pulumi_oci/dns/record.py
CHANGED
@@ -326,12 +326,11 @@ 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
|
-
|
334
|
-
required.
|
329
|
+
Replaces records in the specified zone with the records specified in the
|
330
|
+
request body. If a specified record does not exist, it will be created.
|
331
|
+
If the record exists, then it will be updated to represent the record in
|
332
|
+
the body of the request. If a record in the zone does not exist in the
|
333
|
+
request body, the record will be removed from the zone.
|
335
334
|
|
336
335
|
## Example Usage
|
337
336
|
|
@@ -343,6 +342,7 @@ class Record(pulumi.CustomResource):
|
|
343
342
|
zone_name_or_id=test_zone_name_or["id"],
|
344
343
|
domain=record_items_domain,
|
345
344
|
rtype=record_items_rtype,
|
345
|
+
compartment_id=compartment_id,
|
346
346
|
rdata=record_items_rdata,
|
347
347
|
ttl=record_items_ttl)
|
348
348
|
```
|
@@ -375,12 +375,11 @@ 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
|
-
|
383
|
-
required.
|
378
|
+
Replaces records in the specified zone with the records specified in the
|
379
|
+
request body. If a specified record does not exist, it will be created.
|
380
|
+
If the record exists, then it will be updated to represent the record in
|
381
|
+
the body of the request. If a record in the zone does not exist in the
|
382
|
+
request body, the record will be removed from the zone.
|
384
383
|
|
385
384
|
## Example Usage
|
386
385
|
|
@@ -392,6 +391,7 @@ class Record(pulumi.CustomResource):
|
|
392
391
|
zone_name_or_id=test_zone_name_or["id"],
|
393
392
|
domain=record_items_domain,
|
394
393
|
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: If specified, must be `PRIVATE` when creating private name resolvers.
|
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
|
+
If specified, must be `PRIVATE` when creating private name resolvers.
|
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: If specified, must be `PRIVATE` when creating private name resolvers.
|
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
|
+
If specified, must be `PRIVATE` when creating private name resolvers.
|
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: If specified, must be `PRIVATE` when creating private name resolvers.
|
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: If specified, must be `PRIVATE` when creating private name resolvers.
|
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
|
+
If specified, must be `PRIVATE` when creating private name resolvers.
|
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. Requires a `PRIVATE` scope query parameter.
|
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. Requires a `PRIVATE` scope query parameter.
|
527
527
|
|
528
528
|
## Example Usage
|
529
529
|
|
pulumi_oci/dns/rrset.py
CHANGED
@@ -37,13 +37,12 @@ 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
|
41
|
-
|
42
|
-
This parameter is deprecated and should be omitted.
|
40
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the resource belongs to.
|
43
41
|
:param pulumi.Input[Sequence[pulumi.Input['RrsetItemArgs']]] items: (Updatable)
|
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
|
-
|
42
|
+
**NOTE** Omitting `items` at time of create, will delete any existing records in the RRSet
|
43
|
+
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
44
|
+
This value will be null for zones in the global DNS and `PRIVATE` when creating private Rrsets.
|
45
|
+
:param pulumi.Input[str] view_id: The OCID of the view the resource is associated with.
|
47
46
|
"""
|
48
47
|
pulumi.set(__self__, "domain", domain)
|
49
48
|
pulumi.set(__self__, "rtype", rtype)
|
@@ -101,9 +100,7 @@ class RrsetArgs:
|
|
101
100
|
@pulumi.getter(name="compartmentId")
|
102
101
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
103
102
|
"""
|
104
|
-
(Updatable) The OCID of the compartment the
|
105
|
-
|
106
|
-
This parameter is deprecated and should be omitted.
|
103
|
+
(Updatable) The OCID of the compartment the resource belongs to.
|
107
104
|
"""
|
108
105
|
return pulumi.get(self, "compartment_id")
|
109
106
|
|
@@ -116,7 +113,7 @@ class RrsetArgs:
|
|
116
113
|
def items(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RrsetItemArgs']]]]:
|
117
114
|
"""
|
118
115
|
(Updatable)
|
119
|
-
**NOTE** Omitting `items` at time of create will delete any existing records in the RRSet
|
116
|
+
**NOTE** Omitting `items` at time of create, will delete any existing records in the RRSet
|
120
117
|
"""
|
121
118
|
return pulumi.get(self, "items")
|
122
119
|
|
@@ -128,7 +125,8 @@ class RrsetArgs:
|
|
128
125
|
@pulumi.getter
|
129
126
|
def scope(self) -> Optional[pulumi.Input[str]]:
|
130
127
|
"""
|
131
|
-
Specifies to operate only on resources that have a matching DNS scope.
|
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.
|
132
130
|
"""
|
133
131
|
return pulumi.get(self, "scope")
|
134
132
|
|
@@ -140,7 +138,7 @@ class RrsetArgs:
|
|
140
138
|
@pulumi.getter(name="viewId")
|
141
139
|
def view_id(self) -> Optional[pulumi.Input[str]]:
|
142
140
|
"""
|
143
|
-
The OCID of the view the
|
141
|
+
The OCID of the view the resource is associated with.
|
144
142
|
"""
|
145
143
|
return pulumi.get(self, "view_id")
|
146
144
|
|
@@ -161,15 +159,14 @@ class _RrsetState:
|
|
161
159
|
zone_name_or_id: Optional[pulumi.Input[str]] = None):
|
162
160
|
"""
|
163
161
|
Input properties used for looking up and filtering Rrset resources.
|
164
|
-
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the
|
165
|
-
|
166
|
-
This parameter is deprecated and should be omitted.
|
162
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the resource belongs to.
|
167
163
|
:param pulumi.Input[str] domain: The target fully-qualified domain name (FQDN) within the target zone.
|
168
164
|
:param pulumi.Input[Sequence[pulumi.Input['RrsetItemArgs']]] items: (Updatable)
|
169
|
-
**NOTE** Omitting `items` at time of create will delete any existing records in the RRSet
|
165
|
+
**NOTE** Omitting `items` at time of create, will delete any existing records in the RRSet
|
170
166
|
:param pulumi.Input[str] rtype: The type of the target RRSet within the target zone.
|
171
|
-
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
172
|
-
|
167
|
+
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
168
|
+
This value will be null for zones in the global DNS and `PRIVATE` when creating private Rrsets.
|
169
|
+
:param pulumi.Input[str] view_id: The OCID of the view the resource is associated with.
|
173
170
|
:param pulumi.Input[str] zone_name_or_id: The name or OCID of the target zone.
|
174
171
|
|
175
172
|
|
@@ -195,9 +192,7 @@ class _RrsetState:
|
|
195
192
|
@pulumi.getter(name="compartmentId")
|
196
193
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
197
194
|
"""
|
198
|
-
(Updatable) The OCID of the compartment the
|
199
|
-
|
200
|
-
This parameter is deprecated and should be omitted.
|
195
|
+
(Updatable) The OCID of the compartment the resource belongs to.
|
201
196
|
"""
|
202
197
|
return pulumi.get(self, "compartment_id")
|
203
198
|
|
@@ -222,7 +217,7 @@ class _RrsetState:
|
|
222
217
|
def items(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RrsetItemArgs']]]]:
|
223
218
|
"""
|
224
219
|
(Updatable)
|
225
|
-
**NOTE** Omitting `items` at time of create will delete any existing records in the RRSet
|
220
|
+
**NOTE** Omitting `items` at time of create, will delete any existing records in the RRSet
|
226
221
|
"""
|
227
222
|
return pulumi.get(self, "items")
|
228
223
|
|
@@ -246,7 +241,8 @@ class _RrsetState:
|
|
246
241
|
@pulumi.getter
|
247
242
|
def scope(self) -> Optional[pulumi.Input[str]]:
|
248
243
|
"""
|
249
|
-
Specifies to operate only on resources that have a matching DNS scope.
|
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.
|
250
246
|
"""
|
251
247
|
return pulumi.get(self, "scope")
|
252
248
|
|
@@ -258,7 +254,7 @@ class _RrsetState:
|
|
258
254
|
@pulumi.getter(name="viewId")
|
259
255
|
def view_id(self) -> Optional[pulumi.Input[str]]:
|
260
256
|
"""
|
261
|
-
The OCID of the view the
|
257
|
+
The OCID of the view the resource is associated with.
|
262
258
|
"""
|
263
259
|
return pulumi.get(self, "view_id")
|
264
260
|
|
@@ -299,10 +295,8 @@ class Rrset(pulumi.CustomResource):
|
|
299
295
|
"""
|
300
296
|
This resource provides the Rrset resource in Oracle Cloud Infrastructure DNS service.
|
301
297
|
|
302
|
-
|
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.
|
298
|
+
Replaces records in the specified RRSet. When the zone name is provided as a path parameter
|
299
|
+
and the zone has a scope of `PRIVATE` then the viewId query parameter is required.
|
306
300
|
|
307
301
|
## Example Usage
|
308
302
|
|
@@ -314,6 +308,7 @@ class Rrset(pulumi.CustomResource):
|
|
314
308
|
domain=rrset_domain,
|
315
309
|
rtype=rrset_rtype,
|
316
310
|
zone_name_or_id=test_zone["id"],
|
311
|
+
compartment_id=compartment_id,
|
317
312
|
items=[{
|
318
313
|
"domain": rrset_items_domain,
|
319
314
|
"rdata": rrset_items_rdata,
|
@@ -340,15 +335,14 @@ class Rrset(pulumi.CustomResource):
|
|
340
335
|
|
341
336
|
:param str resource_name: The name of the resource.
|
342
337
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
343
|
-
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the
|
344
|
-
|
345
|
-
This parameter is deprecated and should be omitted.
|
338
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the resource belongs to.
|
346
339
|
:param pulumi.Input[str] domain: The target fully-qualified domain name (FQDN) within the target zone.
|
347
340
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RrsetItemArgs', 'RrsetItemArgsDict']]]] items: (Updatable)
|
348
|
-
**NOTE** Omitting `items` at time of create will delete any existing records in the RRSet
|
341
|
+
**NOTE** Omitting `items` at time of create, will delete any existing records in the RRSet
|
349
342
|
:param pulumi.Input[str] rtype: The type of the target RRSet within the target zone.
|
350
|
-
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
351
|
-
|
343
|
+
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
344
|
+
This value will be null for zones in the global DNS and `PRIVATE` when creating private Rrsets.
|
345
|
+
:param pulumi.Input[str] view_id: The OCID of the view the resource is associated with.
|
352
346
|
:param pulumi.Input[str] zone_name_or_id: The name or OCID of the target zone.
|
353
347
|
|
354
348
|
|
@@ -364,10 +358,8 @@ class Rrset(pulumi.CustomResource):
|
|
364
358
|
"""
|
365
359
|
This resource provides the Rrset resource in Oracle Cloud Infrastructure DNS service.
|
366
360
|
|
367
|
-
|
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.
|
361
|
+
Replaces records in the specified RRSet. When the zone name is provided as a path parameter
|
362
|
+
and the zone has a scope of `PRIVATE` then the viewId query parameter is required.
|
371
363
|
|
372
364
|
## Example Usage
|
373
365
|
|
@@ -379,6 +371,7 @@ class Rrset(pulumi.CustomResource):
|
|
379
371
|
domain=rrset_domain,
|
380
372
|
rtype=rrset_rtype,
|
381
373
|
zone_name_or_id=test_zone["id"],
|
374
|
+
compartment_id=compartment_id,
|
382
375
|
items=[{
|
383
376
|
"domain": rrset_items_domain,
|
384
377
|
"rdata": rrset_items_rdata,
|
@@ -471,15 +464,14 @@ class Rrset(pulumi.CustomResource):
|
|
471
464
|
:param str resource_name: The unique name of the resulting resource.
|
472
465
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
473
466
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
474
|
-
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the
|
475
|
-
|
476
|
-
This parameter is deprecated and should be omitted.
|
467
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the resource belongs to.
|
477
468
|
:param pulumi.Input[str] domain: The target fully-qualified domain name (FQDN) within the target zone.
|
478
469
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RrsetItemArgs', 'RrsetItemArgsDict']]]] items: (Updatable)
|
479
|
-
**NOTE** Omitting `items` at time of create will delete any existing records in the RRSet
|
470
|
+
**NOTE** Omitting `items` at time of create, will delete any existing records in the RRSet
|
480
471
|
:param pulumi.Input[str] rtype: The type of the target RRSet within the target zone.
|
481
|
-
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
482
|
-
|
472
|
+
:param pulumi.Input[str] scope: Specifies to operate only on resources that have a matching DNS scope.
|
473
|
+
This value will be null for zones in the global DNS and `PRIVATE` when creating private Rrsets.
|
474
|
+
:param pulumi.Input[str] view_id: The OCID of the view the resource is associated with.
|
483
475
|
:param pulumi.Input[str] zone_name_or_id: The name or OCID of the target zone.
|
484
476
|
|
485
477
|
|
@@ -503,9 +495,7 @@ class Rrset(pulumi.CustomResource):
|
|
503
495
|
@pulumi.getter(name="compartmentId")
|
504
496
|
def compartment_id(self) -> pulumi.Output[str]:
|
505
497
|
"""
|
506
|
-
(Updatable) The OCID of the compartment the
|
507
|
-
|
508
|
-
This parameter is deprecated and should be omitted.
|
498
|
+
(Updatable) The OCID of the compartment the resource belongs to.
|
509
499
|
"""
|
510
500
|
return pulumi.get(self, "compartment_id")
|
511
501
|
|
@@ -522,7 +512,7 @@ class Rrset(pulumi.CustomResource):
|
|
522
512
|
def items(self) -> pulumi.Output[Sequence['outputs.RrsetItem']]:
|
523
513
|
"""
|
524
514
|
(Updatable)
|
525
|
-
**NOTE** Omitting `items` at time of create will delete any existing records in the RRSet
|
515
|
+
**NOTE** Omitting `items` at time of create, will delete any existing records in the RRSet
|
526
516
|
"""
|
527
517
|
return pulumi.get(self, "items")
|
528
518
|
|
@@ -538,7 +528,8 @@ class Rrset(pulumi.CustomResource):
|
|
538
528
|
@pulumi.getter
|
539
529
|
def scope(self) -> pulumi.Output[Optional[str]]:
|
540
530
|
"""
|
541
|
-
Specifies to operate only on resources that have a matching DNS scope.
|
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.
|
542
533
|
"""
|
543
534
|
return pulumi.get(self, "scope")
|
544
535
|
|
@@ -546,7 +537,7 @@ class Rrset(pulumi.CustomResource):
|
|
546
537
|
@pulumi.getter(name="viewId")
|
547
538
|
def view_id(self) -> pulumi.Output[Optional[str]]:
|
548
539
|
"""
|
549
|
-
The OCID of the view the
|
540
|
+
The OCID of the view the resource is associated with.
|
550
541
|
"""
|
551
542
|
return pulumi.get(self, "view_id")
|
552
543
|
|