pulumi-oci 2.19.0a1733984857__py3-none-any.whl → 2.20.0__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 (128) hide show
  1. pulumi_oci/__init__.py +56 -0
  2. pulumi_oci/bigdataservice/__init__.py +4 -0
  3. pulumi_oci/bigdataservice/_inputs.py +672 -6
  4. pulumi_oci/bigdataservice/bds_instance.py +169 -7
  5. pulumi_oci/bigdataservice/bds_instance_api_key.py +66 -3
  6. pulumi_oci/bigdataservice/bds_instance_identity_configuration.py +859 -0
  7. pulumi_oci/bigdataservice/bds_instance_patch_action.py +4 -0
  8. pulumi_oci/bigdataservice/get_bds_cluster_versions.py +123 -0
  9. pulumi_oci/bigdataservice/get_bds_instance.py +48 -1
  10. pulumi_oci/bigdataservice/get_bds_instance_api_key.py +17 -1
  11. pulumi_oci/bigdataservice/get_bds_instance_api_keys.py +3 -0
  12. pulumi_oci/bigdataservice/get_bds_instance_identity_configuration.py +322 -0
  13. pulumi_oci/bigdataservice/get_bds_instance_identity_configurations.py +207 -0
  14. pulumi_oci/bigdataservice/outputs.py +1466 -98
  15. pulumi_oci/blockchain/get_blockchain_platform.py +1 -1
  16. pulumi_oci/blockchain/outputs.py +2 -2
  17. pulumi_oci/core/outputs.py +4 -0
  18. pulumi_oci/database/autonomous_container_database.py +47 -0
  19. pulumi_oci/database/autonomous_database.py +94 -0
  20. pulumi_oci/database/exadb_vm_cluster.py +104 -0
  21. pulumi_oci/database/get_autonomous_container_database.py +15 -1
  22. pulumi_oci/database/get_autonomous_database.py +29 -1
  23. pulumi_oci/database/outputs.py +36 -0
  24. pulumi_oci/dataflow/application.py +75 -33
  25. pulumi_oci/dataflow/get_application.py +15 -1
  26. pulumi_oci/dataflow/outputs.py +7 -0
  27. pulumi_oci/datascience/_inputs.py +32 -12
  28. pulumi_oci/datascience/get_job_run.py +3 -3
  29. pulumi_oci/datascience/get_job_runs.py +2 -2
  30. pulumi_oci/datascience/job_run.py +7 -7
  31. pulumi_oci/datascience/model_deployment.py +2 -0
  32. pulumi_oci/datascience/outputs.py +62 -26
  33. pulumi_oci/desktops/_inputs.py +9 -9
  34. pulumi_oci/desktops/desktop_pool.py +84 -35
  35. pulumi_oci/desktops/get_desktop_pool.py +12 -1
  36. pulumi_oci/desktops/outputs.py +13 -6
  37. pulumi_oci/disasterrecovery/_inputs.py +46 -30
  38. pulumi_oci/disasterrecovery/dr_plan.py +194 -23
  39. pulumi_oci/disasterrecovery/get_dr_plan.py +54 -4
  40. pulumi_oci/disasterrecovery/get_dr_plans.py +23 -1
  41. pulumi_oci/disasterrecovery/outputs.py +113 -21
  42. pulumi_oci/fleetappsmanagement/__init__.py +19 -0
  43. pulumi_oci/fleetappsmanagement/_inputs.py +5334 -378
  44. pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +830 -0
  45. pulumi_oci/fleetappsmanagement/fleet.py +112 -67
  46. pulumi_oci/fleetappsmanagement/fleet_credential.py +44 -36
  47. pulumi_oci/fleetappsmanagement/fleet_property.py +35 -35
  48. pulumi_oci/fleetappsmanagement/fleet_resource.py +37 -37
  49. pulumi_oci/fleetappsmanagement/get_announcements.py +4 -4
  50. pulumi_oci/fleetappsmanagement/get_compliance_policies.py +199 -0
  51. pulumi_oci/fleetappsmanagement/get_compliance_policy.py +253 -0
  52. pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +324 -0
  53. pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +243 -0
  54. pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +144 -0
  55. pulumi_oci/fleetappsmanagement/get_compliance_records.py +279 -0
  56. pulumi_oci/fleetappsmanagement/get_fleet.py +29 -15
  57. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +8 -8
  58. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +7 -7
  59. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +61 -17
  60. pulumi_oci/fleetappsmanagement/get_fleet_products.py +6 -6
  61. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +8 -8
  62. pulumi_oci/fleetappsmanagement/get_fleet_property.py +11 -11
  63. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +11 -11
  64. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +10 -10
  65. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +8 -8
  66. pulumi_oci/fleetappsmanagement/get_fleets.py +16 -16
  67. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +12 -12
  68. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +8 -8
  69. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +31 -12
  70. pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +144 -0
  71. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +2 -2
  72. pulumi_oci/fleetappsmanagement/get_onboardings.py +2 -2
  73. pulumi_oci/fleetappsmanagement/get_patch.py +363 -0
  74. pulumi_oci/fleetappsmanagement/get_patches.py +335 -0
  75. pulumi_oci/fleetappsmanagement/get_platform_configuration.py +296 -0
  76. pulumi_oci/fleetappsmanagement/get_platform_configurations.py +221 -0
  77. pulumi_oci/fleetappsmanagement/get_properties.py +9 -9
  78. pulumi_oci/fleetappsmanagement/get_property.py +4 -4
  79. pulumi_oci/fleetappsmanagement/get_runbook.py +8 -8
  80. pulumi_oci/fleetappsmanagement/get_runbooks.py +16 -16
  81. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +10 -10
  82. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +2 -2
  83. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +33 -11
  84. pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +144 -0
  85. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_resources.py +245 -0
  86. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +245 -0
  87. pulumi_oci/fleetappsmanagement/get_task_record.py +3 -3
  88. pulumi_oci/fleetappsmanagement/maintenance_window.py +44 -44
  89. pulumi_oci/fleetappsmanagement/onboarding.py +108 -20
  90. pulumi_oci/fleetappsmanagement/outputs.py +11222 -2736
  91. pulumi_oci/fleetappsmanagement/patch.py +978 -0
  92. pulumi_oci/fleetappsmanagement/platform_configuration.py +687 -0
  93. pulumi_oci/fleetappsmanagement/property.py +27 -27
  94. pulumi_oci/fleetappsmanagement/runbook.py +1173 -0
  95. pulumi_oci/fleetappsmanagement/scheduler_definition.py +30 -30
  96. pulumi_oci/fleetappsmanagement/task_record.py +754 -0
  97. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +28 -0
  98. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +56 -0
  99. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +15 -1
  100. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +29 -1
  101. pulumi_oci/fleetsoftwareupdate/outputs.py +33 -0
  102. pulumi_oci/generativeai/dedicated_ai_cluster.py +21 -0
  103. pulumi_oci/goldengate/__init__.py +7 -0
  104. pulumi_oci/goldengate/_inputs.py +665 -0
  105. pulumi_oci/goldengate/connection.py +7 -7
  106. pulumi_oci/goldengate/get_pipeline.py +408 -0
  107. pulumi_oci/goldengate/get_pipeline_running_processes.py +144 -0
  108. pulumi_oci/goldengate/get_pipeline_schema_tables.py +207 -0
  109. pulumi_oci/goldengate/get_pipeline_schemas.py +163 -0
  110. pulumi_oci/goldengate/get_pipelines.py +213 -0
  111. pulumi_oci/goldengate/get_recipes.py +188 -0
  112. pulumi_oci/goldengate/get_trail_files.py +4 -2
  113. pulumi_oci/goldengate/get_trail_sequences.py +4 -2
  114. pulumi_oci/goldengate/outputs.py +1500 -0
  115. pulumi_oci/goldengate/pipeline.py +928 -0
  116. pulumi_oci/pulumi-plugin.json +1 -1
  117. pulumi_oci/stackmonitoring/_inputs.py +94 -14
  118. pulumi_oci/stackmonitoring/get_metric_extensions.py +22 -3
  119. pulumi_oci/stackmonitoring/metric_extension.py +8 -0
  120. pulumi_oci/stackmonitoring/outputs.py +166 -24
  121. pulumi_oci/visualbuilder/_inputs.py +57 -202
  122. pulumi_oci/visualbuilder/get_vb_instance.py +15 -29
  123. pulumi_oci/visualbuilder/outputs.py +114 -400
  124. pulumi_oci/visualbuilder/vb_instance.py +62 -59
  125. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/METADATA +3 -3
  126. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/RECORD +128 -98
  127. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/WHEEL +0 -0
  128. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/top_level.txt +0 -0
