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.
Files changed (65) hide show
  1. pulumi_oci/__init__.py +19 -24
  2. pulumi_oci/containerengine/_inputs.py +0 -341
  3. pulumi_oci/containerengine/cluster.py +0 -64
  4. pulumi_oci/containerengine/get_cluster.py +1 -12
  5. pulumi_oci/containerengine/outputs.py +0 -582
  6. pulumi_oci/core/_inputs.py +37 -299
  7. pulumi_oci/core/boot_volume.py +5 -90
  8. pulumi_oci/core/get_block_volume_replica.py +1 -15
  9. pulumi_oci/core/get_boot_volume.py +4 -15
  10. pulumi_oci/core/get_boot_volume_replica.py +1 -15
  11. pulumi_oci/core/get_volume.py +4 -18
  12. pulumi_oci/core/instance_configuration.py +0 -4
  13. pulumi_oci/core/outputs.py +46 -573
  14. pulumi_oci/core/volume.py +12 -110
  15. pulumi_oci/core/volume_backup_policy_assignment.py +19 -68
  16. pulumi_oci/core/volume_group.py +5 -56
  17. pulumi_oci/datasafe/__init__.py +0 -1
  18. pulumi_oci/desktops/_inputs.py +13 -175
  19. pulumi_oci/desktops/desktop_pool.py +0 -67
  20. pulumi_oci/desktops/get_desktop_pool.py +1 -16
  21. pulumi_oci/desktops/outputs.py +18 -339
  22. pulumi_oci/dns/__init__.py +0 -2
  23. pulumi_oci/dns/_inputs.py +12 -1157
  24. pulumi_oci/dns/action_create_zone_from_zone_file.py +2 -42
  25. pulumi_oci/dns/get_records.py +13 -45
  26. pulumi_oci/dns/get_resolver.py +6 -8
  27. pulumi_oci/dns/get_resolver_endpoint.py +6 -8
  28. pulumi_oci/dns/get_resolver_endpoints.py +2 -2
  29. pulumi_oci/dns/get_resolvers.py +12 -12
  30. pulumi_oci/dns/get_rrset.py +16 -16
  31. pulumi_oci/dns/get_rrsets.py +10 -12
  32. pulumi_oci/dns/get_view.py +4 -8
  33. pulumi_oci/dns/get_views.py +12 -12
  34. pulumi_oci/dns/get_zones.py +13 -33
  35. pulumi_oci/dns/outputs.py +79 -1388
  36. pulumi_oci/dns/record.py +12 -12
  37. pulumi_oci/dns/resolver.py +7 -7
  38. pulumi_oci/dns/resolver_endpoint.py +2 -2
  39. pulumi_oci/dns/rrset.py +41 -50
  40. pulumi_oci/dns/zone.py +17 -176
  41. pulumi_oci/globallydistributeddatabase/__init__.py +15 -0
  42. pulumi_oci/globallydistributeddatabase/_inputs.py +1289 -0
  43. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +323 -0
  44. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +191 -0
  45. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +660 -0
  46. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +191 -0
  47. pulumi_oci/globallydistributeddatabase/outputs.py +2063 -0
  48. pulumi_oci/globallydistributeddatabase/private_endpoint.py +747 -0
  49. pulumi_oci/globallydistributeddatabase/sharded_database.py +1821 -0
  50. pulumi_oci/goldengate/__init__.py +0 -1
  51. pulumi_oci/goldengate/_inputs.py +0 -165
  52. pulumi_oci/goldengate/connection.py +35 -49
  53. pulumi_oci/goldengate/database_registration.py +7 -7
  54. pulumi_oci/goldengate/deployment.py +4 -79
  55. pulumi_oci/goldengate/get_deployment.py +2 -30
  56. pulumi_oci/goldengate/outputs.py +2 -409
  57. pulumi_oci/pulumi-plugin.json +1 -1
  58. {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729059403.dist-info}/METADATA +1 -1
  59. {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729059403.dist-info}/RECORD +61 -56
  60. {pulumi_oci-2.13.0.dist-info → pulumi_oci-2.13.0a1729059403.dist-info}/WHEEL +1 -1
  61. pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +0 -271
  62. pulumi_oci/dns/zone_promote_dnssec_key_version.py +0 -328
  63. pulumi_oci/dns/zone_stage_dnssec_key_version.py +0 -318
  64. pulumi_oci/goldengate/get_deployment_environments.py +0 -144
  65. {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
- 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.
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
- 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.
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
  ```
@@ -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: Specifies to operate only on resources that have a matching DNS 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
- Specifies to operate only on resources that have a matching DNS scope.
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: Specifies to operate only on resources that have a matching DNS 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
- Specifies to operate only on resources that have a matching DNS scope.
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: Specifies to operate only on resources that have a matching DNS 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: Specifies to operate only on resources that have a matching DNS 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
- Specifies to operate only on resources that have a matching DNS scope.
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 in the same compartment as the resolver.
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 in the same compartment as the resolver.
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 zone belongs to.
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
- :param pulumi.Input[str] view_id: The OCID of the view the zone is associated with. Required when accessing a private zone by name.
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 zone belongs to.
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 zone is associated with. Required when accessing a private zone by name.
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 zone belongs to.
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
- :param pulumi.Input[str] view_id: The OCID of the view the zone is associated with. Required when accessing a private zone by name.
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 zone belongs to.
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 zone is associated with. Required when accessing a private zone by name.
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
- 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.
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 zone belongs to.
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
- :param pulumi.Input[str] view_id: The OCID of the view the zone is associated with. Required when accessing a private zone by name.
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
- 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.
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 zone belongs to.
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
- :param pulumi.Input[str] view_id: The OCID of the view the zone is associated with. Required when accessing a private zone by name.
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 zone belongs to.
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 zone is associated with. Required when accessing a private zone by name.
540
+ The OCID of the view the resource is associated with.
550
541
  """
551
542
  return pulumi.get(self, "view_id")
552
543