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
@@ -98,7 +98,7 @@ class GetFleetResourceResult:
|
|
98
98
|
@pulumi.getter(name="applicationType")
|
99
99
|
def application_type(self) -> str:
|
100
100
|
"""
|
101
|
-
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.
|
101
|
+
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.
|
102
102
|
"""
|
103
103
|
return pulumi.get(self, "application_type")
|
104
104
|
|
@@ -106,7 +106,7 @@ class GetFleetResourceResult:
|
|
106
106
|
@pulumi.getter
|
107
107
|
def compartment(self) -> str:
|
108
108
|
"""
|
109
|
-
Resource Compartment
|
109
|
+
Resource Compartment name.
|
110
110
|
"""
|
111
111
|
return pulumi.get(self, "compartment")
|
112
112
|
|
@@ -122,7 +122,7 @@ class GetFleetResourceResult:
|
|
122
122
|
@pulumi.getter(name="complianceState")
|
123
123
|
def compliance_state(self) -> str:
|
124
124
|
"""
|
125
|
-
Compliance State of the Resource
|
125
|
+
Compliance State of the Resource.
|
126
126
|
"""
|
127
127
|
return pulumi.get(self, "compliance_state")
|
128
128
|
|
@@ -138,7 +138,7 @@ class GetFleetResourceResult:
|
|
138
138
|
@pulumi.getter(name="environmentType")
|
139
139
|
def environment_type(self) -> str:
|
140
140
|
"""
|
141
|
-
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.
|
141
|
+
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.
|
142
142
|
"""
|
143
143
|
return pulumi.get(self, "environment_type")
|
144
144
|
|
@@ -172,7 +172,7 @@ class GetFleetResourceResult:
|
|
172
172
|
@pulumi.getter
|
173
173
|
def product(self) -> str:
|
174
174
|
"""
|
175
|
-
Product associated with the resource when resource type is fleet.Will only be returned for PRODUCT fleets that are part of a GROUP Fleet
|
175
|
+
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.
|
176
176
|
"""
|
177
177
|
return pulumi.get(self, "product")
|
178
178
|
|
@@ -228,7 +228,7 @@ class GetFleetResourceResult:
|
|
228
228
|
@pulumi.getter(name="targetCount")
|
229
229
|
def target_count(self) -> int:
|
230
230
|
"""
|
231
|
-
Count of targets
|
231
|
+
Count of targets within the resource.
|
232
232
|
"""
|
233
233
|
return pulumi.get(self, "target_count")
|
234
234
|
|
@@ -244,7 +244,7 @@ class GetFleetResourceResult:
|
|
244
244
|
@pulumi.getter(name="tenancyName")
|
245
245
|
def tenancy_name(self) -> str:
|
246
246
|
"""
|
247
|
-
Resource Tenancy Name
|
247
|
+
Resource Tenancy Name.
|
248
248
|
"""
|
249
249
|
return pulumi.get(self, "tenancy_name")
|
250
250
|
|
@@ -301,7 +301,7 @@ def get_fleet_resource(fleet_id: Optional[str] = None,
|
|
301
301
|
"""
|
302
302
|
This data source provides details about a specific Fleet Resource resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
303
303
|
|
304
|
-
Gets a
|
304
|
+
Gets a Fleet Resource by identifier.
|
305
305
|
|
306
306
|
## Example Usage
|
307
307
|
|
@@ -314,7 +314,7 @@ def get_fleet_resource(fleet_id: Optional[str] = None,
|
|
314
314
|
```
|
315
315
|
|
316
316
|
|
317
|
-
:param str fleet_id:
|
317
|
+
:param str fleet_id: Unique Fleet identifier.
|
318
318
|
:param str fleet_resource_id: unique FleetResource identifier
|
319
319
|
"""
|
320
320
|
__args__ = dict()
|
@@ -352,7 +352,7 @@ def get_fleet_resource_output(fleet_id: Optional[pulumi.Input[str]] = None,
|
|
352
352
|
"""
|
353
353
|
This data source provides details about a specific Fleet Resource resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
354
354
|
|
355
|
-
Gets a
|
355
|
+
Gets a Fleet Resource by identifier.
|
356
356
|
|
357
357
|
## Example Usage
|
358
358
|
|
@@ -365,7 +365,7 @@ def get_fleet_resource_output(fleet_id: Optional[pulumi.Input[str]] = None,
|
|
365
365
|
```
|
366
366
|
|
367
367
|
|
368
|
-
:param str fleet_id:
|
368
|
+
:param str fleet_id: Unique Fleet identifier.
|
369
369
|
:param str fleet_resource_id: unique FleetResource identifier
|
370
370
|
"""
|
371
371
|
__args__ = dict()
|
@@ -137,7 +137,7 @@ def get_fleet_resources(display_name: Optional[str] = None,
|
|
137
137
|
"""
|
138
138
|
This data source provides the list of Fleet Resources in Oracle Cloud Infrastructure Fleet Apps Management service.
|
139
139
|
|
140
|
-
|
140
|
+
List resources for a fleet in Fleet Application Management.
|
141
141
|
|
142
142
|
## Example Usage
|
143
143
|
|
@@ -155,10 +155,10 @@ def get_fleet_resources(display_name: Optional[str] = None,
|
|
155
155
|
|
156
156
|
|
157
157
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
158
|
-
:param str fleet_id:
|
159
|
-
:param str fleet_resource_type: A filter to return resources
|
160
|
-
:param str id:
|
161
|
-
:param str state: A filter to return only resources
|
158
|
+
:param str fleet_id: Unique Fleet identifier.
|
159
|
+
:param str fleet_resource_type: A filter to return only resources whose resourceType matches the given resourceType.
|
160
|
+
:param str id: A filter to return only resources whose identifier matches the given identifier.
|
161
|
+
:param str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
162
162
|
:param str tenancy_id: Resource Tenancy Id
|
163
163
|
"""
|
164
164
|
__args__ = dict()
|
@@ -192,7 +192,7 @@ def get_fleet_resources_output(display_name: Optional[pulumi.Input[Optional[str]
|
|
192
192
|
"""
|
193
193
|
This data source provides the list of Fleet Resources in Oracle Cloud Infrastructure Fleet Apps Management service.
|
194
194
|
|
195
|
-
|
195
|
+
List resources for a fleet in Fleet Application Management.
|
196
196
|
|
197
197
|
## Example Usage
|
198
198
|
|
@@ -210,10 +210,10 @@ def get_fleet_resources_output(display_name: Optional[pulumi.Input[Optional[str]
|
|
210
210
|
|
211
211
|
|
212
212
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
213
|
-
:param str fleet_id:
|
214
|
-
:param str fleet_resource_type: A filter to return resources
|
215
|
-
:param str id:
|
216
|
-
:param str state: A filter to return only resources
|
213
|
+
:param str fleet_id: Unique Fleet identifier.
|
214
|
+
:param str fleet_resource_type: A filter to return only resources whose resourceType matches the given resourceType.
|
215
|
+
:param str id: A filter to return only resources whose identifier matches the given identifier.
|
216
|
+
:param str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
217
217
|
:param str tenancy_id: Resource Tenancy Id
|
218
218
|
"""
|
219
219
|
__args__ = dict()
|
@@ -139,7 +139,7 @@ def get_fleet_targets(display_name: Optional[str] = None,
|
|
139
139
|
"""
|
140
140
|
This data source provides the list of Fleet Targets in Oracle Cloud Infrastructure Fleet Apps Management service.
|
141
141
|
|
142
|
-
Returns
|
142
|
+
Returns the list of all confirmed targets within a fleet.
|
143
143
|
|
144
144
|
## Example Usage
|
145
145
|
|
@@ -156,9 +156,9 @@ def get_fleet_targets(display_name: Optional[str] = None,
|
|
156
156
|
|
157
157
|
|
158
158
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
159
|
-
:param str fleet_id:
|
160
|
-
:param str product: Product Name
|
161
|
-
:param str resource_display_name: Resource Display Name
|
159
|
+
:param str fleet_id: Unique Fleet identifier.
|
160
|
+
:param str product: Product Name.
|
161
|
+
:param str resource_display_name: Resource Display Name.
|
162
162
|
:param str resource_id: Resource Identifier
|
163
163
|
"""
|
164
164
|
__args__ = dict()
|
@@ -190,7 +190,7 @@ def get_fleet_targets_output(display_name: Optional[pulumi.Input[Optional[str]]]
|
|
190
190
|
"""
|
191
191
|
This data source provides the list of Fleet Targets in Oracle Cloud Infrastructure Fleet Apps Management service.
|
192
192
|
|
193
|
-
Returns
|
193
|
+
Returns the list of all confirmed targets within a fleet.
|
194
194
|
|
195
195
|
## Example Usage
|
196
196
|
|
@@ -207,9 +207,9 @@ def get_fleet_targets_output(display_name: Optional[pulumi.Input[Optional[str]]]
|
|
207
207
|
|
208
208
|
|
209
209
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
210
|
-
:param str fleet_id:
|
211
|
-
:param str product: Product Name
|
212
|
-
:param str resource_display_name: Resource Display Name
|
210
|
+
:param str fleet_id: Unique Fleet identifier.
|
211
|
+
:param str product: Product Name.
|
212
|
+
:param str resource_display_name: Resource Display Name.
|
213
213
|
:param str resource_id: Resource Identifier
|
214
214
|
"""
|
215
215
|
__args__ = dict()
|
@@ -64,7 +64,7 @@ class GetFleetsResult:
|
|
64
64
|
@pulumi.getter(name="applicationType")
|
65
65
|
def application_type(self) -> Optional[str]:
|
66
66
|
"""
|
67
|
-
|
67
|
+
Product stack associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
68
68
|
"""
|
69
69
|
return pulumi.get(self, "application_type")
|
70
70
|
|
@@ -72,7 +72,7 @@ class GetFleetsResult:
|
|
72
72
|
@pulumi.getter(name="compartmentId")
|
73
73
|
def compartment_id(self) -> Optional[str]:
|
74
74
|
"""
|
75
|
-
|
75
|
+
Tenancy Id (Root Compartment Id)for which the rule is created.
|
76
76
|
"""
|
77
77
|
return pulumi.get(self, "compartment_id")
|
78
78
|
|
@@ -88,7 +88,7 @@ class GetFleetsResult:
|
|
88
88
|
@pulumi.getter(name="environmentType")
|
89
89
|
def environment_type(self) -> Optional[str]:
|
90
90
|
"""
|
91
|
-
Environment Type associated with the Fleet.Applicable for ENVIRONMENT fleet types.
|
91
|
+
Environment Type associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
92
92
|
"""
|
93
93
|
return pulumi.get(self, "environment_type")
|
94
94
|
|
@@ -109,7 +109,7 @@ class GetFleetsResult:
|
|
109
109
|
@pulumi.getter(name="fleetType")
|
110
110
|
def fleet_type(self) -> Optional[str]:
|
111
111
|
"""
|
112
|
-
Type of the Fleet.
|
112
|
+
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
|
113
113
|
"""
|
114
114
|
return pulumi.get(self, "fleet_type")
|
115
115
|
|
@@ -185,14 +185,14 @@ def get_fleets(application_type: Optional[str] = None,
|
|
185
185
|
```
|
186
186
|
|
187
187
|
|
188
|
-
:param str application_type: A filter to return
|
188
|
+
:param str application_type: A filter to return resources that match the Application Type/Product Stack given..
|
189
189
|
:param str compartment_id: The ID of the compartment in which to list resources.
|
190
190
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
191
|
-
:param str environment_type: A filter to return
|
192
|
-
:param str fleet_type: A filter to return
|
193
|
-
:param str id:
|
194
|
-
:param str product: A filter to return
|
195
|
-
:param str state: A filter to return
|
191
|
+
:param str environment_type: A filter to return resources that match the Environment Type given.
|
192
|
+
:param str fleet_type: A filter to return fleets whose fleetType matches the given fleetType.
|
193
|
+
:param str id: A filter to return fleets whose id matches the given Fleet identifier
|
194
|
+
:param str product: A filter to return resources that match the Product given.
|
195
|
+
:param str state: A filter to return fleets whose lifecycleState matches the given lifecycleState.
|
196
196
|
"""
|
197
197
|
__args__ = dict()
|
198
198
|
__args__['applicationType'] = application_type
|
@@ -250,14 +250,14 @@ def get_fleets_output(application_type: Optional[pulumi.Input[Optional[str]]] =
|
|
250
250
|
```
|
251
251
|
|
252
252
|
|
253
|
-
:param str application_type: A filter to return
|
253
|
+
:param str application_type: A filter to return resources that match the Application Type/Product Stack given..
|
254
254
|
:param str compartment_id: The ID of the compartment in which to list resources.
|
255
255
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
256
|
-
:param str environment_type: A filter to return
|
257
|
-
:param str fleet_type: A filter to return
|
258
|
-
:param str id:
|
259
|
-
:param str product: A filter to return
|
260
|
-
:param str state: A filter to return
|
256
|
+
:param str environment_type: A filter to return resources that match the Environment Type given.
|
257
|
+
:param str fleet_type: A filter to return fleets whose fleetType matches the given fleetType.
|
258
|
+
:param str id: A filter to return fleets whose id matches the given Fleet identifier
|
259
|
+
:param str product: A filter to return resources that match the Product given.
|
260
|
+
:param str state: A filter to return fleets whose lifecycleState matches the given lifecycleState.
|
261
261
|
"""
|
262
262
|
__args__ = dict()
|
263
263
|
__args__['applicationType'] = application_type
|
@@ -127,7 +127,7 @@ class GetInventoryResourcesResult:
|
|
127
127
|
@pulumi.getter(name="resourceCompartmentId")
|
128
128
|
def resource_compartment_id(self) -> str:
|
129
129
|
"""
|
130
|
-
Compartment Id of the resource
|
130
|
+
Compartment Id of the resource.
|
131
131
|
"""
|
132
132
|
return pulumi.get(self, "resource_compartment_id")
|
133
133
|
|
@@ -135,7 +135,7 @@ class GetInventoryResourcesResult:
|
|
135
135
|
@pulumi.getter(name="resourceRegion")
|
136
136
|
def resource_region(self) -> Optional[str]:
|
137
137
|
"""
|
138
|
-
|
138
|
+
The region the resource belongs to.
|
139
139
|
"""
|
140
140
|
return pulumi.get(self, "resource_region")
|
141
141
|
|
@@ -202,13 +202,13 @@ def get_inventory_resources(compartment_id: Optional[str] = None,
|
|
202
202
|
```
|
203
203
|
|
204
204
|
|
205
|
-
:param str compartment_id:
|
206
|
-
:param Sequence[str] defined_tag_equals: A list of tag filters to apply. Only resources with a defined tag matching the value will be returned. Each item in the list has the format "{namespace}.{tagName}={value}". All inputs are case-insensitive. Multiple values for the same key (i.e. same namespace and tag name) are interpreted as "OR". Values for different keys (i.e. different namespaces, different tag names, or both) are interpreted as "AND".
|
205
|
+
:param str compartment_id: A filter to return only resources whose base Compartment ID(TenancyId) matches the given base Compartment ID.
|
206
|
+
:param Sequence[str] defined_tag_equals: A list of tag filters to apply. Only resources with a defined tag matching the value will be returned. Each item in the list has the format "{namespace}.{tagName}={value}". All inputs are case-insensitive. Multiple values for the same key (i.e. same namespace and tag name) are interpreted as "OR". Values for different keys (i.e. different namespaces, different tag names, or both) are interpreted as "AND". Example: Identification.Development=Yes
|
207
207
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
208
208
|
:param Sequence[str] freeform_tag_equals: A list of tag filters to apply. Only resources with a freeform tag matching the value will be returned. The key for each tag is "{tagName}.{value}". All inputs are case-insensitive. Multiple values for the same tag name are interpreted as "OR". Values for different tag names are interpreted as "AND".
|
209
|
-
:param Sequence[str] inventory_properties: A list of inventory properties filters to apply. The key for each inventory property and value for each resource type is "{resourceType}.{inventoryProperty}={value}".
|
210
|
-
:param str matching_criteria: Fetch resources matching
|
211
|
-
:param str resource_compartment_id:
|
209
|
+
:param Sequence[str] inventory_properties: A list of inventory properties filters to apply. The key for each inventory property and value for each resource type is "{resourceType}.{inventoryProperty}={value}". Example: Instance.displayName=TEST_INSTANCE
|
210
|
+
:param str matching_criteria: Fetch resources matching ANY or ALL criteria passed as params in "tags" and "inventoryProperties". Example: matchingCriteria=ANY
|
211
|
+
:param str resource_compartment_id: A filter to return only resources whose resource Compartment ID matches the given resource Compartment ID.
|
212
212
|
:param str resource_region: Resource Region
|
213
213
|
:param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
|
214
214
|
"""
|
@@ -273,13 +273,13 @@ def get_inventory_resources_output(compartment_id: Optional[pulumi.Input[str]] =
|
|
273
273
|
```
|
274
274
|
|
275
275
|
|
276
|
-
:param str compartment_id:
|
277
|
-
:param Sequence[str] defined_tag_equals: A list of tag filters to apply. Only resources with a defined tag matching the value will be returned. Each item in the list has the format "{namespace}.{tagName}={value}". All inputs are case-insensitive. Multiple values for the same key (i.e. same namespace and tag name) are interpreted as "OR". Values for different keys (i.e. different namespaces, different tag names, or both) are interpreted as "AND".
|
276
|
+
:param str compartment_id: A filter to return only resources whose base Compartment ID(TenancyId) matches the given base Compartment ID.
|
277
|
+
:param Sequence[str] defined_tag_equals: A list of tag filters to apply. Only resources with a defined tag matching the value will be returned. Each item in the list has the format "{namespace}.{tagName}={value}". All inputs are case-insensitive. Multiple values for the same key (i.e. same namespace and tag name) are interpreted as "OR". Values for different keys (i.e. different namespaces, different tag names, or both) are interpreted as "AND". Example: Identification.Development=Yes
|
278
278
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
279
279
|
:param Sequence[str] freeform_tag_equals: A list of tag filters to apply. Only resources with a freeform tag matching the value will be returned. The key for each tag is "{tagName}.{value}". All inputs are case-insensitive. Multiple values for the same tag name are interpreted as "OR". Values for different tag names are interpreted as "AND".
|
280
|
-
:param Sequence[str] inventory_properties: A list of inventory properties filters to apply. The key for each inventory property and value for each resource type is "{resourceType}.{inventoryProperty}={value}".
|
281
|
-
:param str matching_criteria: Fetch resources matching
|
282
|
-
:param str resource_compartment_id:
|
280
|
+
:param Sequence[str] inventory_properties: A list of inventory properties filters to apply. The key for each inventory property and value for each resource type is "{resourceType}.{inventoryProperty}={value}". Example: Instance.displayName=TEST_INSTANCE
|
281
|
+
:param str matching_criteria: Fetch resources matching ANY or ALL criteria passed as params in "tags" and "inventoryProperties". Example: matchingCriteria=ANY
|
282
|
+
:param str resource_compartment_id: A filter to return only resources whose resource Compartment ID matches the given resource Compartment ID.
|
283
283
|
:param str resource_region: Resource Region
|
284
284
|
:param str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
|
285
285
|
"""
|
@@ -124,7 +124,7 @@ class GetMaintenanceWindowResult:
|
|
124
124
|
@pulumi.getter
|
125
125
|
def duration(self) -> str:
|
126
126
|
"""
|
127
|
-
Duration
|
127
|
+
Duration of the maintenance window. Specify how long the maintenance window remains open.
|
128
128
|
"""
|
129
129
|
return pulumi.get(self, "duration")
|
130
130
|
|
@@ -148,7 +148,7 @@ class GetMaintenanceWindowResult:
|
|
148
148
|
@pulumi.getter(name="isOutage")
|
149
149
|
def is_outage(self) -> bool:
|
150
150
|
"""
|
151
|
-
Does the maintenenace window cause outage?
|
151
|
+
Does the maintenenace window cause outage? An outage indicates whether a maintenance window can consider operations that require downtime. It means a period when the application is not accessible.
|
152
152
|
"""
|
153
153
|
return pulumi.get(self, "is_outage")
|
154
154
|
|
@@ -156,7 +156,7 @@ class GetMaintenanceWindowResult:
|
|
156
156
|
@pulumi.getter(name="isRecurring")
|
157
157
|
def is_recurring(self) -> bool:
|
158
158
|
"""
|
159
|
-
Is this
|
159
|
+
Is this a recurring maintenance window?
|
160
160
|
"""
|
161
161
|
return pulumi.get(self, "is_recurring")
|
162
162
|
|
@@ -185,7 +185,7 @@ class GetMaintenanceWindowResult:
|
|
185
185
|
@pulumi.getter
|
186
186
|
def recurrences(self) -> str:
|
187
187
|
"""
|
188
|
-
Recurrence rule specification if recurring
|
188
|
+
Recurrence rule specification if maintenance window recurring. Specify the frequency of running the maintenance window.
|
189
189
|
"""
|
190
190
|
return pulumi.get(self, "recurrences")
|
191
191
|
|
@@ -217,7 +217,7 @@ class GetMaintenanceWindowResult:
|
|
217
217
|
@pulumi.getter(name="taskInitiationCutoff")
|
218
218
|
def task_initiation_cutoff(self) -> int:
|
219
219
|
"""
|
220
|
-
Task initiation cutoff
|
220
|
+
Task initiation cutoff time for the maintenance window.
|
221
221
|
"""
|
222
222
|
return pulumi.get(self, "task_initiation_cutoff")
|
223
223
|
|
@@ -233,7 +233,7 @@ class GetMaintenanceWindowResult:
|
|
233
233
|
@pulumi.getter(name="timeScheduleStart")
|
234
234
|
def time_schedule_start(self) -> str:
|
235
235
|
"""
|
236
|
-
|
236
|
+
Specify the date and time of the day that the maintenance window starts.
|
237
237
|
"""
|
238
238
|
return pulumi.get(self, "time_schedule_start")
|
239
239
|
|
@@ -279,7 +279,7 @@ def get_maintenance_window(maintenance_window_id: Optional[str] = None,
|
|
279
279
|
"""
|
280
280
|
This data source provides details about a specific Maintenance Window resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
281
281
|
|
282
|
-
|
282
|
+
Get the details for a maintenance window in Fleet Application Management.
|
283
283
|
|
284
284
|
## Example Usage
|
285
285
|
|
@@ -324,7 +324,7 @@ def get_maintenance_window_output(maintenance_window_id: Optional[pulumi.Input[s
|
|
324
324
|
"""
|
325
325
|
This data source provides details about a specific Maintenance Window resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
326
326
|
|
327
|
-
|
327
|
+
Get the details for a maintenance window in Fleet Application Management.
|
328
328
|
|
329
329
|
## Example Usage
|
330
330
|
|
@@ -28,7 +28,7 @@ class GetMaintenanceWindowsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getMaintenanceWindows.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, compartment_id=None, display_name=None, filters=None, id=None, maintenance_window_collections=None, state=None):
|
31
|
+
def __init__(__self__, compartment_id=None, display_name=None, filters=None, id=None, maintenance_window_collections=None, state=None, time_schedule_start_greater_than_or_equal_to=None):
|
32
32
|
if compartment_id and not isinstance(compartment_id, str):
|
33
33
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
34
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -47,6 +47,9 @@ class GetMaintenanceWindowsResult:
|
|
47
47
|
if state and not isinstance(state, str):
|
48
48
|
raise TypeError("Expected argument 'state' to be a str")
|
49
49
|
pulumi.set(__self__, "state", state)
|
50
|
+
if time_schedule_start_greater_than_or_equal_to and not isinstance(time_schedule_start_greater_than_or_equal_to, str):
|
51
|
+
raise TypeError("Expected argument 'time_schedule_start_greater_than_or_equal_to' to be a str")
|
52
|
+
pulumi.set(__self__, "time_schedule_start_greater_than_or_equal_to", time_schedule_start_greater_than_or_equal_to)
|
50
53
|
|
51
54
|
@property
|
52
55
|
@pulumi.getter(name="compartmentId")
|
@@ -93,6 +96,11 @@ class GetMaintenanceWindowsResult:
|
|
93
96
|
"""
|
94
97
|
return pulumi.get(self, "state")
|
95
98
|
|
99
|
+
@property
|
100
|
+
@pulumi.getter(name="timeScheduleStartGreaterThanOrEqualTo")
|
101
|
+
def time_schedule_start_greater_than_or_equal_to(self) -> Optional[str]:
|
102
|
+
return pulumi.get(self, "time_schedule_start_greater_than_or_equal_to")
|
103
|
+
|
96
104
|
|
97
105
|
class AwaitableGetMaintenanceWindowsResult(GetMaintenanceWindowsResult):
|
98
106
|
# pylint: disable=using-constant-test
|
@@ -105,7 +113,8 @@ class AwaitableGetMaintenanceWindowsResult(GetMaintenanceWindowsResult):
|
|
105
113
|
filters=self.filters,
|
106
114
|
id=self.id,
|
107
115
|
maintenance_window_collections=self.maintenance_window_collections,
|
108
|
-
state=self.state
|
116
|
+
state=self.state,
|
117
|
+
time_schedule_start_greater_than_or_equal_to=self.time_schedule_start_greater_than_or_equal_to)
|
109
118
|
|
110
119
|
|
111
120
|
def get_maintenance_windows(compartment_id: Optional[str] = None,
|
@@ -113,11 +122,12 @@ def get_maintenance_windows(compartment_id: Optional[str] = None,
|
|
113
122
|
filters: Optional[Sequence[Union['GetMaintenanceWindowsFilterArgs', 'GetMaintenanceWindowsFilterArgsDict']]] = None,
|
114
123
|
id: Optional[str] = None,
|
115
124
|
state: Optional[str] = None,
|
125
|
+
time_schedule_start_greater_than_or_equal_to: Optional[str] = None,
|
116
126
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMaintenanceWindowsResult:
|
117
127
|
"""
|
118
128
|
This data source provides the list of Maintenance Windows in Oracle Cloud Infrastructure Fleet Apps Management service.
|
119
129
|
|
120
|
-
|
130
|
+
List maintenance windows for a specified tenancy in Fleet Application Management.
|
121
131
|
|
122
132
|
## Example Usage
|
123
133
|
|
@@ -128,14 +138,16 @@ def get_maintenance_windows(compartment_id: Optional[str] = None,
|
|
128
138
|
test_maintenance_windows = oci.FleetAppsManagement.get_maintenance_windows(compartment_id=compartment_id,
|
129
139
|
display_name=maintenance_window_display_name,
|
130
140
|
id=maintenance_window_id,
|
131
|
-
state=maintenance_window_state
|
141
|
+
state=maintenance_window_state,
|
142
|
+
time_schedule_start_greater_than_or_equal_to=maintenance_window_time_schedule_start_greater_than_or_equal_to)
|
132
143
|
```
|
133
144
|
|
134
145
|
|
135
146
|
:param str compartment_id: The ID of the compartment in which to list resources.
|
136
147
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
137
|
-
:param str id:
|
138
|
-
:param str state: A filter to return only resources
|
148
|
+
:param str id: A filter to return only the Maintenance Windows whose identifier matches the given identifier.
|
149
|
+
:param str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
150
|
+
:param str time_schedule_start_greater_than_or_equal_to: A filter to return only resources whose timeScheduleStart is greater than or equal to the provided date and time.
|
139
151
|
"""
|
140
152
|
__args__ = dict()
|
141
153
|
__args__['compartmentId'] = compartment_id
|
@@ -143,6 +155,7 @@ def get_maintenance_windows(compartment_id: Optional[str] = None,
|
|
143
155
|
__args__['filters'] = filters
|
144
156
|
__args__['id'] = id
|
145
157
|
__args__['state'] = state
|
158
|
+
__args__['timeScheduleStartGreaterThanOrEqualTo'] = time_schedule_start_greater_than_or_equal_to
|
146
159
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
147
160
|
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getMaintenanceWindows:getMaintenanceWindows', __args__, opts=opts, typ=GetMaintenanceWindowsResult).value
|
148
161
|
|
@@ -152,17 +165,19 @@ def get_maintenance_windows(compartment_id: Optional[str] = None,
|
|
152
165
|
filters=pulumi.get(__ret__, 'filters'),
|
153
166
|
id=pulumi.get(__ret__, 'id'),
|
154
167
|
maintenance_window_collections=pulumi.get(__ret__, 'maintenance_window_collections'),
|
155
|
-
state=pulumi.get(__ret__, 'state')
|
168
|
+
state=pulumi.get(__ret__, 'state'),
|
169
|
+
time_schedule_start_greater_than_or_equal_to=pulumi.get(__ret__, 'time_schedule_start_greater_than_or_equal_to'))
|
156
170
|
def get_maintenance_windows_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
|
157
171
|
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
158
172
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetMaintenanceWindowsFilterArgs', 'GetMaintenanceWindowsFilterArgsDict']]]]] = None,
|
159
173
|
id: Optional[pulumi.Input[Optional[str]]] = None,
|
160
174
|
state: Optional[pulumi.Input[Optional[str]]] = None,
|
175
|
+
time_schedule_start_greater_than_or_equal_to: Optional[pulumi.Input[Optional[str]]] = None,
|
161
176
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMaintenanceWindowsResult]:
|
162
177
|
"""
|
163
178
|
This data source provides the list of Maintenance Windows in Oracle Cloud Infrastructure Fleet Apps Management service.
|
164
179
|
|
165
|
-
|
180
|
+
List maintenance windows for a specified tenancy in Fleet Application Management.
|
166
181
|
|
167
182
|
## Example Usage
|
168
183
|
|
@@ -173,14 +188,16 @@ def get_maintenance_windows_output(compartment_id: Optional[pulumi.Input[Optiona
|
|
173
188
|
test_maintenance_windows = oci.FleetAppsManagement.get_maintenance_windows(compartment_id=compartment_id,
|
174
189
|
display_name=maintenance_window_display_name,
|
175
190
|
id=maintenance_window_id,
|
176
|
-
state=maintenance_window_state
|
191
|
+
state=maintenance_window_state,
|
192
|
+
time_schedule_start_greater_than_or_equal_to=maintenance_window_time_schedule_start_greater_than_or_equal_to)
|
177
193
|
```
|
178
194
|
|
179
195
|
|
180
196
|
:param str compartment_id: The ID of the compartment in which to list resources.
|
181
197
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
182
|
-
:param str id:
|
183
|
-
:param str state: A filter to return only resources
|
198
|
+
:param str id: A filter to return only the Maintenance Windows whose identifier matches the given identifier.
|
199
|
+
:param str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
200
|
+
:param str time_schedule_start_greater_than_or_equal_to: A filter to return only resources whose timeScheduleStart is greater than or equal to the provided date and time.
|
184
201
|
"""
|
185
202
|
__args__ = dict()
|
186
203
|
__args__['compartmentId'] = compartment_id
|
@@ -188,6 +205,7 @@ def get_maintenance_windows_output(compartment_id: Optional[pulumi.Input[Optiona
|
|
188
205
|
__args__['filters'] = filters
|
189
206
|
__args__['id'] = id
|
190
207
|
__args__['state'] = state
|
208
|
+
__args__['timeScheduleStartGreaterThanOrEqualTo'] = time_schedule_start_greater_than_or_equal_to
|
191
209
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
192
210
|
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getMaintenanceWindows:getMaintenanceWindows', __args__, opts=opts, typ=GetMaintenanceWindowsResult)
|
193
211
|
return __ret__.apply(lambda __response__: GetMaintenanceWindowsResult(
|
@@ -196,4 +214,5 @@ def get_maintenance_windows_output(compartment_id: Optional[pulumi.Input[Optiona
|
|
196
214
|
filters=pulumi.get(__response__, 'filters'),
|
197
215
|
id=pulumi.get(__response__, 'id'),
|
198
216
|
maintenance_window_collections=pulumi.get(__response__, 'maintenance_window_collections'),
|
199
|
-
state=pulumi.get(__response__, 'state')
|
217
|
+
state=pulumi.get(__response__, 'state'),
|
218
|
+
time_schedule_start_greater_than_or_equal_to=pulumi.get(__response__, 'time_schedule_start_greater_than_or_equal_to')))
|