@@ -28,7 +28,7 @@ class FleetResourceArgs:
28
28
  """
29
29
  The set of arguments for constructing a FleetResource resource.
30
30
  :param pulumi.Input[str] compartment_id: (Updatable) OCID of the compartment to which the resource belongs to.
31
- :param pulumi.Input[str] fleet_id: unique Fleet identifier
31
+ :param pulumi.Input[str] fleet_id: Unique Fleet identifier.
32
32
  :param pulumi.Input[str] resource_id: The OCID of the resource.
33
33
  :param pulumi.Input[str] tenancy_id: (Updatable) OCID of the tenancy to which the resource belongs to.
34
34
 
@@ -63,7 +63,7 @@ class FleetResourceArgs:
63
63
  @pulumi.getter(name="fleetId")
64
64
  def fleet_id(self) -> pulumi.Input[str]:
65
65
  """
66
- unique Fleet identifier
66
+ Unique Fleet identifier.
67
67
  """
68
68
  return pulumi.get(self, "fleet_id")
69
69
 
@@ -149,28 +149,28 @@ class _FleetResourceState:
149
149
  time_updated: Optional[pulumi.Input[str]] = None):
150
150
  """
151
151
  Input properties used for looking up and filtering FleetResource resources.
152
- :param pulumi.Input[str] application_type: Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
153
- :param pulumi.Input[str] compartment: Resource Compartment
152
+ :param pulumi.Input[str] application_type: Application Type associated with the resource when the resource type is fleet. Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
153
+ :param pulumi.Input[str] compartment: Resource Compartment name.
154
154
  :param pulumi.Input[str] compartment_id: (Updatable) OCID of the compartment to which the resource belongs to.
