pulumi-oci 2.19.0a1733984857__py3-none-any.whl → 2.19.0a1734003732__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 (87) hide show
  1. pulumi_oci/__init__.py +40 -0
  2. pulumi_oci/database/autonomous_container_database.py +47 -0
  3. pulumi_oci/database/autonomous_database.py +47 -0
  4. pulumi_oci/database/get_autonomous_container_database.py +15 -1
  5. pulumi_oci/database/get_autonomous_database.py +15 -1
  6. pulumi_oci/database/outputs.py +14 -0
  7. pulumi_oci/dataflow/application.py +75 -33
  8. pulumi_oci/dataflow/get_application.py +15 -1
  9. pulumi_oci/dataflow/outputs.py +7 -0
  10. pulumi_oci/desktops/_inputs.py +9 -9
  11. pulumi_oci/desktops/desktop_pool.py +84 -35
  12. pulumi_oci/desktops/get_desktop_pool.py +12 -1
  13. pulumi_oci/desktops/outputs.py +13 -6
  14. pulumi_oci/disasterrecovery/_inputs.py +46 -30
  15. pulumi_oci/disasterrecovery/dr_plan.py +194 -23
  16. pulumi_oci/disasterrecovery/get_dr_plan.py +54 -4
  17. pulumi_oci/disasterrecovery/get_dr_plans.py +23 -1
  18. pulumi_oci/disasterrecovery/outputs.py +113 -21
  19. pulumi_oci/fleetappsmanagement/__init__.py +19 -0
  20. pulumi_oci/fleetappsmanagement/_inputs.py +5334 -378
  21. pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +830 -0
  22. pulumi_oci/fleetappsmanagement/fleet.py +112 -67
  23. pulumi_oci/fleetappsmanagement/fleet_credential.py +44 -36
  24. pulumi_oci/fleetappsmanagement/fleet_property.py +35 -35
  25. pulumi_oci/fleetappsmanagement/fleet_resource.py +37 -37
  26. pulumi_oci/fleetappsmanagement/get_announcements.py +4 -4
  27. pulumi_oci/fleetappsmanagement/get_compliance_policies.py +199 -0
  28. pulumi_oci/fleetappsmanagement/get_compliance_policy.py +253 -0
  29. pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +324 -0
  30. pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +243 -0
  31. pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +144 -0
  32. pulumi_oci/fleetappsmanagement/get_compliance_records.py +279 -0
  33. pulumi_oci/fleetappsmanagement/get_fleet.py +29 -15
  34. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +8 -8
  35. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +7 -7
  36. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +61 -17
  37. pulumi_oci/fleetappsmanagement/get_fleet_products.py +6 -6
  38. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +8 -8
  39. pulumi_oci/fleetappsmanagement/get_fleet_property.py +11 -11
  40. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +11 -11
  41. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +10 -10
  42. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +8 -8
  43. pulumi_oci/fleetappsmanagement/get_fleets.py +16 -16
  44. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +12 -12
  45. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +8 -8
  46. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +31 -12
  47. pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +144 -0
  48. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +2 -2
  49. pulumi_oci/fleetappsmanagement/get_onboardings.py +2 -2
  50. pulumi_oci/fleetappsmanagement/get_patch.py +363 -0
  51. pulumi_oci/fleetappsmanagement/get_patches.py +335 -0
  52. pulumi_oci/fleetappsmanagement/get_platform_configuration.py +296 -0
  53. pulumi_oci/fleetappsmanagement/get_platform_configurations.py +221 -0
  54. pulumi_oci/fleetappsmanagement/get_properties.py +9 -9
  55. pulumi_oci/fleetappsmanagement/get_property.py +4 -4
  56. pulumi_oci/fleetappsmanagement/get_runbook.py +8 -8
  57. pulumi_oci/fleetappsmanagement/get_runbooks.py +16 -16
  58. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +10 -10
  59. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +2 -2
  60. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +33 -11
  61. pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +144 -0
  62. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_resources.py +245 -0
  63. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +245 -0
  64. pulumi_oci/fleetappsmanagement/get_task_record.py +3 -3
  65. pulumi_oci/fleetappsmanagement/maintenance_window.py +44 -44
  66. pulumi_oci/fleetappsmanagement/onboarding.py +108 -20
  67. pulumi_oci/fleetappsmanagement/outputs.py +11222 -2736
  68. pulumi_oci/fleetappsmanagement/patch.py +978 -0
  69. pulumi_oci/fleetappsmanagement/platform_configuration.py +687 -0
  70. pulumi_oci/fleetappsmanagement/property.py +27 -27
  71. pulumi_oci/fleetappsmanagement/runbook.py +1173 -0
  72. pulumi_oci/fleetappsmanagement/scheduler_definition.py +30 -30
  73. pulumi_oci/fleetappsmanagement/task_record.py +754 -0
  74. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +28 -0
  75. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +56 -0
  76. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +15 -1
  77. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +29 -1
  78. pulumi_oci/fleetsoftwareupdate/outputs.py +33 -0
  79. pulumi_oci/pulumi-plugin.json +1 -1
  80. pulumi_oci/visualbuilder/_inputs.py +57 -202
  81. pulumi_oci/visualbuilder/get_vb_instance.py +15 -29
  82. pulumi_oci/visualbuilder/outputs.py +114 -400
  83. pulumi_oci/visualbuilder/vb_instance.py +62 -59
  84. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/METADATA +1 -1
  85. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/RECORD +87 -68
  86. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/WHEEL +0 -0
  87. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/top_level.txt +0 -0
