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
@@ -0,0 +1,221 @@
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
+ 'GetPlatformConfigurationsResult',
21
+ 'AwaitableGetPlatformConfigurationsResult',
22
+ 'get_platform_configurations',
23
+ 'get_platform_configurations_output',
24
+ ]
25
+
26
+ @pulumi.output_type
27
+ class GetPlatformConfigurationsResult:
28
+ """
29
+ A collection of values returned by getPlatformConfigurations.
30
+ """
31
+ def __init__(__self__, compartment_id=None, config_category=None, display_name=None, filters=None, id=None, platform_configuration_collections=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 config_category and not isinstance(config_category, str):
36
+ raise TypeError("Expected argument 'config_category' to be a str")
37
+ pulumi.set(__self__, "config_category", config_category)
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 platform_configuration_collections and not isinstance(platform_configuration_collections, list):
48
+ raise TypeError("Expected argument 'platform_configuration_collections' to be a list")
49
+ pulumi.set(__self__, "platform_configuration_collections", platform_configuration_collections)
50
+ if state and not isinstance(state, str):
51
+ raise TypeError("Expected argument 'state' to be a str")
52
+ pulumi.set(__self__, "state", state)
53
+
54
+ @property
55
+ @pulumi.getter(name="compartmentId")
56
+ def compartment_id(self) -> Optional[str]:
57
+ """
58
+ Tenancy OCID
59
+ """
60
+ return pulumi.get(self, "compartment_id")
61
+
62
+ @property
63
+ @pulumi.getter(name="configCategory")
64
+ def config_category(self) -> Optional[str]:
65
+ """
66
+ Category of configuration
67
+ """
68
+ return pulumi.get(self, "config_category")
69
+
70
+ @property
71
+ @pulumi.getter(name="displayName")
72
+ def display_name(self) -> Optional[str]:
73
+ """
74
+ A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
75
+ """
76
+ return pulumi.get(self, "display_name")
77
+
78
+ @property
79
+ @pulumi.getter
80
+ def filters(self) -> Optional[Sequence['outputs.GetPlatformConfigurationsFilterResult']]:
81
+ return pulumi.get(self, "filters")
82
+
83
+ @property
84
+ @pulumi.getter
85
+ def id(self) -> Optional[str]:
86
+ """
87
+ The OCID of the resource.
88
+ """
89
+ return pulumi.get(self, "id")
90
+
91
+ @property
92
+ @pulumi.getter(name="platformConfigurationCollections")
93
+ def platform_configuration_collections(self) -> Sequence['outputs.GetPlatformConfigurationsPlatformConfigurationCollectionResult']:
94
+ """
95
+ The list of platform_configuration_collection.
96
+ """
97
+ return pulumi.get(self, "platform_configuration_collections")
98
+
99
+ @property
100
+ @pulumi.getter
101
+ def state(self) -> Optional[str]:
102
+ """
103
+ The current state of the PlatformConfiguration.
104
+ """
105
+ return pulumi.get(self, "state")
106
+
107
+
108
+ class AwaitableGetPlatformConfigurationsResult(GetPlatformConfigurationsResult):
109
+ # pylint: disable=using-constant-test
110
+ def __await__(self):
111
+ if False:
112
+ yield self
113
+ return GetPlatformConfigurationsResult(
114
+ compartment_id=self.compartment_id,
115
+ config_category=self.config_category,
116
+ display_name=self.display_name,
117
+ filters=self.filters,
118
+ id=self.id,
119
+ platform_configuration_collections=self.platform_configuration_collections,
120
+ state=self.state)
121
+
122
+
123
+ def get_platform_configurations(compartment_id: Optional[str] = None,
124
+ config_category: Optional[str] = None,
125
+ display_name: Optional[str] = None,
126
+ filters: Optional[Sequence[Union['GetPlatformConfigurationsFilterArgs', 'GetPlatformConfigurationsFilterArgsDict']]] = None,
127
+ id: Optional[str] = None,
128
+ state: Optional[str] = None,
129
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPlatformConfigurationsResult:
130
+ """
131
+ This data source provides the list of Platform Configurations in Oracle Cloud Infrastructure Fleet Apps Management service.
132
+
133
+ Returns a list of PlatformConfiguration for Tenancy.
134
+
135
+ ## Example Usage
136
+
137
+ ```python
138
+ import pulumi
139
+ import pulumi_oci as oci
140
+
141
+ test_platform_configurations = oci.FleetAppsManagement.get_platform_configurations(compartment_id=compartment_id,
142
+ config_category=platform_configuration_config_category,
143
+ display_name=platform_configuration_display_name,
144
+ id=platform_configuration_id,
145
+ state=platform_configuration_state)
146
+ ```
147
+
148
+
149
+ :param str compartment_id: The ID of the compartment in which to list resources.
150
+ :param str config_category: Config Category
151
+ :param str display_name: A filter to return only resources that match the entire display name given.
152
+ :param str id: unique PlatformConfiguration identifier
153
+ :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
154
+ """
155
+ __args__ = dict()
156
+ __args__['compartmentId'] = compartment_id
157
+ __args__['configCategory'] = config_category
158
+ __args__['displayName'] = display_name
159
+ __args__['filters'] = filters
160
+ __args__['id'] = id
161
+ __args__['state'] = state
162
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
163
+ __ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getPlatformConfigurations:getPlatformConfigurations', __args__, opts=opts, typ=GetPlatformConfigurationsResult).value
164
+
165
+ return AwaitableGetPlatformConfigurationsResult(
166
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
167
+ config_category=pulumi.get(__ret__, 'config_category'),
168
+ display_name=pulumi.get(__ret__, 'display_name'),
169
+ filters=pulumi.get(__ret__, 'filters'),
170
+ id=pulumi.get(__ret__, 'id'),
171
+ platform_configuration_collections=pulumi.get(__ret__, 'platform_configuration_collections'),
172
+ state=pulumi.get(__ret__, 'state'))
173
+ def get_platform_configurations_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
174
+ config_category: Optional[pulumi.Input[Optional[str]]] = None,
175
+ display_name: Optional[pulumi.Input[Optional[str]]] = None,
176
+ filters: Optional[pulumi.Input[Optional[Sequence[Union['GetPlatformConfigurationsFilterArgs', 'GetPlatformConfigurationsFilterArgsDict']]]]] = None,
177
+ id: Optional[pulumi.Input[Optional[str]]] = None,
178
+ state: Optional[pulumi.Input[Optional[str]]] = None,
179
+ opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPlatformConfigurationsResult]:
180
+ """
181
+ This data source provides the list of Platform Configurations in Oracle Cloud Infrastructure Fleet Apps Management service.
182
+
183
+ Returns a list of PlatformConfiguration for Tenancy.
184
+
185
+ ## Example Usage
186
+
187
+ ```python
188
+ import pulumi
189
+ import pulumi_oci as oci
190
+
191
+ test_platform_configurations = oci.FleetAppsManagement.get_platform_configurations(compartment_id=compartment_id,
192
+ config_category=platform_configuration_config_category,
193
+ display_name=platform_configuration_display_name,
194
+ id=platform_configuration_id,
195
+ state=platform_configuration_state)
196
+ ```
197
+
198
+
199
+ :param str compartment_id: The ID of the compartment in which to list resources.
200
+ :param str config_category: Config Category
201
+ :param str display_name: A filter to return only resources that match the entire display name given.
202
+ :param str id: unique PlatformConfiguration identifier
203
+ :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
204
+ """
205
+ __args__ = dict()
206
+ __args__['compartmentId'] = compartment_id
207
+ __args__['configCategory'] = config_category
208
+ __args__['displayName'] = display_name
209
+ __args__['filters'] = filters
210
+ __args__['id'] = id
211
+ __args__['state'] = state
212
+ opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
213
+ __ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getPlatformConfigurations:getPlatformConfigurations', __args__, opts=opts, typ=GetPlatformConfigurationsResult)
214
+ return __ret__.apply(lambda __response__: GetPlatformConfigurationsResult(
215
+ compartment_id=pulumi.get(__response__, 'compartment_id'),
216
+ config_category=pulumi.get(__response__, 'config_category'),
217
+ display_name=pulumi.get(__response__, 'display_name'),
218
+ filters=pulumi.get(__response__, 'filters'),
219
+ id=pulumi.get(__response__, 'id'),
220
+ platform_configuration_collections=pulumi.get(__response__, 'platform_configuration_collections'),
221
+ state=pulumi.get(__response__, 'state')))
@@ -92,7 +92,7 @@ class GetPropertiesResult:
92
92
  @pulumi.getter
93
93
  def scope(self) -> Optional[str]:
94
94
  """
95
- The scope of the property
95
+ The scope of the property.
96
96
  """
97
97
  return pulumi.get(self, "scope")
98
98
 
@@ -130,7 +130,7 @@ def get_properties(compartment_id: Optional[str] = None,
130
130
  """
131
131
  This data source provides the list of Properties in Oracle Cloud Infrastructure Fleet Apps Management service.
132
132
 
133
- Returns a list of Properties for Tenancy.
133
+ List properties and their values for a tenancy in Fleet Application Management.
134
134
 
135
135
  ## Example Usage
136
136
 
@@ -148,9 +148,9 @@ def get_properties(compartment_id: Optional[str] = None,
148
148
 
149
149
  :param str compartment_id: The ID of the compartment in which to list resources.
150
150
  :param str display_name: A filter to return only resources that match the entire display name given.
151
- :param str id: unique Property identifier
152
- :param str scope: A filter to return only resources their scope matches the given lifecycleState.
153
- :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
151
+ :param str id: A filter to return only resources whose Property identifier matches the given identifier.
152
+ :param str scope: A filter to return only resources their scope matches the given scope.
153
+ :param str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
154
154
  """
155
155
  __args__ = dict()
156
156
  __args__['compartmentId'] = compartment_id
@@ -180,7 +180,7 @@ def get_properties_output(compartment_id: Optional[pulumi.Input[Optional[str]]]
180
180
  """
181
181
  This data source provides the list of Properties in Oracle Cloud Infrastructure Fleet Apps Management service.
182
182
 
183
- Returns a list of Properties for Tenancy.
183
+ List properties and their values for a tenancy in Fleet Application Management.
184
184
 
185
185
  ## Example Usage
186
186
 
@@ -198,9 +198,9 @@ def get_properties_output(compartment_id: Optional[pulumi.Input[Optional[str]]]
198
198
 
199
199
  :param str compartment_id: The ID of the compartment in which to list resources.
200
200
  :param str display_name: A filter to return only resources that match the entire display name given.
201
- :param str id: unique Property identifier
202
- :param str scope: A filter to return only resources their scope matches the given lifecycleState.
203
- :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
201
+ :param str id: A filter to return only resources whose Property identifier matches the given identifier.
202
+ :param str scope: A filter to return only resources their scope matches the given scope.
203
+ :param str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
204
204
  """
205
205
  __args__ = dict()
206
206
  __args__['compartmentId'] = compartment_id
@@ -144,7 +144,7 @@ class GetPropertyResult:
144
144
  @pulumi.getter
145
145
  def scope(self) -> str:
146
146
  """
147
- The scope of the property
147
+ The scope of the property.
148
148
  """
149
149
  return pulumi.get(self, "scope")
150
150
 
@@ -152,7 +152,7 @@ class GetPropertyResult:
152
152
  @pulumi.getter
153
153
  def selection(self) -> str:
154
154
  """
155
- Text selection of the category
155
+ Text selection of the property.
156
156
  """
157
157
  return pulumi.get(self, "selection")
158
158
 
@@ -200,7 +200,7 @@ class GetPropertyResult:
200
200
  @pulumi.getter(name="valueType")
201
201
  def value_type(self) -> str:
202
202
  """
203
- Format of the value
203
+ Format of the value.
204
204
  """
205
205
  return pulumi.get(self, "value_type")
206
206
 
@@ -208,7 +208,7 @@ class GetPropertyResult:
208
208
  @pulumi.getter
209
209
  def values(self) -> Sequence[str]:
210
210
  """
211
- Values of the property (must be a single value if selection = 'single choice')
211
+ Values of the property (must be a single value if selection = 'SINGLE_CHOICE').
212
212
  """
213
213
  return pulumi.get(self, "values")
214
214
 
@@ -96,7 +96,7 @@ class GetRunbookResult:
96
96
  @pulumi.getter
97
97
  def associations(self) -> Sequence['outputs.GetRunbookAssociationResult']:
98
98
  """
99
- JSON content with required associations
99
+ Associations for the runbook.
100
100
  """
101
101
  return pulumi.get(self, "associations")
102
102
 
@@ -133,7 +133,7 @@ class GetRunbookResult:
133
133
  @pulumi.getter(name="estimatedTime")
134
134
  def estimated_time(self) -> str:
135
135
  """
136
- Estimated time to successfully complete the runbook execution
136
+ Estimated time to successfully complete the runbook execution.
137
137
  """
138
138
  return pulumi.get(self, "estimated_time")
139
139
 
@@ -149,7 +149,7 @@ class GetRunbookResult:
149
149
  @pulumi.getter
150
150
  def id(self) -> str:
151
151
  """
152
- The provider-assigned unique ID for this managed resource.
152
+ The OCID of the resource.
153
153
  """
154
154
  return pulumi.get(self, "id")
155
155
 
@@ -157,7 +157,7 @@ class GetRunbookResult:
157
157
  @pulumi.getter(name="isDefault")
158
158
  def is_default(self) -> bool:
159
159
  """
160
- Is the runbook default?
160
+ Is the runbook default? Sets this runbook as the default for the chosen product/product stack for the specified lifecycle operation.
161
161
  """
162
162
  return pulumi.get(self, "is_default")
163
163
 
@@ -173,7 +173,7 @@ class GetRunbookResult:
173
173
  @pulumi.getter
174
174
  def operation(self) -> str:
175
175
  """
176
- The lifecycle operation performed by the task.
176
+ The lifecycle operation performed by the runbook.
177
177
  """
178
178
  return pulumi.get(self, "operation")
179
179
 
@@ -210,7 +210,7 @@ class GetRunbookResult:
210
210
  @pulumi.getter(name="runbookRelevance")
211
211
  def runbook_relevance(self) -> str:
212
212
  """
213
- Type of runbook structure.
213
+ Relevance of the runbook.
214
214
  """
215
215
  return pulumi.get(self, "runbook_relevance")
216
216
 
@@ -289,7 +289,7 @@ def get_runbook(runbook_id: Optional[str] = None,
289
289
  """
290
290
  This data source provides details about a specific Runbook resource in Oracle Cloud Infrastructure Fleet Apps Management service.
291
291
 
292
- Gets a Runbook by identifier
292
+ Get the details of a runbook in Fleet Application Management.
293
293
 
294
294
  ## Example Usage
295
295
 
@@ -335,7 +335,7 @@ def get_runbook_output(runbook_id: Optional[pulumi.Input[str]] = None,
335
335
  """
336
336
  This data source provides details about a specific Runbook resource in Oracle Cloud Infrastructure Fleet Apps Management service.
337
337
 
338
- Gets a Runbook by identifier
338
+ Get the details of a runbook in Fleet Application Management.
339
339
 
340
340
  ## Example Usage
341
341
 
@@ -90,7 +90,7 @@ class GetRunbooksResult:
90
90
  @pulumi.getter
91
91
  def operation(self) -> Optional[str]:
92
92
  """
93
- The lifecycle operation performed by the task.
93
+ The lifecycle operation performed by the runbook.
94
94
  """
95
95
  return pulumi.get(self, "operation")
96
96
 
@@ -114,7 +114,7 @@ class GetRunbooksResult:
114
114
  @pulumi.getter(name="runbookRelevance")
115
115
  def runbook_relevance(self) -> Optional[str]:
116
116
  """
117
- Type of runbook structure.
117
+ Relevance of the runbook.
118
118
  """
119
119
  return pulumi.get(self, "runbook_relevance")
120
120
 
@@ -166,7 +166,7 @@ def get_runbooks(compartment_id: Optional[str] = None,
166
166
  """
167
167
  This data source provides the list of Runbooks in Oracle Cloud Infrastructure Fleet Apps Management service.
168
168
 
169
- Returns a list of Runbooks.
169
+ List runbooks in Fleet Application Management.
170
170
 
171
171
  ## Example Usage
172
172
 
@@ -187,12 +187,12 @@ def get_runbooks(compartment_id: Optional[str] = None,
187
187
 
188
188
  :param str compartment_id: The ID of the compartment in which to list resources.
189
189
  :param str display_name: A filter to return only resources that match the entire display name given.
190
- :param str id: unique Runbook identifier
191
- :param str operation: The runbook lifecycle.
192
- :param str platform: The ID of the runbook platform.
193
- :param str runbook_relevance: The runbook relevance of product or full-stack.
194
- :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
195
- :param str type: The ID of the runbook type.
190
+ :param str id: A filter to return runbooks whose identifier matches the given identifier.
191
+ :param str operation: A filter to return runbooks whose operation matches the given lifecycle operation.
192
+ :param str platform: A filter to return runbooks whose platform matches the given platform.
193
+ :param str runbook_relevance: A filter to return runbooks whose runbookRelevance matches the given runbookRelevance.
194
+ :param str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
195
+ :param str type: A filter to return runbooks whose type matches the given type.
196
196
  """
197
197
  __args__ = dict()
198
198
  __args__['compartmentId'] = compartment_id
@@ -231,7 +231,7 @@ def get_runbooks_output(compartment_id: Optional[pulumi.Input[Optional[str]]] =
231
231
  """
232
232
  This data source provides the list of Runbooks in Oracle Cloud Infrastructure Fleet Apps Management service.
233
233
 
234
- Returns a list of Runbooks.
234
+ List runbooks in Fleet Application Management.
235
235
 
236
236
  ## Example Usage
237
237
 
@@ -252,12 +252,12 @@ def get_runbooks_output(compartment_id: Optional[pulumi.Input[Optional[str]]] =
252
252
 
253
253
  :param str compartment_id: The ID of the compartment in which to list resources.
254
254
  :param str display_name: A filter to return only resources that match the entire display name given.
255
- :param str id: unique Runbook identifier
256
- :param str operation: The runbook lifecycle.
257
- :param str platform: The ID of the runbook platform.
258
- :param str runbook_relevance: The runbook relevance of product or full-stack.
259
- :param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
260
- :param str type: The ID of the runbook type.
255
+ :param str id: A filter to return runbooks whose identifier matches the given identifier.
256
+ :param str operation: A filter to return runbooks whose operation matches the given lifecycle operation.
257
+ :param str platform: A filter to return runbooks whose platform matches the given platform.
258
+ :param str runbook_relevance: A filter to return runbooks whose runbookRelevance matches the given runbookRelevance.
259
+ :param str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
260
+ :param str type: A filter to return runbooks whose type matches the given type.
261
261
  """
262
262
  __args__ = dict()
263
263
  __args__['compartmentId'] = compartment_id
@@ -108,7 +108,7 @@ class GetSchedulerDefinitionResult:
108
108
  @pulumi.getter(name="actionGroupTypes")
109
109
  def action_group_types(self) -> Sequence[str]:
110
110
  """
111
- All ActionGroup Types part of the schedule.
111
+ All ActionGroup Types that are part of the schedule.
112
112
  """
113
113
  return pulumi.get(self, "action_group_types")
114
114
 
@@ -124,7 +124,7 @@ class GetSchedulerDefinitionResult:
124
124
  @pulumi.getter(name="activityInitiationCutOff")
125
125
  def activity_initiation_cut_off(self) -> int:
126
126
  """
127
- Activity Initiation Cut Off
127
+ Activity Initiation Cut Off.
128
128
  """
129
129
  return pulumi.get(self, "activity_initiation_cut_off")
130
130
 
@@ -132,7 +132,7 @@ class GetSchedulerDefinitionResult:
132
132
  @pulumi.getter(name="applicationTypes")
133
133
  def application_types(self) -> Sequence[str]:
134
134
  """
135
- All application types part of the schedule for ENVIRONMENT ActionGroup Type.
135
+ All application types that are part of the schedule for ENVIRONMENT ActionGroup Type.
136
136
  """
137
137
  return pulumi.get(self, "application_types")
138
138
 
@@ -156,7 +156,7 @@ class GetSchedulerDefinitionResult:
156
156
  @pulumi.getter(name="countOfAffectedResources")
157
157
  def count_of_affected_resources(self) -> int:
158
158
  """
159
- Count of Resources affected by the Schedule
159
+ Count of Resources affected by the Schedule.
160
160
  """
161
161
  return pulumi.get(self, "count_of_affected_resources")
162
162
 
@@ -164,7 +164,7 @@ class GetSchedulerDefinitionResult:
164
164
  @pulumi.getter(name="countOfAffectedTargets")
165
165
  def count_of_affected_targets(self) -> int:
166
166
  """
167
- Count of Targets affected by the Schedule
167
+ Count of Targets affected by the Schedule.
168
168
  """
169
169
  return pulumi.get(self, "count_of_affected_targets")
170
170
 
@@ -220,7 +220,7 @@ class GetSchedulerDefinitionResult:
220
220
  @pulumi.getter(name="lifecycleOperations")
221
221
  def lifecycle_operations(self) -> Sequence[str]:
222
222
  """
223
- All LifeCycle Operations part of the schedule
223
+ All LifeCycle Operations that are part of the schedule.
224
224
  """
225
225
  return pulumi.get(self, "lifecycle_operations")
226
226
 
@@ -228,7 +228,7 @@ class GetSchedulerDefinitionResult:
228
228
  @pulumi.getter
229
229
  def products(self) -> Sequence[str]:
230
230
  """
231
- All products part of the schedule for PRODUCT ActionGroup Type.
231
+ All products that are part of the schedule for PRODUCT ActionGroup Type.
232
232
  """
233
233
  return pulumi.get(self, "products")
234
234
 
@@ -289,7 +289,7 @@ class GetSchedulerDefinitionResult:
289
289
  @pulumi.getter(name="timeOfNextRun")
290
290
  def time_of_next_run(self) -> str:
291
291
  """
292
- Scheduled date for the next run of the Job.
292
+ The scheduled date for the next run of the Job.
293
293
  """
294
294
  return pulumi.get(self, "time_of_next_run")
295
295
 
@@ -340,7 +340,7 @@ def get_scheduler_definition(scheduler_definition_id: Optional[str] = None,
340
340
  """
341
341
  This data source provides details about a specific Scheduler Definition resource in Oracle Cloud Infrastructure Fleet Apps Management service.
342
342
 
343
- Gets a SchedulerDefinition by identifier
343
+ Get the details of a SchedulerDefinition that performs lifecycle management operations.
344
344
 
345
345
  ## Example Usage
346
346
 
@@ -390,7 +390,7 @@ def get_scheduler_definition_output(scheduler_definition_id: Optional[pulumi.Inp
390
390
  """
391
391
  This data source provides details about a specific Scheduler Definition resource in Oracle Cloud Infrastructure Fleet Apps Management service.
392
392
 
393
- Gets a SchedulerDefinition by identifier
393
+ Get the details of a SchedulerDefinition that performs lifecycle management operations.
394
394
 
395
395
  ## Example Usage
396
396
 
@@ -110,7 +110,7 @@ def get_scheduler_definition_scheduled_fleets(compartment_id: Optional[str] = No
110
110
  """
111
111
  This data source provides the list of Scheduler Definition Scheduled Fleets in Oracle Cloud Infrastructure Fleet Apps Management service.
112
112
 
113
- Returns a list of ScheduledFleets
113
+ Returns a list of ScheduledFleets.
114
114
 
115
115
  ## Example Usage
116
116
 
@@ -151,7 +151,7 @@ def get_scheduler_definition_scheduled_fleets_output(compartment_id: Optional[pu
151
151
  """
152
152
  This data source provides the list of Scheduler Definition Scheduled Fleets in Oracle Cloud Infrastructure Fleet Apps Management service.
153
153
 
154
- Returns a list of ScheduledFleets
154
+ Returns a list of ScheduledFleets.
155
155
 
156
156
  ## Example Usage
157
157