155
- :param pulumi.Input[str] compliance_state: Compliance State of the Resource
155
+ :param pulumi.Input[str] compliance_state: Compliance State of the Resource.
156
156
  :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`
157
- :param pulumi.Input[str] environment_type: Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
158
- :param pulumi.Input[str] fleet_id: unique Fleet identifier
157
+ :param pulumi.Input[str] environment_type: Environment Type associated with the Fleet when the resource type is fleet. Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
158
+ :param pulumi.Input[str] fleet_id: Unique Fleet identifier.
159
159
  :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.
160
- :param pulumi.Input[str] product: Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
160
+ :param pulumi.Input[str] product: Product associated with the resource when the resource type is fleet. Will only be returned for PRODUCT fleets that are part of a GROUP Fleet.
161
161
  :param pulumi.Input[int] product_count: Count of products within the resource.
162
162
  :param pulumi.Input[str] resource_id: The OCID of the resource.
163
163
  :param pulumi.Input[str] resource_region: Associated region
164
164
  :param pulumi.Input[str] resource_type: Type of the Resource.
165
165
  :param pulumi.Input[str] state: The current state of the FleetResource.
166
166
  :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"}`
167
- :param pulumi.Input[int] target_count: Count of targets within the resource.
167
+ :param pulumi.Input[int] target_count: Count of targets within the resource.
168
168
  :param pulumi.Input[str] tenancy_id: (Updatable) OCID of the tenancy to which the resource belongs to.
169
169
 
170
170
 
171
171
  ** IMPORTANT **
172
172
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
173
- :param pulumi.Input[str] tenancy_name: Resource Tenancy Name
173
+ :param pulumi.Input[str] tenancy_name: Resource Tenancy Name.
174
174
  :param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
175
175
  :param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
