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.
- pulumi_oci/__init__.py +40 -0
- pulumi_oci/database/autonomous_container_database.py +47 -0
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/get_autonomous_container_database.py +15 -1
- pulumi_oci/database/get_autonomous_database.py +15 -1
- pulumi_oci/database/outputs.py +14 -0
- pulumi_oci/dataflow/application.py +75 -33
- pulumi_oci/dataflow/get_application.py +15 -1
- pulumi_oci/dataflow/outputs.py +7 -0
- pulumi_oci/desktops/_inputs.py +9 -9
- pulumi_oci/desktops/desktop_pool.py +84 -35
- pulumi_oci/desktops/get_desktop_pool.py +12 -1
- pulumi_oci/desktops/outputs.py +13 -6
- pulumi_oci/disasterrecovery/_inputs.py +46 -30
- pulumi_oci/disasterrecovery/dr_plan.py +194 -23
- pulumi_oci/disasterrecovery/get_dr_plan.py +54 -4
- pulumi_oci/disasterrecovery/get_dr_plans.py +23 -1
- pulumi_oci/disasterrecovery/outputs.py +113 -21
- pulumi_oci/fleetappsmanagement/__init__.py +19 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +5334 -378
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +830 -0
- pulumi_oci/fleetappsmanagement/fleet.py +112 -67
- pulumi_oci/fleetappsmanagement/fleet_credential.py +44 -36
- pulumi_oci/fleetappsmanagement/fleet_property.py +35 -35
- pulumi_oci/fleetappsmanagement/fleet_resource.py +37 -37
- pulumi_oci/fleetappsmanagement/get_announcements.py +4 -4
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +199 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +253 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +324 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +243 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +144 -0
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +279 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +29 -15
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +8 -8
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +7 -7
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +61 -17
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +6 -6
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +8 -8
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +11 -11
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +11 -11
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +10 -10
- pulumi_oci/fleetappsmanagement/get_fleet_targets.py +8 -8
- pulumi_oci/fleetappsmanagement/get_fleets.py +16 -16
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +12 -12
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +8 -8
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +31 -12
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +144 -0
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +2 -2
- pulumi_oci/fleetappsmanagement/get_onboardings.py +2 -2
- pulumi_oci/fleetappsmanagement/get_patch.py +363 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +335 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +296 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +221 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +9 -9
- pulumi_oci/fleetappsmanagement/get_property.py +4 -4
- pulumi_oci/fleetappsmanagement/get_runbook.py +8 -8
- pulumi_oci/fleetappsmanagement/get_runbooks.py +16 -16
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +10 -10
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +2 -2
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +33 -11
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +144 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_resources.py +245 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +245 -0
- pulumi_oci/fleetappsmanagement/get_task_record.py +3 -3
- pulumi_oci/fleetappsmanagement/maintenance_window.py +44 -44
- pulumi_oci/fleetappsmanagement/onboarding.py +108 -20
- pulumi_oci/fleetappsmanagement/outputs.py +11222 -2736
- pulumi_oci/fleetappsmanagement/patch.py +978 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +687 -0
- pulumi_oci/fleetappsmanagement/property.py +27 -27
- pulumi_oci/fleetappsmanagement/runbook.py +1173 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +30 -30
- pulumi_oci/fleetappsmanagement/task_record.py +754 -0
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +28 -0
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +56 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +15 -1
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +29 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +33 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/visualbuilder/_inputs.py +57 -202
- pulumi_oci/visualbuilder/get_vb_instance.py +15 -29
- pulumi_oci/visualbuilder/outputs.py +114 -400
- pulumi_oci/visualbuilder/vb_instance.py +62 -59
- {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/METADATA +1 -1
- {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/RECORD +87 -68
- {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.19.0a1734003732.dist-info}/top_level.txt +0 -0
@@ -24,6 +24,7 @@ class FleetArgs:
|
|
24
24
|
compartment_id: pulumi.Input[str],
|
25
25
|
fleet_type: pulumi.Input[str],
|
26
26
|
application_type: Optional[pulumi.Input[str]] = None,
|
27
|
+
credentials: Optional[pulumi.Input[Sequence[pulumi.Input['FleetCredentialArgs']]]] = None,
|
27
28
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
28
29
|
description: Optional[pulumi.Input[str]] = None,
|
29
30
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -38,24 +39,27 @@ class FleetArgs:
|
|
38
39
|
"""
|
39
40
|
The set of arguments for constructing a Fleet resource.
|
40
41
|
:param pulumi.Input[str] compartment_id: Tenancy OCID
|
41
|
-
:param pulumi.Input[str] fleet_type: Type of the Fleet
|
42
|
-
:param pulumi.Input[str] application_type:
|
42
|
+
:param pulumi.Input[str] fleet_type: Type of the Fleet. PRODUCT - A fleet of product-specific resources for a product type. ENVIRONMENT - A fleet of environment-specific resources for a product stack. GROUP - A fleet of a fleet of either environment or product fleets. GENERIC - A fleet of resources selected dynamically or manually for reporting purposes
|
43
|
+
:param pulumi.Input[str] application_type: Product stack associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
44
|
+
:param pulumi.Input[Sequence[pulumi.Input['FleetCredentialArgs']]] credentials: Credentials associated with the Fleet.
|
43
45
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
44
46
|
:param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
45
47
|
: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`
|
46
|
-
:param pulumi.Input[str] environment_type: Environment Type associated with the Fleet.Applicable for
|
48
|
+
:param pulumi.Input[str] environment_type: Environment Type associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
47
49
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
48
|
-
:param pulumi.Input[str] group_type: Group Type associated with Group Fleet.
|
49
|
-
:param pulumi.Input[bool] is_target_auto_confirm: (Updatable) A value
|
50
|
-
:param pulumi.Input['FleetNotificationPreferencesArgs'] notification_preferences: (Updatable)
|
51
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] products: Products associated with the Fleet
|
52
|
-
:param pulumi.Input[str] resource_selection_type: Type of resource selection in a
|
53
|
-
:param pulumi.Input['FleetRuleSelectionCriteriaArgs'] rule_selection_criteria: (Updatable) Rule Selection Criteria
|
50
|
+
:param pulumi.Input[str] group_type: Group Type associated with Group Fleet.
|
51
|
+
:param pulumi.Input[bool] is_target_auto_confirm: (Updatable) A value that represents if auto-confirming of the targets can be enabled. This will allow targets to be auto-confirmed in the fleet without manual intervention.
|
52
|
+
:param pulumi.Input['FleetNotificationPreferencesArgs'] notification_preferences: (Updatable) Notification information to get notified when the fleet status changes.
|
53
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] products: Products associated with the Fleet.
|
54
|
+
:param pulumi.Input[str] resource_selection_type: Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
|
55
|
+
:param pulumi.Input['FleetRuleSelectionCriteriaArgs'] rule_selection_criteria: (Updatable) Rule Selection Criteria for DYNAMIC resource selection for a GENERIC fleet. Rules define what resources are members of this fleet. All resources that meet the criteria are added automatically.
|
54
56
|
"""
|
55
57
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
56
58
|
pulumi.set(__self__, "fleet_type", fleet_type)
|
57
59
|
if application_type is not None:
|
58
60
|
pulumi.set(__self__, "application_type", application_type)
|
61
|
+
if credentials is not None:
|
62
|
+
pulumi.set(__self__, "credentials", credentials)
|
59
63
|
if defined_tags is not None:
|
60
64
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
61
65
|
if description is not None:
|
@@ -95,7 +99,7 @@ class FleetArgs:
|
|
95
99
|
@pulumi.getter(name="fleetType")
|
96
100
|
def fleet_type(self) -> pulumi.Input[str]:
|
97
101
|
"""
|
98
|
-
Type of the Fleet
|
102
|
+
Type of the Fleet. PRODUCT - A fleet of product-specific resources for a product type. ENVIRONMENT - A fleet of environment-specific resources for a product stack. GROUP - A fleet of a fleet of either environment or product fleets. GENERIC - A fleet of resources selected dynamically or manually for reporting purposes
|
99
103
|
"""
|
100
104
|
return pulumi.get(self, "fleet_type")
|
101
105
|
|
@@ -107,7 +111,7 @@ class FleetArgs:
|
|
107
111
|
@pulumi.getter(name="applicationType")
|
108
112
|
def application_type(self) -> Optional[pulumi.Input[str]]:
|
109
113
|
"""
|
110
|
-
|
114
|
+
Product stack associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
111
115
|
"""
|
112
116
|
return pulumi.get(self, "application_type")
|
113
117
|
|
@@ -115,6 +119,18 @@ class FleetArgs:
|
|
115
119
|
def application_type(self, value: Optional[pulumi.Input[str]]):
|
116
120
|
pulumi.set(self, "application_type", value)
|
117
121
|
|
122
|
+
@property
|
123
|
+
@pulumi.getter
|
124
|
+
def credentials(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FleetCredentialArgs']]]]:
|
125
|
+
"""
|
126
|
+
Credentials associated with the Fleet.
|
127
|
+
"""
|
128
|
+
return pulumi.get(self, "credentials")
|
129
|
+
|
130
|
+
@credentials.setter
|
131
|
+
def credentials(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FleetCredentialArgs']]]]):
|
132
|
+
pulumi.set(self, "credentials", value)
|
133
|
+
|
118
134
|
@property
|
119
135
|
@pulumi.getter(name="definedTags")
|
120
136
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -155,7 +171,7 @@ class FleetArgs:
|
|
155
171
|
@pulumi.getter(name="environmentType")
|
156
172
|
def environment_type(self) -> Optional[pulumi.Input[str]]:
|
157
173
|
"""
|
158
|
-
Environment Type associated with the Fleet.Applicable for
|
174
|
+
Environment Type associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
159
175
|
"""
|
160
176
|
return pulumi.get(self, "environment_type")
|
161
177
|
|
@@ -179,7 +195,7 @@ class FleetArgs:
|
|
179
195
|
@pulumi.getter(name="groupType")
|
180
196
|
def group_type(self) -> Optional[pulumi.Input[str]]:
|
181
197
|
"""
|
182
|
-
Group Type associated with Group Fleet.
|
198
|
+
Group Type associated with Group Fleet.
|
183
199
|
"""
|
184
200
|
return pulumi.get(self, "group_type")
|
185
201
|
|
@@ -191,7 +207,7 @@ class FleetArgs:
|
|
191
207
|
@pulumi.getter(name="isTargetAutoConfirm")
|
192
208
|
def is_target_auto_confirm(self) -> Optional[pulumi.Input[bool]]:
|
193
209
|
"""
|
194
|
-
(Updatable) A value
|
210
|
+
(Updatable) A value that represents if auto-confirming of the targets can be enabled. This will allow targets to be auto-confirmed in the fleet without manual intervention.
|
195
211
|
"""
|
196
212
|
return pulumi.get(self, "is_target_auto_confirm")
|
197
213
|
|
@@ -203,7 +219,7 @@ class FleetArgs:
|
|
203
219
|
@pulumi.getter(name="notificationPreferences")
|
204
220
|
def notification_preferences(self) -> Optional[pulumi.Input['FleetNotificationPreferencesArgs']]:
|
205
221
|
"""
|
206
|
-
(Updatable)
|
222
|
+
(Updatable) Notification information to get notified when the fleet status changes.
|
207
223
|
"""
|
208
224
|
return pulumi.get(self, "notification_preferences")
|
209
225
|
|
@@ -215,7 +231,7 @@ class FleetArgs:
|
|
215
231
|
@pulumi.getter
|
216
232
|
def products(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
217
233
|
"""
|
218
|
-
Products associated with the Fleet
|
234
|
+
Products associated with the Fleet.
|
219
235
|
"""
|
220
236
|
return pulumi.get(self, "products")
|
221
237
|
|
@@ -227,7 +243,7 @@ class FleetArgs:
|
|
227
243
|
@pulumi.getter(name="resourceSelectionType")
|
228
244
|
def resource_selection_type(self) -> Optional[pulumi.Input[str]]:
|
229
245
|
"""
|
230
|
-
Type of resource selection in a
|
246
|
+
Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
|
231
247
|
"""
|
232
248
|
return pulumi.get(self, "resource_selection_type")
|
233
249
|
|
@@ -239,7 +255,7 @@ class FleetArgs:
|
|
239
255
|
@pulumi.getter(name="ruleSelectionCriteria")
|
240
256
|
def rule_selection_criteria(self) -> Optional[pulumi.Input['FleetRuleSelectionCriteriaArgs']]:
|
241
257
|
"""
|
242
|
-
(Updatable) Rule Selection Criteria
|
258
|
+
(Updatable) Rule Selection Criteria for DYNAMIC resource selection for a GENERIC fleet. Rules define what resources are members of this fleet. All resources that meet the criteria are added automatically.
|
243
259
|
"""
|
244
260
|
return pulumi.get(self, "rule_selection_criteria")
|
245
261
|
|
@@ -253,6 +269,7 @@ class _FleetState:
|
|
253
269
|
def __init__(__self__, *,
|
254
270
|
application_type: Optional[pulumi.Input[str]] = None,
|
255
271
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
272
|
+
credentials: Optional[pulumi.Input[Sequence[pulumi.Input['FleetCredentialArgs']]]] = None,
|
256
273
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
257
274
|
description: Optional[pulumi.Input[str]] = None,
|
258
275
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -273,22 +290,23 @@ class _FleetState:
|
|
273
290
|
time_updated: Optional[pulumi.Input[str]] = None):
|
274
291
|
"""
|
275
292
|
Input properties used for looking up and filtering Fleet resources.
|
276
|
-
:param pulumi.Input[str] application_type:
|
293
|
+
:param pulumi.Input[str] application_type: Product stack associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
277
294
|
:param pulumi.Input[str] compartment_id: Tenancy OCID
|
295
|
+
:param pulumi.Input[Sequence[pulumi.Input['FleetCredentialArgs']]] credentials: Credentials associated with the Fleet.
|
278
296
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
279
297
|
:param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
280
298
|
: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`
|
281
|
-
:param pulumi.Input[str] environment_type: Environment Type associated with the Fleet.Applicable for
|
282
|
-
:param pulumi.Input[str] fleet_type: Type of the Fleet
|
299
|
+
:param pulumi.Input[str] environment_type: Environment Type associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
300
|
+
:param pulumi.Input[str] fleet_type: Type of the Fleet. PRODUCT - A fleet of product-specific resources for a product type. ENVIRONMENT - A fleet of environment-specific resources for a product stack. GROUP - A fleet of a fleet of either environment or product fleets. GENERIC - A fleet of resources selected dynamically or manually for reporting purposes
|
283
301
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
284
|
-
:param pulumi.Input[str] group_type: Group Type associated with Group Fleet.
|
285
|
-
:param pulumi.Input[bool] is_target_auto_confirm: (Updatable) A value
|
302
|
+
:param pulumi.Input[str] group_type: Group Type associated with Group Fleet.
|
303
|
+
:param pulumi.Input[bool] is_target_auto_confirm: (Updatable) A value that represents if auto-confirming of the targets can be enabled. This will allow targets to be auto-confirmed in the fleet without manual intervention.
|
286
304
|
: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.
|
287
|
-
:param pulumi.Input['FleetNotificationPreferencesArgs'] notification_preferences: (Updatable)
|
288
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] products: Products associated with the Fleet
|
305
|
+
:param pulumi.Input['FleetNotificationPreferencesArgs'] notification_preferences: (Updatable) Notification information to get notified when the fleet status changes.
|
306
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] products: Products associated with the Fleet.
|
289
307
|
:param pulumi.Input[str] resource_region: Associated region
|
290
|
-
:param pulumi.Input[str] resource_selection_type: Type of resource selection in a
|
291
|
-
:param pulumi.Input['FleetRuleSelectionCriteriaArgs'] rule_selection_criteria: (Updatable) Rule Selection Criteria
|
308
|
+
:param pulumi.Input[str] resource_selection_type: Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
|
309
|
+
:param pulumi.Input['FleetRuleSelectionCriteriaArgs'] rule_selection_criteria: (Updatable) Rule Selection Criteria for DYNAMIC resource selection for a GENERIC fleet. Rules define what resources are members of this fleet. All resources that meet the criteria are added automatically.
|
292
310
|
:param pulumi.Input[str] state: The lifecycle state of the Fleet.
|
293
311
|
: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"}`
|
294
312
|
:param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
|
@@ -298,6 +316,8 @@ class _FleetState:
|
|
298
316
|
pulumi.set(__self__, "application_type", application_type)
|
299
317
|
if compartment_id is not None:
|
300
318
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
319
|
+
if credentials is not None:
|
320
|
+
pulumi.set(__self__, "credentials", credentials)
|
301
321
|
if defined_tags is not None:
|
302
322
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
303
323
|
if description is not None:
|
@@ -339,7 +359,7 @@ class _FleetState:
|
|
339
359
|
@pulumi.getter(name="applicationType")
|
340
360
|
def application_type(self) -> Optional[pulumi.Input[str]]:
|
341
361
|
"""
|
342
|
-
|
362
|
+
Product stack associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
343
363
|
"""
|
344
364
|
return pulumi.get(self, "application_type")
|
345
365
|
|
@@ -359,6 +379,18 @@ class _FleetState:
|
|
359
379
|
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
360
380
|
pulumi.set(self, "compartment_id", value)
|
361
381
|
|
382
|
+
@property
|
383
|
+
@pulumi.getter
|
384
|
+
def credentials(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FleetCredentialArgs']]]]:
|
385
|
+
"""
|
386
|
+
Credentials associated with the Fleet.
|
387
|
+
"""
|
388
|
+
return pulumi.get(self, "credentials")
|
389
|
+
|
390
|
+
@credentials.setter
|
391
|
+
def credentials(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FleetCredentialArgs']]]]):
|
392
|
+
pulumi.set(self, "credentials", value)
|
393
|
+
|
362
394
|
@property
|
363
395
|
@pulumi.getter(name="definedTags")
|
364
396
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -399,7 +431,7 @@ class _FleetState:
|
|
399
431
|
@pulumi.getter(name="environmentType")
|
400
432
|
def environment_type(self) -> Optional[pulumi.Input[str]]:
|
401
433
|
"""
|
402
|
-
Environment Type associated with the Fleet.Applicable for
|
434
|
+
Environment Type associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
403
435
|
"""
|
404
436
|
return pulumi.get(self, "environment_type")
|
405
437
|
|
@@ -411,7 +443,7 @@ class _FleetState:
|
|
411
443
|
@pulumi.getter(name="fleetType")
|
412
444
|
def fleet_type(self) -> Optional[pulumi.Input[str]]:
|
413
445
|
"""
|
414
|
-
Type of the Fleet
|
446
|
+
Type of the Fleet. PRODUCT - A fleet of product-specific resources for a product type. ENVIRONMENT - A fleet of environment-specific resources for a product stack. GROUP - A fleet of a fleet of either environment or product fleets. GENERIC - A fleet of resources selected dynamically or manually for reporting purposes
|
415
447
|
"""
|
416
448
|
return pulumi.get(self, "fleet_type")
|
417
449
|
|
@@ -435,7 +467,7 @@ class _FleetState:
|
|
435
467
|
@pulumi.getter(name="groupType")
|
436
468
|
def group_type(self) -> Optional[pulumi.Input[str]]:
|
437
469
|
"""
|
438
|
-
Group Type associated with Group Fleet.
|
470
|
+
Group Type associated with Group Fleet.
|
439
471
|
"""
|
440
472
|
return pulumi.get(self, "group_type")
|
441
473
|
|
@@ -447,7 +479,7 @@ class _FleetState:
|
|
447
479
|
@pulumi.getter(name="isTargetAutoConfirm")
|
448
480
|
def is_target_auto_confirm(self) -> Optional[pulumi.Input[bool]]:
|
449
481
|
"""
|
450
|
-
(Updatable) A value
|
482
|
+
(Updatable) A value that represents if auto-confirming of the targets can be enabled. This will allow targets to be auto-confirmed in the fleet without manual intervention.
|
451
483
|
"""
|
452
484
|
return pulumi.get(self, "is_target_auto_confirm")
|
453
485
|
|
@@ -471,7 +503,7 @@ class _FleetState:
|
|
471
503
|
@pulumi.getter(name="notificationPreferences")
|
472
504
|
def notification_preferences(self) -> Optional[pulumi.Input['FleetNotificationPreferencesArgs']]:
|
473
505
|
"""
|
474
|
-
(Updatable)
|
506
|
+
(Updatable) Notification information to get notified when the fleet status changes.
|
475
507
|
"""
|
476
508
|
return pulumi.get(self, "notification_preferences")
|
477
509
|
|
@@ -483,7 +515,7 @@ class _FleetState:
|
|
483
515
|
@pulumi.getter
|
484
516
|
def products(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
485
517
|
"""
|
486
|
-
Products associated with the Fleet
|
518
|
+
Products associated with the Fleet.
|
487
519
|
"""
|
488
520
|
return pulumi.get(self, "products")
|
489
521
|
|
@@ -507,7 +539,7 @@ class _FleetState:
|
|
507
539
|
@pulumi.getter(name="resourceSelectionType")
|
508
540
|
def resource_selection_type(self) -> Optional[pulumi.Input[str]]:
|
509
541
|
"""
|
510
|
-
Type of resource selection in a
|
542
|
+
Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
|
511
543
|
"""
|
512
544
|
return pulumi.get(self, "resource_selection_type")
|
513
545
|
|
@@ -519,7 +551,7 @@ class _FleetState:
|
|
519
551
|
@pulumi.getter(name="ruleSelectionCriteria")
|
520
552
|
def rule_selection_criteria(self) -> Optional[pulumi.Input['FleetRuleSelectionCriteriaArgs']]:
|
521
553
|
"""
|
522
|
-
(Updatable) Rule Selection Criteria
|
554
|
+
(Updatable) Rule Selection Criteria for DYNAMIC resource selection for a GENERIC fleet. Rules define what resources are members of this fleet. All resources that meet the criteria are added automatically.
|
523
555
|
"""
|
524
556
|
return pulumi.get(self, "rule_selection_criteria")
|
525
557
|
|
@@ -583,6 +615,7 @@ class Fleet(pulumi.CustomResource):
|
|
583
615
|
opts: Optional[pulumi.ResourceOptions] = None,
|
584
616
|
application_type: Optional[pulumi.Input[str]] = None,
|
585
617
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
618
|
+
credentials: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FleetCredentialArgs', 'FleetCredentialArgsDict']]]]] = None,
|
586
619
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
587
620
|
description: Optional[pulumi.Input[str]] = None,
|
588
621
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -599,8 +632,7 @@ class Fleet(pulumi.CustomResource):
|
|
599
632
|
"""
|
600
633
|
This resource provides the Fleet resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
601
634
|
|
602
|
-
|
603
|
-
For more information, please see the documentation.
|
635
|
+
Create a product, environment, group, or generic type of fleet in Fleet Application Management.
|
604
636
|
|
605
637
|
## Import
|
606
638
|
|
@@ -612,20 +644,21 @@ class Fleet(pulumi.CustomResource):
|
|
612
644
|
|
613
645
|
:param str resource_name: The name of the resource.
|
614
646
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
615
|
-
:param pulumi.Input[str] application_type:
|
647
|
+
:param pulumi.Input[str] application_type: Product stack associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
616
648
|
:param pulumi.Input[str] compartment_id: Tenancy OCID
|
649
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['FleetCredentialArgs', 'FleetCredentialArgsDict']]]] credentials: Credentials associated with the Fleet.
|
617
650
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
618
651
|
:param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
619
652
|
: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`
|
620
|
-
:param pulumi.Input[str] environment_type: Environment Type associated with the Fleet.Applicable for
|
621
|
-
:param pulumi.Input[str] fleet_type: Type of the Fleet
|
653
|
+
:param pulumi.Input[str] environment_type: Environment Type associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
654
|
+
:param pulumi.Input[str] fleet_type: Type of the Fleet. PRODUCT - A fleet of product-specific resources for a product type. ENVIRONMENT - A fleet of environment-specific resources for a product stack. GROUP - A fleet of a fleet of either environment or product fleets. GENERIC - A fleet of resources selected dynamically or manually for reporting purposes
|
622
655
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
623
|
-
:param pulumi.Input[str] group_type: Group Type associated with Group Fleet.
|
624
|
-
:param pulumi.Input[bool] is_target_auto_confirm: (Updatable) A value
|
625
|
-
:param pulumi.Input[Union['FleetNotificationPreferencesArgs', 'FleetNotificationPreferencesArgsDict']] notification_preferences: (Updatable)
|
626
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] products: Products associated with the Fleet
|
627
|
-
:param pulumi.Input[str] resource_selection_type: Type of resource selection in a
|
628
|
-
:param pulumi.Input[Union['FleetRuleSelectionCriteriaArgs', 'FleetRuleSelectionCriteriaArgsDict']] rule_selection_criteria: (Updatable) Rule Selection Criteria
|
656
|
+
:param pulumi.Input[str] group_type: Group Type associated with Group Fleet.
|
657
|
+
:param pulumi.Input[bool] is_target_auto_confirm: (Updatable) A value that represents if auto-confirming of the targets can be enabled. This will allow targets to be auto-confirmed in the fleet without manual intervention.
|
658
|
+
:param pulumi.Input[Union['FleetNotificationPreferencesArgs', 'FleetNotificationPreferencesArgsDict']] notification_preferences: (Updatable) Notification information to get notified when the fleet status changes.
|
659
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] products: Products associated with the Fleet.
|
660
|
+
:param pulumi.Input[str] resource_selection_type: Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
|
661
|
+
:param pulumi.Input[Union['FleetRuleSelectionCriteriaArgs', 'FleetRuleSelectionCriteriaArgsDict']] rule_selection_criteria: (Updatable) Rule Selection Criteria for DYNAMIC resource selection for a GENERIC fleet. Rules define what resources are members of this fleet. All resources that meet the criteria are added automatically.
|
629
662
|
"""
|
630
663
|
...
|
631
664
|
@overload
|
@@ -636,8 +669,7 @@ class Fleet(pulumi.CustomResource):
|
|
636
669
|
"""
|
637
670
|
This resource provides the Fleet resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
638
671
|
|
639
|
-
|
640
|
-
For more information, please see the documentation.
|
672
|
+
Create a product, environment, group, or generic type of fleet in Fleet Application Management.
|
641
673
|
|
642
674
|
## Import
|
643
675
|
|
@@ -664,6 +696,7 @@ class Fleet(pulumi.CustomResource):
|
|
664
696
|
opts: Optional[pulumi.ResourceOptions] = None,
|
665
697
|
application_type: Optional[pulumi.Input[str]] = None,
|
666
698
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
699
|
+
credentials: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FleetCredentialArgs', 'FleetCredentialArgsDict']]]]] = None,
|
667
700
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
668
701
|
description: Optional[pulumi.Input[str]] = None,
|
669
702
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -689,6 +722,7 @@ class Fleet(pulumi.CustomResource):
|
|
689
722
|
if compartment_id is None and not opts.urn:
|
690
723
|
raise TypeError("Missing required property 'compartment_id'")
|
691
724
|
__props__.__dict__["compartment_id"] = compartment_id
|
725
|
+
__props__.__dict__["credentials"] = credentials
|
692
726
|
__props__.__dict__["defined_tags"] = defined_tags
|
693
727
|
__props__.__dict__["description"] = description
|
694
728
|
__props__.__dict__["display_name"] = display_name
|
@@ -721,6 +755,7 @@ class Fleet(pulumi.CustomResource):
|
|
721
755
|
opts: Optional[pulumi.ResourceOptions] = None,
|
722
756
|
application_type: Optional[pulumi.Input[str]] = None,
|
723
757
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
758
|
+
credentials: Optional[pulumi.Input[Sequence[pulumi.Input[Union['FleetCredentialArgs', 'FleetCredentialArgsDict']]]]] = None,
|
724
759
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
725
760
|
description: Optional[pulumi.Input[str]] = None,
|
726
761
|
display_name: Optional[pulumi.Input[str]] = None,
|
@@ -746,22 +781,23 @@ class Fleet(pulumi.CustomResource):
|
|
746
781
|
:param str resource_name: The unique name of the resulting resource.
|
747
782
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
748
783
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
749
|
-
:param pulumi.Input[str] application_type:
|
784
|
+
:param pulumi.Input[str] application_type: Product stack associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
750
785
|
:param pulumi.Input[str] compartment_id: Tenancy OCID
|
786
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['FleetCredentialArgs', 'FleetCredentialArgsDict']]]] credentials: Credentials associated with the Fleet.
|
751
787
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
752
788
|
:param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
753
789
|
: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`
|
754
|
-
:param pulumi.Input[str] environment_type: Environment Type associated with the Fleet.Applicable for
|
755
|
-
:param pulumi.Input[str] fleet_type: Type of the Fleet
|
790
|
+
:param pulumi.Input[str] environment_type: Environment Type associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
791
|
+
:param pulumi.Input[str] fleet_type: Type of the Fleet. PRODUCT - A fleet of product-specific resources for a product type. ENVIRONMENT - A fleet of environment-specific resources for a product stack. GROUP - A fleet of a fleet of either environment or product fleets. GENERIC - A fleet of resources selected dynamically or manually for reporting purposes
|
756
792
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
757
|
-
:param pulumi.Input[str] group_type: Group Type associated with Group Fleet.
|
758
|
-
:param pulumi.Input[bool] is_target_auto_confirm: (Updatable) A value
|
793
|
+
:param pulumi.Input[str] group_type: Group Type associated with Group Fleet.
|
794
|
+
:param pulumi.Input[bool] is_target_auto_confirm: (Updatable) A value that represents if auto-confirming of the targets can be enabled. This will allow targets to be auto-confirmed in the fleet without manual intervention.
|
759
795
|
: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.
|
760
|
-
:param pulumi.Input[Union['FleetNotificationPreferencesArgs', 'FleetNotificationPreferencesArgsDict']] notification_preferences: (Updatable)
|
761
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] products: Products associated with the Fleet
|
796
|
+
:param pulumi.Input[Union['FleetNotificationPreferencesArgs', 'FleetNotificationPreferencesArgsDict']] notification_preferences: (Updatable) Notification information to get notified when the fleet status changes.
|
797
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] products: Products associated with the Fleet.
|
762
798
|
:param pulumi.Input[str] resource_region: Associated region
|
763
|
-
:param pulumi.Input[str] resource_selection_type: Type of resource selection in a
|
764
|
-
:param pulumi.Input[Union['FleetRuleSelectionCriteriaArgs', 'FleetRuleSelectionCriteriaArgsDict']] rule_selection_criteria: (Updatable) Rule Selection Criteria
|
799
|
+
:param pulumi.Input[str] resource_selection_type: Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
|
800
|
+
:param pulumi.Input[Union['FleetRuleSelectionCriteriaArgs', 'FleetRuleSelectionCriteriaArgsDict']] rule_selection_criteria: (Updatable) Rule Selection Criteria for DYNAMIC resource selection for a GENERIC fleet. Rules define what resources are members of this fleet. All resources that meet the criteria are added automatically.
|
765
801
|
:param pulumi.Input[str] state: The lifecycle state of the Fleet.
|
766
802
|
: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"}`
|
767
803
|
:param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
|
@@ -773,6 +809,7 @@ class Fleet(pulumi.CustomResource):
|
|
773
809
|
|
774
810
|
__props__.__dict__["application_type"] = application_type
|
775
811
|
__props__.__dict__["compartment_id"] = compartment_id
|
812
|
+
__props__.__dict__["credentials"] = credentials
|
776
813
|
__props__.__dict__["defined_tags"] = defined_tags
|
777
814
|
__props__.__dict__["description"] = description
|
778
815
|
__props__.__dict__["display_name"] = display_name
|
@@ -797,7 +834,7 @@ class Fleet(pulumi.CustomResource):
|
|
797
834
|
@pulumi.getter(name="applicationType")
|
798
835
|
def application_type(self) -> pulumi.Output[str]:
|
799
836
|
"""
|
800
|
-
|
837
|
+
Product stack associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
801
838
|
"""
|
802
839
|
return pulumi.get(self, "application_type")
|
803
840
|
|
@@ -809,6 +846,14 @@ class Fleet(pulumi.CustomResource):
|
|
809
846
|
"""
|
810
847
|
return pulumi.get(self, "compartment_id")
|
811
848
|
|
849
|
+
@property
|
850
|
+
@pulumi.getter
|
851
|
+
def credentials(self) -> pulumi.Output[Sequence['outputs.FleetCredential']]:
|
852
|
+
"""
|
853
|
+
Credentials associated with the Fleet.
|
854
|
+
"""
|
855
|
+
return pulumi.get(self, "credentials")
|
856
|
+
|
812
857
|
@property
|
813
858
|
@pulumi.getter(name="definedTags")
|
814
859
|
def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
@@ -837,7 +882,7 @@ class Fleet(pulumi.CustomResource):
|
|
837
882
|
@pulumi.getter(name="environmentType")
|
838
883
|
def environment_type(self) -> pulumi.Output[str]:
|
839
884
|
"""
|
840
|
-
Environment Type associated with the Fleet.Applicable for
|
885
|
+
Environment Type associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
841
886
|
"""
|
842
887
|
return pulumi.get(self, "environment_type")
|
843
888
|
|
@@ -845,7 +890,7 @@ class Fleet(pulumi.CustomResource):
|
|
845
890
|
@pulumi.getter(name="fleetType")
|
846
891
|
def fleet_type(self) -> pulumi.Output[str]:
|
847
892
|
"""
|
848
|
-
Type of the Fleet
|
893
|
+
Type of the Fleet. PRODUCT - A fleet of product-specific resources for a product type. ENVIRONMENT - A fleet of environment-specific resources for a product stack. GROUP - A fleet of a fleet of either environment or product fleets. GENERIC - A fleet of resources selected dynamically or manually for reporting purposes
|
849
894
|
"""
|
850
895
|
return pulumi.get(self, "fleet_type")
|
851
896
|
|
@@ -861,7 +906,7 @@ class Fleet(pulumi.CustomResource):
|
|
861
906
|
@pulumi.getter(name="groupType")
|
862
907
|
def group_type(self) -> pulumi.Output[str]:
|
863
908
|
"""
|
864
|
-
Group Type associated with Group Fleet.
|
909
|
+
Group Type associated with Group Fleet.
|
865
910
|
"""
|
866
911
|
return pulumi.get(self, "group_type")
|
867
912
|
|
@@ -869,7 +914,7 @@ class Fleet(pulumi.CustomResource):
|
|
869
914
|
@pulumi.getter(name="isTargetAutoConfirm")
|
870
915
|
def is_target_auto_confirm(self) -> pulumi.Output[bool]:
|
871
916
|
"""
|
872
|
-
(Updatable) A value
|
917
|
+
(Updatable) A value that represents if auto-confirming of the targets can be enabled. This will allow targets to be auto-confirmed in the fleet without manual intervention.
|
873
918
|
"""
|
874
919
|
return pulumi.get(self, "is_target_auto_confirm")
|
875
920
|
|
@@ -885,7 +930,7 @@ class Fleet(pulumi.CustomResource):
|
|
885
930
|
@pulumi.getter(name="notificationPreferences")
|
886
931
|
def notification_preferences(self) -> pulumi.Output['outputs.FleetNotificationPreferences']:
|
887
932
|
"""
|
888
|
-
(Updatable)
|
933
|
+
(Updatable) Notification information to get notified when the fleet status changes.
|
889
934
|
"""
|
890
935
|
return pulumi.get(self, "notification_preferences")
|
891
936
|
|
@@ -893,7 +938,7 @@ class Fleet(pulumi.CustomResource):
|
|
893
938
|
@pulumi.getter
|
894
939
|
def products(self) -> pulumi.Output[Sequence[str]]:
|
895
940
|
"""
|
896
|
-
Products associated with the Fleet
|
941
|
+
Products associated with the Fleet.
|
897
942
|
"""
|
898
943
|
return pulumi.get(self, "products")
|
899
944
|
|
@@ -909,7 +954,7 @@ class Fleet(pulumi.CustomResource):
|
|
909
954
|
@pulumi.getter(name="resourceSelectionType")
|
910
955
|
def resource_selection_type(self) -> pulumi.Output[str]:
|
911
956
|
"""
|
912
|
-
Type of resource selection in a
|
957
|
+
Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
|
913
958
|
"""
|
914
959
|
return pulumi.get(self, "resource_selection_type")
|
915
960
|
|
@@ -917,7 +962,7 @@ class Fleet(pulumi.CustomResource):
|
|
917
962
|
@pulumi.getter(name="ruleSelectionCriteria")
|
918
963
|
def rule_selection_criteria(self) -> pulumi.Output['outputs.FleetRuleSelectionCriteria']:
|
919
964
|
"""
|
920
|
-
(Updatable) Rule Selection Criteria
|
965
|
+
(Updatable) Rule Selection Criteria for DYNAMIC resource selection for a GENERIC fleet. Rules define what resources are members of this fleet. All resources that meet the criteria are added automatically.
|
921
966
|
"""
|
922
967
|
return pulumi.get(self, "rule_selection_criteria")
|
923
968
|
|