@@ -16,10 +16,10 @@ from .. import _utilities
16
16
  from . import outputs
17
17
  from ._inputs import *
18
18
 
19
- __all__ = ['FleetCredentialArgs', 'FleetCredential']
19
+ __all__ = ['FleetCredentialInitArgs', 'FleetCredential']
20
20
 
21
21
  @pulumi.input_type
22
- class FleetCredentialArgs:
22
+ class FleetCredentialInitArgs:
23
23
  def __init__(__self__, *,
24
24
  compartment_id: pulumi.Input[str],
25
25
  display_name: pulumi.Input[str],
@@ -31,10 +31,10 @@ class FleetCredentialArgs:
31
31
  The set of arguments for constructing a FleetCredential resource.
32
32
  :param pulumi.Input[str] compartment_id: Tenancy OCID
33
33
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
34
- :param pulumi.Input['FleetCredentialEntitySpecificsArgs'] entity_specifics: (Updatable) Credential Details
35
- :param pulumi.Input[str] fleet_id: unique Fleet identifier
36
- :param pulumi.Input['FleetCredentialPasswordArgs'] password: (Updatable) Credential Details
37
- :param pulumi.Input['FleetCredentialUserArgs'] user: (Updatable) Credential Details
34
+ :param pulumi.Input['FleetCredentialEntitySpecificsArgs'] entity_specifics: (Updatable) Credential specific Details.
35
+ :param pulumi.Input[str] fleet_id: Unique Fleet identifier.
36
+ :param pulumi.Input['FleetCredentialPasswordArgs'] password: (Updatable) Credential Details.
37
+ :param pulumi.Input['FleetCredentialUserArgs'] user: (Updatable) Credential Details.
38
38
  """
39
39
  pulumi.set(__self__, "compartment_id", compartment_id)
40
40
  pulumi.set(__self__, "display_name", display_name)
@@ -71,7 +71,7 @@ class FleetCredentialArgs:
71
71
  @pulumi.getter(name="entitySpecifics")
72
72
  def entity_specifics(self) -> pulumi.Input['FleetCredentialEntitySpecificsArgs']:
73
73
  """
74
- (Updatable) Credential Details
74
+ (Updatable) Credential specific Details.
75
75
  """
76
76
  return pulumi.get(self, "entity_specifics")
77
77
 
@@ -83,7 +83,7 @@ class FleetCredentialArgs:
83
83
  @pulumi.getter(name="fleetId")
84
84
  def fleet_id(self) -> pulumi.Input[str]:
85
85
  """
86
- unique Fleet identifier
86
+ Unique Fleet identifier.
87
87
  """
88
88
  return pulumi.get(self, "fleet_id")
89
89
 
@@ -95,7 +95,7 @@ class FleetCredentialArgs:
95
95
  @pulumi.getter
96
96
  def password(self) -> pulumi.Input['FleetCredentialPasswordArgs']:
97
97
  """
98
- (Updatable) Credential Details
98
+ (Updatable) Credential Details.
99
99
  """
100
100
  return pulumi.get(self, "password")
101
101
 
@@ -107,7 +107,7 @@ class FleetCredentialArgs:
107
107
  @pulumi.getter
108
108
  def user(self) -> pulumi.Input['FleetCredentialUserArgs']:
109
109
  """
110
- (Updatable) Credential Details
110
+ (Updatable) Credential Details.
111
111
  """
112
112
  return pulumi.get(self, "user")
113
113
 
@@ -134,15 +134,15 @@ class _FleetCredentialState:
134
134
  Input properties used for looking up and filtering FleetCredential resources.
135
135
  :param pulumi.Input[str] compartment_id: Tenancy OCID
136
136
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
137
- :param pulumi.Input['FleetCredentialEntitySpecificsArgs'] entity_specifics: (Updatable) Credential Details
138
- :param pulumi.Input[str] fleet_id: unique Fleet identifier
137
+ :param pulumi.Input['FleetCredentialEntitySpecificsArgs'] entity_specifics: (Updatable) Credential specific Details.
138
+ :param pulumi.Input[str] fleet_id: Unique Fleet identifier.
139
139
  :param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
140
- :param pulumi.Input['FleetCredentialPasswordArgs'] password: (Updatable) Credential Details
140
+ :param pulumi.Input['FleetCredentialPasswordArgs'] password: (Updatable) Credential Details.
141
141
  :param pulumi.Input[str] state: The current state of the FleetCredential.
142
142
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
143
143
  :param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
144
144
  :param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
145
- :param pulumi.Input['FleetCredentialUserArgs'] user: (Updatable) Credential Details
145
+ :param pulumi.Input['FleetCredentialUserArgs'] user: (Updatable) Credential Details.
146
146
  """
147
147
  if compartment_id is not None:
148
148
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -195,7 +195,7 @@ class _FleetCredentialState:
195
195
  @pulumi.getter(name="entitySpecifics")
196
196
  def entity_specifics(self) -> Optional[pulumi.Input['FleetCredentialEntitySpecificsArgs']]:
197
197
  """
198
- (Updatable) Credential Details
198
+ (Updatable) Credential specific Details.
199
199
  """
200
200
  return pulumi.get(self, "entity_specifics")
201
201
 
@@ -207,7 +207,7 @@ class _FleetCredentialState:
207
207
  @pulumi.getter(name="fleetId")
208
208
  def fleet_id(self) -> Optional[pulumi.Input[str]]:
209
209
  """
210
- unique Fleet identifier
210
+ Unique Fleet identifier.
211
211
  """
212
212
  return pulumi.get(self, "fleet_id")
213
213
 
@@ -231,7 +231,7 @@ class _FleetCredentialState:
231
231
  @pulumi.getter
232
232
  def password(self) -> Optional[pulumi.Input['FleetCredentialPasswordArgs']]:
233
233
  """
234
- (Updatable) Credential Details
234
+ (Updatable) Credential Details.
235
235
  """
236
236
  return pulumi.get(self, "password")
237
237
 
@@ -291,7 +291,7 @@ class _FleetCredentialState:
291
291
  @pulumi.getter
292
292
  def user(self) -> Optional[pulumi.Input['FleetCredentialUserArgs']]:
293
293
  """
294
- (Updatable) Credential Details
294
+ (Updatable) Credential Details.
295
295
  """
296
296
  return pulumi.get(self, "user")
297
297
 
@@ -315,7 +315,7 @@ class FleetCredential(pulumi.CustomResource):
315
315
  """
316
316
  This resource provides the Fleet Credential resource in Oracle Cloud Infrastructure Fleet Apps Management service.
317
317
 
318
- Creates a new FleetCredential.
318
+ Add credentials to a fleet in Fleet Application Management.
319
319
 
320
320
  ## Example Usage
321
321
 
@@ -330,6 +330,10 @@ class FleetCredential(pulumi.CustomResource):
330
330
  "credential_level": fleet_credential_entity_specifics_credential_level,
331
331
  "resource_id": test_resource["id"],
332
332
  "target": fleet_credential_entity_specifics_target,
333
+ "variables": [{
334
+ "name": fleet_credential_entity_specifics_variables_name,
335
+ "value": fleet_credential_entity_specifics_variables_value,
336
+ }],
333
337
  },
334
338
  fleet_id=test_fleet["id"],
335
339
  password={
@@ -360,21 +364,21 @@ class FleetCredential(pulumi.CustomResource):
360
364
  :param pulumi.ResourceOptions opts: Options for the resource.
361
365
  :param pulumi.Input[str] compartment_id: Tenancy OCID
362
366
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
363
- :param pulumi.Input[Union['FleetCredentialEntitySpecificsArgs', 'FleetCredentialEntitySpecificsArgsDict']] entity_specifics: (Updatable) Credential Details
364
- :param pulumi.Input[str] fleet_id: unique Fleet identifier
365
- :param pulumi.Input[Union['FleetCredentialPasswordArgs', 'FleetCredentialPasswordArgsDict']] password: (Updatable) Credential Details
366
- :param pulumi.Input[Union['FleetCredentialUserArgs', 'FleetCredentialUserArgsDict']] user: (Updatable) Credential Details
367
+ :param pulumi.Input[Union['FleetCredentialEntitySpecificsArgs', 'FleetCredentialEntitySpecificsArgsDict']] entity_specifics: (Updatable) Credential specific Details.
368
+ :param pulumi.Input[str] fleet_id: Unique Fleet identifier.
369
+ :param pulumi.Input[Union['FleetCredentialPasswordArgs', 'FleetCredentialPasswordArgsDict']] password: (Updatable) Credential Details.
370
+ :param pulumi.Input[Union['FleetCredentialUserArgs', 'FleetCredentialUserArgsDict']] user: (Updatable) Credential Details.
367
371
  """
368
372
  ...
369
373
  @overload
370
374
  def __init__(__self__,
371
375
  resource_name: str,
372
- args: FleetCredentialArgs,
376
+ args: FleetCredentialInitArgs,
373
377
  opts: Optional[pulumi.ResourceOptions] = None):
374
378
  """
375
379
  This resource provides the Fleet Credential resource in Oracle Cloud Infrastructure Fleet Apps Management service.
376
380
 
377
- Creates a new FleetCredential.
381
+ Add credentials to a fleet in Fleet Application Management.
378
382
 
379
383
  ## Example Usage
380
384
 
@@ -389,6 +393,10 @@ class FleetCredential(pulumi.CustomResource):
389
393
  "credential_level": fleet_credential_entity_specifics_credential_level,
390
394
  "resource_id": test_resource["id"],
391
395
  "target": fleet_credential_entity_specifics_target,
396
+ "variables": [{
397
+ "name": fleet_credential_entity_specifics_variables_name,
398
+ "value": fleet_credential_entity_specifics_variables_value,
399
+ }],
392
400
  },
393
401
  fleet_id=test_fleet["id"],
394
402
  password={
@@ -416,12 +424,12 @@ class FleetCredential(pulumi.CustomResource):
416
424
  Import is not supported for this resource.
417
425
 
418
426
  :param str resource_name: The name of the resource.
419
- :param FleetCredentialArgs args: The arguments to use to populate this resource's properties.
427
+ :param FleetCredentialInitArgs args: The arguments to use to populate this resource's properties.
420
428
  :param pulumi.ResourceOptions opts: Options for the resource.
421
429
  """
422
430
  ...
423
431
  def __init__(__self__, resource_name: str, *args, **kwargs):
424
- resource_args, opts = _utilities.get_resource_args_opts(FleetCredentialArgs, pulumi.ResourceOptions, *args, **kwargs)
432
+ resource_args, opts = _utilities.get_resource_args_opts(FleetCredentialInitArgs, pulumi.ResourceOptions, *args, **kwargs)
425
433
  if resource_args is not None:
426
434
  __self__._internal_init(resource_name, opts, **resource_args.__dict__)
427
435
  else:
@@ -443,7 +451,7 @@ class FleetCredential(pulumi.CustomResource):
443
451
  if opts.id is None:
444
452
  if __props__ is not None:
445
453
  raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
446
- __props__ = FleetCredentialArgs.__new__(FleetCredentialArgs)
454
+ __props__ = FleetCredentialInitArgs.__new__(FleetCredentialInitArgs)
447
455
 
448
456
  if compartment_id is None and not opts.urn:
449
457
  raise TypeError("Missing required property 'compartment_id'")
@@ -498,15 +506,15 @@ class FleetCredential(pulumi.CustomResource):
498
506
  :param pulumi.ResourceOptions opts: Options for the resource.
499
507
  :param pulumi.Input[str] compartment_id: Tenancy OCID
500
508
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
501
- :param pulumi.Input[Union['FleetCredentialEntitySpecificsArgs', 'FleetCredentialEntitySpecificsArgsDict']] entity_specifics: (Updatable) Credential Details
502
- :param pulumi.Input[str] fleet_id: unique Fleet identifier
509
+ :param pulumi.Input[Union['FleetCredentialEntitySpecificsArgs', 'FleetCredentialEntitySpecificsArgsDict']] entity_specifics: (Updatable) Credential specific Details.
510
+ :param pulumi.Input[str] fleet_id: Unique Fleet identifier.
503
511
  :param pulumi.Input[str] lifecycle_details: A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
504
- :param pulumi.Input[Union['FleetCredentialPasswordArgs', 'FleetCredentialPasswordArgsDict']] password: (Updatable) Credential Details
512
+ :param pulumi.Input[Union['FleetCredentialPasswordArgs', 'FleetCredentialPasswordArgsDict']] password: (Updatable) Credential Details.
505
513
  :param pulumi.Input[str] state: The current state of the FleetCredential.
506
514
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
507
515
  :param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
508
516
  :param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
509
- :param pulumi.Input[Union['FleetCredentialUserArgs', 'FleetCredentialUserArgsDict']] user: (Updatable) Credential Details
517
+ :param pulumi.Input[Union['FleetCredentialUserArgs', 'FleetCredentialUserArgsDict']] user: (Updatable) Credential Details.
510
518
  """
511
519
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
512
520
 
@@ -545,7 +553,7 @@ class FleetCredential(pulumi.CustomResource):
545
553
  @pulumi.getter(name="entitySpecifics")
546
554
  def entity_specifics(self) -> pulumi.Output['outputs.FleetCredentialEntitySpecifics']:
547
555
  """
548
- (Updatable) Credential Details
556
+ (Updatable) Credential specific Details.
549
557
  """
550
558
  return pulumi.get(self, "entity_specifics")
551
559
 
@@ -553,7 +561,7 @@ class FleetCredential(pulumi.CustomResource):
553
561
  @pulumi.getter(name="fleetId")
554
562
  def fleet_id(self) -> pulumi.Output[str]:
555
563
  """
556
- unique Fleet identifier
564
+ Unique Fleet identifier.
557
565
  """
558
566
  return pulumi.get(self, "fleet_id")
559
567
 
@@ -569,7 +577,7 @@ class FleetCredential(pulumi.CustomResource):
569
577
  @pulumi.getter
570
578
  def password(self) -> pulumi.Output['outputs.FleetCredentialPassword']:
571
579
  """
572
- (Updatable) Credential Details
580
+ (Updatable) Credential Details.
573
581
  """
574
582
  return pulumi.get(self, "password")
575
583
 
@@ -609,7 +617,7 @@ class FleetCredential(pulumi.CustomResource):
609
617
  @pulumi.getter
610
618
  def user(self) -> pulumi.Output['outputs.FleetCredentialUser']:
611
619
  """
612
- (Updatable) Credential Details
620
+ (Updatable) Credential Details.
613
621
  """
614
622
  return pulumi.get(self, "user")
615
623
 
@@ -26,9 +26,9 @@ class FleetPropertyArgs:
26
26
  """
27
27
  The set of arguments for constructing a FleetProperty resource.
28
28
  :param pulumi.Input[str] compartment_id: Tenancy OCID
29
- :param pulumi.Input[str] fleet_id: unique Fleet identifier
30
- :param pulumi.Input[str] property_id: Property Id.
31
- :param pulumi.Input[str] value: (Updatable) Value of the Property
29
+ :param pulumi.Input[str] fleet_id: Unique Fleet identifier.
30
+ :param pulumi.Input[str] property_id: OCID referring to global level metadata property.
31
+ :param pulumi.Input[str] value: (Updatable) Value of the Property.
32
32
 
33
33
 
34
34
  ** IMPORTANT **
@@ -55,7 +55,7 @@ class FleetPropertyArgs:
55
55
  @pulumi.getter(name="fleetId")
56
56
  def fleet_id(self) -> pulumi.Input[str]:
57
57
  """
58
- unique Fleet identifier
58
+ Unique Fleet identifier.
59
59
  """
60
60
  return pulumi.get(self, "fleet_id")
61
61
 
@@ -67,7 +67,7 @@ class FleetPropertyArgs:
67
67
  @pulumi.getter(name="propertyId")
68
68
  def property_id(self) -> pulumi.Input[str]:
69
69
  """
70
- Property Id.
70
+ OCID referring to global level metadata property.
71
71
  """
72
72
  return pulumi.get(self, "property_id")
73
73
 
@@ -79,7 +79,7 @@ class FleetPropertyArgs:
79
79
  @pulumi.getter
80
80
  def value(self) -> pulumi.Input[str]:
81
81
  """
82
- (Updatable) Value of the Property
82
+ (Updatable) Value of the Property.
83
83
 
84
84
 
85
85
  ** IMPORTANT **
@@ -109,22 +109,22 @@ class _FleetPropertyState:
109
109
  value_type: Optional[pulumi.Input[str]] = None):
110
110
  """
111
111
  Input properties used for looking up and filtering FleetProperty resources.
112
- :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_values: Values of the category (must be a single value if selection = 'single choice')
112
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_values: Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE').
113
113
  :param pulumi.Input[str] compartment_id: Tenancy OCID
114
114
  :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
115
- :param pulumi.Input[str] fleet_id: unique Fleet identifier
116
- :param pulumi.Input[str] property_id: Property Id.
117
- :param pulumi.Input[str] selection_type: Text selection of the category
115
+ :param pulumi.Input[str] fleet_id: Unique Fleet identifier.
116
+ :param pulumi.Input[str] property_id: OCID referring to global level metadata property.
117
+ :param pulumi.Input[str] selection_type: Text selection of the property.
118
118
  :param pulumi.Input[str] state: The current state of the FleetProperty.
119
119
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
120
120
  :param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
121
121
  :param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
122
- :param pulumi.Input[str] value: (Updatable) Value of the Property
122
+ :param pulumi.Input[str] value: (Updatable) Value of the Property.
123
123
 
124
124
 
125
125
  ** IMPORTANT **
126
126
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
127
- :param pulumi.Input[str] value_type: Format of the value
127
+ :param pulumi.Input[str] value_type: Format of the value.
128
128
  """
129
129
  if allowed_values is not None:
130
130
  pulumi.set(__self__, "allowed_values", allowed_values)
@@ -155,7 +155,7 @@ class _FleetPropertyState:
155
155
  @pulumi.getter(name="allowedValues")
156
156
  def allowed_values(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
157
157
  """
158
- Values of the category (must be a single value if selection = 'single choice')
158
+ Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE').
159
159
  """
160
160
  return pulumi.get(self, "allowed_values")
161
161
 
@@ -191,7 +191,7 @@ class _FleetPropertyState:
191
191
  @pulumi.getter(name="fleetId")
192
192
  def fleet_id(self) -> Optional[pulumi.Input[str]]:
193
193
  """
194
- unique Fleet identifier
194
+ Unique Fleet identifier.
195
195
  """
196
196
  return pulumi.get(self, "fleet_id")
197
197
 
@@ -203,7 +203,7 @@ class _FleetPropertyState:
203
203
  @pulumi.getter(name="propertyId")
204
204
  def property_id(self) -> Optional[pulumi.Input[str]]:
205
205
  """
206
- Property Id.
206
+ OCID referring to global level metadata property.
207
207
  """
208
208
  return pulumi.get(self, "property_id")
209
209
 
@@ -215,7 +215,7 @@ class _FleetPropertyState:
215
215
  @pulumi.getter(name="selectionType")
216
216
  def selection_type(self) -> Optional[pulumi.Input[str]]:
217
217
  """
218
- Text selection of the category
218
+ Text selection of the property.
219
219
  """
220
220
  return pulumi.get(self, "selection_type")
221
221
 
@@ -275,7 +275,7 @@ class _FleetPropertyState:
275
275
  @pulumi.getter
276
276
  def value(self) -> Optional[pulumi.Input[str]]:
277
277
  """
278
- (Updatable) Value of the Property
278
+ (Updatable) Value of the Property.
279
279
 
280
280
 
281
281
  ** IMPORTANT **
@@ -291,7 +291,7 @@ class _FleetPropertyState:
291
291
  @pulumi.getter(name="valueType")
292
292
  def value_type(self) -> Optional[pulumi.Input[str]]:
293
293
  """
294
- Format of the value
294
+ Format of the value.
295
295
  """
296
296
  return pulumi.get(self, "value_type")
297
297
 
@@ -313,7 +313,7 @@ class FleetProperty(pulumi.CustomResource):
313
313
  """
314
314
  This resource provides the Fleet Property resource in Oracle Cloud Infrastructure Fleet Apps Management service.
315
315
 
316
- Creates a new FleetProperty.
316
+ Add an existing global property to a fleet in Fleet Application Management.
317
317
 
318
318
  ## Example Usage
319
319
 
@@ -335,9 +335,9 @@ class FleetProperty(pulumi.CustomResource):
335
335
  :param str resource_name: The name of the resource.
336
336
  :param pulumi.ResourceOptions opts: Options for the resource.
337
337
  :param pulumi.Input[str] compartment_id: Tenancy OCID
338
- :param pulumi.Input[str] fleet_id: unique Fleet identifier
339
- :param pulumi.Input[str] property_id: Property Id.
340
- :param pulumi.Input[str] value: (Updatable) Value of the Property
338
+ :param pulumi.Input[str] fleet_id: Unique Fleet identifier.
339
+ :param pulumi.Input[str] property_id: OCID referring to global level metadata property.
340
+ :param pulumi.Input[str] value: (Updatable) Value of the Property.
341
341
 
342
342
 
343
343
  ** IMPORTANT **
@@ -352,7 +352,7 @@ class FleetProperty(pulumi.CustomResource):
352
352
  """
353
353
  This resource provides the Fleet Property resource in Oracle Cloud Infrastructure Fleet Apps Management service.
354
354
 
355
- Creates a new FleetProperty.
355
+ Add an existing global property to a fleet in Fleet Application Management.
356
356
 
357
357
  ## Example Usage
358
358
 
@@ -448,22 +448,22 @@ class FleetProperty(pulumi.CustomResource):
448
448
  :param str resource_name: The unique name of the resulting resource.
449
449
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
450
450
  :param pulumi.ResourceOptions opts: Options for the resource.
451
- :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_values: Values of the category (must be a single value if selection = 'single choice')
451
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_values: Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE').
452
452
  :param pulumi.Input[str] compartment_id: Tenancy OCID
453
453
  :param pulumi.Input[str] display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
454
- :param pulumi.Input[str] fleet_id: unique Fleet identifier
455
- :param pulumi.Input[str] property_id: Property Id.
456
- :param pulumi.Input[str] selection_type: Text selection of the category
454
+ :param pulumi.Input[str] fleet_id: Unique Fleet identifier.
455
+ :param pulumi.Input[str] property_id: OCID referring to global level metadata property.
456
+ :param pulumi.Input[str] selection_type: Text selection of the property.
457
457
  :param pulumi.Input[str] state: The current state of the FleetProperty.
458
458
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
459
459
  :param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
460
460
  :param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
461
- :param pulumi.Input[str] value: (Updatable) Value of the Property
461
+ :param pulumi.Input[str] value: (Updatable) Value of the Property.
462
462
 
463
463
 
464
464
  ** IMPORTANT **
465
465
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
466
- :param pulumi.Input[str] value_type: Format of the value
466
+ :param pulumi.Input[str] value_type: Format of the value.
467
467
  """
468
468
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
469
469
 
@@ -487,7 +487,7 @@ class FleetProperty(pulumi.CustomResource):
487
487
  @pulumi.getter(name="allowedValues")
488
488
  def allowed_values(self) -> pulumi.Output[Sequence[str]]:
489
489
  """
490
- Values of the category (must be a single value if selection = 'single choice')
490
+ Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE').
491
491
  """
492
492
  return pulumi.get(self, "allowed_values")
493
493
 
@@ -511,7 +511,7 @@ class FleetProperty(pulumi.CustomResource):
511
511
  @pulumi.getter(name="fleetId")
512
512
  def fleet_id(self) -> pulumi.Output[str]:
513
513
  """
514
- unique Fleet identifier
514
+ Unique Fleet identifier.
515
515
  """
516
516
  return pulumi.get(self, "fleet_id")
517
517
 
@@ -519,7 +519,7 @@ class FleetProperty(pulumi.CustomResource):
519
519
  @pulumi.getter(name="propertyId")
520
520
  def property_id(self) -> pulumi.Output[str]:
521
521
  """
522
- Property Id.
522
+ OCID referring to global level metadata property.
523
523
  """
524
524
  return pulumi.get(self, "property_id")
525
525
 
@@ -527,7 +527,7 @@ class FleetProperty(pulumi.CustomResource):
527
527
  @pulumi.getter(name="selectionType")
528
528
  def selection_type(self) -> pulumi.Output[str]:
529
529
  """
530
- Text selection of the category
530
+ Text selection of the property.
531
531
  """
532
532
  return pulumi.get(self, "selection_type")
533
533
 
@@ -567,7 +567,7 @@ class FleetProperty(pulumi.CustomResource):
567
567
  @pulumi.getter
568
568
  def value(self) -> pulumi.Output[str]:
569
569
  """
570
- (Updatable) Value of the Property
570
+ (Updatable) Value of the Property.
571
571
 
572
572
 
573
573
  ** IMPORTANT **
@@ -579,7 +579,7 @@ class FleetProperty(pulumi.CustomResource):
579
579
  @pulumi.getter(name="valueType")
580
580
  def value_type(self) -> pulumi.Output[str]:
581
581
  """
582
- Format of the value
582
+ Format of the value.
583
583
  """
584
584
  return pulumi.get(self, "value_type")
585
585