176
176
  """
@@ -219,7 +219,7 @@ class _FleetResourceState:
219
219
  @pulumi.getter(name="applicationType")
220
220
  def application_type(self) -> Optional[pulumi.Input[str]]:
221
221
  """
222
- Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
222
+ Application Type associated with the resource when the resource type is fleet. Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
223
223
  """
224
224
  return pulumi.get(self, "application_type")
225
225
 
@@ -231,7 +231,7 @@ class _FleetResourceState:
231
231
  @pulumi.getter
232
232
  def compartment(self) -> Optional[pulumi.Input[str]]:
233
233
  """
234
- Resource Compartment
234
+ Resource Compartment name.
235
235
  """
236
236
  return pulumi.get(self, "compartment")
237
237
 
@@ -255,7 +255,7 @@ class _FleetResourceState:
255
255
  @pulumi.getter(name="complianceState")
256
256
  def compliance_state(self) -> Optional[pulumi.Input[str]]:
257
257
  """
258
- Compliance State of the Resource
258
+ Compliance State of the Resource.
259
259
  """
260
260
  return pulumi.get(self, "compliance_state")
261
261
 
@@ -279,7 +279,7 @@ class _FleetResourceState:
279
279
  @pulumi.getter(name="environmentType")
280
280
  def environment_type(self) -> Optional[pulumi.Input[str]]:
281
281
  """
282
- Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
282
+ Environment Type associated with the Fleet when the resource type is fleet. Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
283
283
  """
284
284
  return pulumi.get(self, "environment_type")
285
285
 
@@ -291,7 +291,7 @@ class _FleetResourceState:
291
291
  @pulumi.getter(name="fleetId")
292
292
  def fleet_id(self) -> Optional[pulumi.Input[str]]:
293
293
  """
294
- unique Fleet identifier
294
+ Unique Fleet identifier.
295
295
  """
296
296
  return pulumi.get(self, "fleet_id")
297
297
 
@@ -315,7 +315,7 @@ class _FleetResourceState:
315
315
  @pulumi.getter
316
316
  def product(self) -> Optional[pulumi.Input[str]]:
317
317
  """
318
- Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
318
+ Product associated with the resource when the resource type is fleet. Will only be returned for PRODUCT fleets that are part of a GROUP Fleet.
319
319
  """
320
320
  return pulumi.get(self, "product")
321
321
 
@@ -399,7 +399,7 @@ class _FleetResourceState:
399
399
  @pulumi.getter(name="targetCount")
400
400
  def target_count(self) -> Optional[pulumi.Input[int]]:
401
401
  """
402
- Count of targets within the resource.
402
+ Count of targets within the resource.
403
403
  """
404
404
  return pulumi.get(self, "target_count")
405
405
 
@@ -427,7 +427,7 @@ class _FleetResourceState:
427
427
  @pulumi.getter(name="tenancyName")
428
428
  def tenancy_name(self) -> Optional[pulumi.Input[str]]:
429
429
  """
430
- Resource Tenancy Name
430
+ Resource Tenancy Name.
431
431
  """
432
432
  return pulumi.get(self, "tenancy_name")
433
433
 
@@ -475,7 +475,7 @@ class FleetResource(pulumi.CustomResource):
475
475
  """
476
476
  This resource provides the Fleet Resource resource in Oracle Cloud Infrastructure Fleet Apps Management service.
477
477
 
478
- Creates a new FleetResource.
478
+ Add resource to a fleet in Fleet Application Management.
479
479
 
480
480
  ## Example Usage
481
481
 
@@ -499,7 +499,7 @@ class FleetResource(pulumi.CustomResource):
499
499
  :param str resource_name: The name of the resource.
500
500
  :param pulumi.ResourceOptions opts: Options for the resource.
501
501
  :param pulumi.Input[str] compartment_id: (Updatable) OCID of the compartment to which the resource belongs to.
502
- :param pulumi.Input[str] fleet_id: unique Fleet identifier
502
+ :param pulumi.Input[str] fleet_id: Unique Fleet identifier.
503
503
  :param pulumi.Input[str] resource_id: The OCID of the resource.
504
504
  :param pulumi.Input[str] resource_region: Associated region
505
505
  :param pulumi.Input[str] resource_type: Type of the Resource.
@@ -518,7 +518,7 @@ class FleetResource(pulumi.CustomResource):
518
518
  """
519
519
  This resource provides the Fleet Resource resource in Oracle Cloud Infrastructure Fleet Apps Management service.
520
520
 
521
- Creates a new FleetResource.
521
+ Add resource to a fleet in Fleet Application Management.
522
522
 
523
523
  ## Example Usage
524
524
 
@@ -634,28 +634,28 @@ class FleetResource(pulumi.CustomResource):
634
634
  :param str resource_name: The unique name of the resulting resource.
635
635
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
636
636
  :param pulumi.ResourceOptions opts: Options for the resource.
637
- :param pulumi.Input[str] application_type: Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
638
- :param pulumi.Input[str] compartment: Resource Compartment
637
+ :param pulumi.Input[str] application_type: Application Type associated with the resource when the resource type is fleet. Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
638
+ :param pulumi.Input[str] compartment: Resource Compartment name.
639
639
  :param pulumi.Input[str] compartment_id: (Updatable) OCID of the compartment to which the resource belongs to.
640
- :param pulumi.Input[str] compliance_state: Compliance State of the Resource
640
+ :param pulumi.Input[str] compliance_state: Compliance State of the Resource.
641
641
  :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`
642
- :param pulumi.Input[str] environment_type: Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
643
- :param pulumi.Input[str] fleet_id: unique Fleet identifier
642
+ :param pulumi.Input[str] environment_type: Environment Type associated with the Fleet when the resource type is fleet. Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
643
+ :param pulumi.Input[str] fleet_id: Unique Fleet identifier.
644
644
  :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.
645
- :param pulumi.Input[str] product: Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
645
+ :param pulumi.Input[str] product: Product associated with the resource when the resource type is fleet. Will only be returned for PRODUCT fleets that are part of a GROUP Fleet.
646
646
  :param pulumi.Input[int] product_count: Count of products within the resource.
647
647
  :param pulumi.Input[str] resource_id: The OCID of the resource.
648
648
  :param pulumi.Input[str] resource_region: Associated region
649
649
  :param pulumi.Input[str] resource_type: Type of the Resource.
650
650
  :param pulumi.Input[str] state: The current state of the FleetResource.
651
651
  :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"}`
652
- :param pulumi.Input[int] target_count: Count of targets within the resource.
652
+ :param pulumi.Input[int] target_count: Count of targets within the resource.
653
653
  :param pulumi.Input[str] tenancy_id: (Updatable) OCID of the tenancy to which the resource belongs to.
654
654
 
655
655
 
656
656
  ** IMPORTANT **
657
657
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
658
- :param pulumi.Input[str] tenancy_name: Resource Tenancy Name
658
+ :param pulumi.Input[str] tenancy_name: Resource Tenancy Name.
659
659
  :param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
660
660
  :param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
661
661
  """
@@ -689,7 +689,7 @@ class FleetResource(pulumi.CustomResource):
689
689
  @pulumi.getter(name="applicationType")
690
690
  def application_type(self) -> pulumi.Output[str]:
691
691
  """
692
- Application Type associated with the resource when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
692
+ Application Type associated with the resource when the resource type is fleet. Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
693
693
  """
694
694
  return pulumi.get(self, "application_type")
695
695
 
@@ -697,7 +697,7 @@ class FleetResource(pulumi.CustomResource):
697
697
  @pulumi.getter
698
698
  def compartment(self) -> pulumi.Output[str]:
699
699
  """
700
- Resource Compartment
700
+ Resource Compartment name.
701
701
  """
702
702
  return pulumi.get(self, "compartment")
703
703
 
@@ -713,7 +713,7 @@ class FleetResource(pulumi.CustomResource):
713
713
  @pulumi.getter(name="complianceState")
714
714
  def compliance_state(self) -> pulumi.Output[str]:
715
715
  """
716
- Compliance State of the Resource
716
+ Compliance State of the Resource.
717
717
  """
718
718
  return pulumi.get(self, "compliance_state")
719
719
 
@@ -729,7 +729,7 @@ class FleetResource(pulumi.CustomResource):
729
729
  @pulumi.getter(name="environmentType")
730
730
  def environment_type(self) -> pulumi.Output[str]:
731
731
  """
732
- Environment Type associated with the Fleet when resource type is fleet.Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
732
+ Environment Type associated with the Fleet when the resource type is fleet. Will only be returned for ENVIRONMENT fleets that are part of a GROUP Fleet.
733
733
  """
734
734
  return pulumi.get(self, "environment_type")
735
735
 
@@ -737,7 +737,7 @@ class FleetResource(pulumi.CustomResource):
737
737
  @pulumi.getter(name="fleetId")
738
738
  def fleet_id(self) -> pulumi.Output[str]:
739
739
  """
740
- unique Fleet identifier
740
+ Unique Fleet identifier.
741
741
  """
742
742
  return pulumi.get(self, "fleet_id")
743
743
 
@@ -753,7 +753,7 @@ class FleetResource(pulumi.CustomResource):
753
753
  @pulumi.getter
754
754
  def product(self) -> pulumi.Output[str]:
755
755
  """
756
- Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
756
+ Product associated with the resource when the resource type is fleet. Will only be returned for PRODUCT fleets that are part of a GROUP Fleet.
757
757
  """
758
758
  return pulumi.get(self, "product")
759
759
 
@@ -809,7 +809,7 @@ class FleetResource(pulumi.CustomResource):
809
809
  @pulumi.getter(name="targetCount")
810
810
  def target_count(self) -> pulumi.Output[int]:
811
811
  """
812
- Count of targets within the resource.
812
+ Count of targets within the resource.
813
813
  """
814
814
  return pulumi.get(self, "target_count")
815
815
 
@@ -829,7 +829,7 @@ class FleetResource(pulumi.CustomResource):
829
829
  @pulumi.getter(name="tenancyName")
830
830
  def tenancy_name(self) -> pulumi.Output[str]:
831
831
  """
832
- Resource Tenancy Name
832
+ Resource Tenancy Name.
833
833
  """
834
834
  return pulumi.get(self, "tenancy_name")
835
835
 
@@ -100,7 +100,7 @@ def get_announcements(display_name: Optional[str] = None,
100
100
  """
101
101
  This data source provides the list of Announcements in Oracle Cloud Infrastructure Fleet Apps Management service.
102
102
 
103
- Return a list of AnnouncementSummary items
103
+ Return a list of AnnouncementSummary items.
104
104
 
105
105
  ## Example Usage
106
106
 
@@ -114,7 +114,7 @@ def get_announcements(display_name: Optional[str] = None,
114
114
 
115
115
 
116
116
  :param str display_name: A filter to return only resources that match the entire display name given.
117
- :param str summary_contains: Filter the list with summary contains the given value.
117
+ :param str summary_contains: Filter the list of announcements that contains the given summary value.
118
118
  """
119
119
  __args__ = dict()
120
120
  __args__['displayName'] = display_name
@@ -136,7 +136,7 @@ def get_announcements_output(display_name: Optional[pulumi.Input[Optional[str]]]
136
136
  """
137
137
  This data source provides the list of Announcements in Oracle Cloud Infrastructure Fleet Apps Management service.
138
138
 
139
- Return a list of AnnouncementSummary items
139
+ Return a list of AnnouncementSummary items.
140
140
 
141
141
  ## Example Usage
142
142
 
@@ -150,7 +150,7 @@ def get_announcements_output(display_name: Optional[pulumi.Input[Optional[str]]]
150
150
 
151
151
 
152
152
  :param str display_name: A filter to return only resources that match the entire display name given.
153
- :param str summary_contains: Filter the list with summary contains the given value.
153
+ :param str summary_contains: Filter the list of announcements that contains the given summary value.
154
154
  """
155
155
  __args__ = dict()
156
156
  __args__['displayName'] = display_name
@@ -0,0 +1,199 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from .. import _utilities
16
+ from . import outputs
17
+ from ._inputs import *
18
+
19
+ __all__ = [
20
+ 'GetCompliancePoliciesResult',
21
+ 'AwaitableGetCompliancePoliciesResult',
22
+ 'get_compliance_policies',
23
+ 'get_compliance_policies_output',
24
+ ]
25
+
26
+ @pulumi.output_type
27
+ class GetCompliancePoliciesResult:
28
+ """
29
+ A collection of values returned by getCompliancePolicies.
30
+ """
31
+ def __init__(__self__, compartment_id=None, compliance_policy_collections=None, display_name=None, filters=None, id=None, state=None):
32
+ if compartment_id and not isinstance(compartment_id, str):
33
+ raise TypeError("Expected argument 'compartment_id' to be a str")
34
+ pulumi.set(__self__, "compartment_id", compartment_id)
35
+ if compliance_policy_collections and not isinstance(compliance_policy_collections, list):
36
+ raise TypeError("Expected argument 'compliance_policy_collections' to be a list")
37
+ pulumi.set(__self__, "compliance_policy_collections", compliance_policy_collections)
38
+ if display_name and not isinstance(display_name, str):
39
+ raise TypeError("Expected argument 'display_name' to be a str")
40
+ pulumi.set(__self__, "display_name", display_name)
41
+ if filters and not isinstance(filters, list):
42
+ raise TypeError("Expected argument 'filters' to be a list")
43
+ pulumi.set(__self__, "filters", filters)
44
+ if id and not isinstance(id, str):
45
+ raise TypeError("Expected argument 'id' to be a str")
46
+ pulumi.set(__self__, "id", id)
47
+ if state and not isinstance(state, str):
48
+ raise TypeError("Expected argument 'state' to be a str")
49
+ pulumi.set(__self__, "state", state)
50
+
51
+ @property
52
+ @pulumi.getter(name="compartmentId")
53
+ def compartment_id(self) -> Optional[str]:
54
+ """
55
+ The OCID of the compartment the CompliancePolicy belongs to.
56
+ """
57
+ return pulumi.get(self, "compartment_id")
58
+
59
+ @property
60
+ @pulumi.getter(name="compliancePolicyCollections")
61
+ def compliance_policy_collections(self) -> Sequence['outputs.GetCompliancePoliciesCompliancePolicyCollectionResult']:
62
+ """
63
+ The list of compliance_policy_collection.
64
+ """
65
+ return pulumi.get(self, "compliance_policy_collections")
66
+
67
+ @property
68
+ @pulumi.getter(name="displayName")
69
+ def display_name(self) -> Optional[str]:
70
+ """
71
+ Display name for the CompliancePolicy.
72
+ """
73
+ return pulumi.get(self, "display_name")
74
+
75
+ @property
76
+ @pulumi.getter
77
+ def filters(self) -> Optional[Sequence['outputs.GetCompliancePoliciesFilterResult']]:
78
+ return pulumi.get(self, "filters")
79
+
80
+ @property
81
+ @pulumi.getter
82
+ def id(self) -> Optional[str]:
83
+ """
84
+ The OCID of the CompliancePolicy.
85
+ """
86
+ return pulumi.get(self, "id")
87
+
88
+ @property
89
+ @pulumi.getter
90
+ def state(self) -> Optional[str]:
91
+ """
92
+ The current state of the CompliancePolicy.
93
+ """
94
+ return pulumi.get(self, "state")
95
+
96
+
97
+ class AwaitableGetCompliancePoliciesResult(GetCompliancePoliciesResult):
98
+ # pylint: disable=using-constant-test
99
+ def __await__(self):
100
+ if False:
101
+ yield self
102
+ return GetCompliancePoliciesResult(
103
+ compartment_id=self.compartment_id,
104
+ compliance_policy_collections=self.compliance_policy_collections,
105
+ display_name=self.display_name,
106
+ filters=self.filters,
107
+ id=self.id,
108
+ state=self.state)
109
+
110
+
111
+ def get_compliance_policies(compartment_id: Optional[str] = None,
112
+ display_name: Optional[str] = None,
113
+ filters: Optional[Sequence[Union['GetCompliancePoliciesFilterArgs', 'GetCompliancePoliciesFilterArgsDict']]] = None,
114
+ id: Optional[str] = None,
115
+ state: Optional[str] = None,
116
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCompliancePoliciesResult:
117
+ """
118
+ This data source provides the list of Compliance Policies in Oracle Cloud Infrastructure Fleet Apps Management service.
119
+
120
+ Gets a list of compliancePolicies.
121
+
122
+ ## Example Usage
123
+
124
+ ```python
125
+ import pulumi
126
+ import pulumi_oci as oci
127
+
128
+ test_compliance_policies = oci.FleetAppsManagement.get_compliance_policies(compartment_id=compartment_id,
129
+ display_name=compliance_policy_display_name,
130
+ id=compliance_policy_id,
131
+ state=compliance_policy_state)
132
+ ```
133
+
134
+
135
+ :param str compartment_id: The ID of the compartment in which to list resources.
136
+ :param str display_name: A filter to return only resources that match the entire display name given.
137
+ :param str id: unique CompliancePolicy identifier.
138
+ :param str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
139
+ """
140
+ __args__ = dict()
141
+ __args__['compartmentId'] = compartment_id
142
+ __args__['displayName'] = display_name
143
+ __args__['filters'] = filters
144
+ __args__['id'] = id
145
+ __args__['state'] = state
146
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
147
+ __ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getCompliancePolicies:getCompliancePolicies', __args__, opts=opts, typ=GetCompliancePoliciesResult).value
148
+
149
+ return AwaitableGetCompliancePoliciesResult(
150
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
151
+ compliance_policy_collections=pulumi.get(__ret__, 'compliance_policy_collections'),
152
+ display_name=pulumi.get(__ret__, 'display_name'),
153
+ filters=pulumi.get(__ret__, 'filters'),
154
+ id=pulumi.get(__ret__, 'id'),
155
+ state=pulumi.get(__ret__, 'state'))
156
+ def get_compliance_policies_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
157
+ display_name: Optional[pulumi.Input[Optional[str]]] = None,
158
+ filters: Optional[pulumi.Input[Optional[Sequence[Union['GetCompliancePoliciesFilterArgs', 'GetCompliancePoliciesFilterArgsDict']]]]] = None,
159
+ id: Optional[pulumi.Input[Optional[str]]] = None,
160
+ state: Optional[pulumi.Input[Optional[str]]] = None,
161
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCompliancePoliciesResult]:
162
+ """
163
+ This data source provides the list of Compliance Policies in Oracle Cloud Infrastructure Fleet Apps Management service.
164
+
165
+ Gets a list of compliancePolicies.
166
+
167
+ ## Example Usage
168
+
169
+ ```python
170
+ import pulumi
171
+ import pulumi_oci as oci
172
+
173
+ test_compliance_policies = oci.FleetAppsManagement.get_compliance_policies(compartment_id=compartment_id,
174
+ display_name=compliance_policy_display_name,
175
+ id=compliance_policy_id,
176
+ state=compliance_policy_state)
177
+ ```
178
+
179
+
180
+ :param str compartment_id: The ID of the compartment in which to list resources.
181
+ :param str display_name: A filter to return only resources that match the entire display name given.
182
+ :param str id: unique CompliancePolicy identifier.
183
+ :param str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
184
+ """
185
+ __args__ = dict()
186
+ __args__['compartmentId'] = compartment_id
187
+ __args__['displayName'] = display_name
188
+ __args__['filters'] = filters
189
+ __args__['id'] = id
190
+ __args__['state'] = state
191
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
192
+ __ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getCompliancePolicies:getCompliancePolicies', __args__, opts=opts, typ=GetCompliancePoliciesResult)
193
+ return __ret__.apply(lambda __response__: GetCompliancePoliciesResult(
194
+ compartment_id=pulumi.get(__response__, 'compartment_id'),
195
+ compliance_policy_collections=pulumi.get(__response__, 'compliance_policy_collections'),
196
+ display_name=pulumi.get(__response__, 'display_name'),
197
+ filters=pulumi.get(__response__, 'filters'),
198
+ id=pulumi.get(__response__, 'id'),
199
+ state=pulumi.get(__response__, 'state')))