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
@@ -27,13 +27,16 @@ class GetFleetResult:
|
|
27
27
|
"""
|
28
28
|
A collection of values returned by getFleet.
|
29
29
|
"""
|
30
|
-
def __init__(__self__, application_type=None, compartment_id=None, defined_tags=None, description=None, display_name=None, environment_type=None, fleet_id=None, fleet_type=None, freeform_tags=None, group_type=None, id=None, is_target_auto_confirm=None, lifecycle_details=None, notification_preferences=None, products=None, resource_region=None, resource_selection_type=None, rule_selection_criterias=None, state=None, system_tags=None, time_created=None, time_updated=None):
|
30
|
+
def __init__(__self__, application_type=None, compartment_id=None, credentials=None, defined_tags=None, description=None, display_name=None, environment_type=None, fleet_id=None, fleet_type=None, freeform_tags=None, group_type=None, id=None, is_target_auto_confirm=None, lifecycle_details=None, notification_preferences=None, products=None, resource_region=None, resource_selection_type=None, rule_selection_criterias=None, state=None, system_tags=None, time_created=None, time_updated=None):
|
31
31
|
if application_type and not isinstance(application_type, str):
|
32
32
|
raise TypeError("Expected argument 'application_type' to be a str")
|
33
33
|
pulumi.set(__self__, "application_type", application_type)
|
34
34
|
if compartment_id and not isinstance(compartment_id, str):
|
35
35
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
36
36
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
37
|
+
if credentials and not isinstance(credentials, list):
|
38
|
+
raise TypeError("Expected argument 'credentials' to be a list")
|
39
|
+
pulumi.set(__self__, "credentials", credentials)
|
37
40
|
if defined_tags and not isinstance(defined_tags, dict):
|
38
41
|
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
39
42
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
@@ -99,7 +102,7 @@ class GetFleetResult:
|
|
99
102
|
@pulumi.getter(name="applicationType")
|
100
103
|
def application_type(self) -> str:
|
101
104
|
"""
|
102
|
-
|
105
|
+
Product stack associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
103
106
|
"""
|
104
107
|
return pulumi.get(self, "application_type")
|
105
108
|
|
@@ -107,10 +110,18 @@ class GetFleetResult:
|
|
107
110
|
@pulumi.getter(name="compartmentId")
|
108
111
|
def compartment_id(self) -> str:
|
109
112
|
"""
|
110
|
-
|
113
|
+
Tenancy Id (Root Compartment Id)for which the rule is created.
|
111
114
|
"""
|
112
115
|
return pulumi.get(self, "compartment_id")
|
113
116
|
|
117
|
+
@property
|
118
|
+
@pulumi.getter
|
119
|
+
def credentials(self) -> Sequence['outputs.GetFleetCredentialResult']:
|
120
|
+
"""
|
121
|
+
Credentials associated with the Fleet.
|
122
|
+
"""
|
123
|
+
return pulumi.get(self, "credentials")
|
124
|
+
|
114
125
|
@property
|
115
126
|
@pulumi.getter(name="definedTags")
|
116
127
|
def defined_tags(self) -> Mapping[str, str]:
|
@@ -139,7 +150,7 @@ class GetFleetResult:
|
|
139
150
|
@pulumi.getter(name="environmentType")
|
140
151
|
def environment_type(self) -> str:
|
141
152
|
"""
|
142
|
-
Environment Type associated with the Fleet.Applicable for ENVIRONMENT fleet types.
|
153
|
+
Environment Type associated with the Fleet. Applicable for ENVIRONMENT fleet types.
|
143
154
|
"""
|
144
155
|
return pulumi.get(self, "environment_type")
|
145
156
|
|
@@ -152,7 +163,7 @@ class GetFleetResult:
|
|
152
163
|
@pulumi.getter(name="fleetType")
|
153
164
|
def fleet_type(self) -> str:
|
154
165
|
"""
|
155
|
-
Type of the Fleet.
|
166
|
+
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
|
156
167
|
"""
|
157
168
|
return pulumi.get(self, "fleet_type")
|
158
169
|
|
@@ -168,7 +179,7 @@ class GetFleetResult:
|
|
168
179
|
@pulumi.getter(name="groupType")
|
169
180
|
def group_type(self) -> str:
|
170
181
|
"""
|
171
|
-
Group Type associated with Group Fleet.Applicable for GROUP fleet types.
|
182
|
+
Group Type associated with Group Fleet. Applicable for GROUP fleet types.
|
172
183
|
"""
|
173
184
|
return pulumi.get(self, "group_type")
|
174
185
|
|
@@ -184,7 +195,7 @@ class GetFleetResult:
|
|
184
195
|
@pulumi.getter(name="isTargetAutoConfirm")
|
185
196
|
def is_target_auto_confirm(self) -> bool:
|
186
197
|
"""
|
187
|
-
A value
|
198
|
+
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.
|
188
199
|
"""
|
189
200
|
return pulumi.get(self, "is_target_auto_confirm")
|
190
201
|
|
@@ -200,7 +211,7 @@ class GetFleetResult:
|
|
200
211
|
@pulumi.getter(name="notificationPreferences")
|
201
212
|
def notification_preferences(self) -> Sequence['outputs.GetFleetNotificationPreferenceResult']:
|
202
213
|
"""
|
203
|
-
|
214
|
+
Notification information to get notified when the fleet status changes.
|
204
215
|
"""
|
205
216
|
return pulumi.get(self, "notification_preferences")
|
206
217
|
|
@@ -208,7 +219,7 @@ class GetFleetResult:
|
|
208
219
|
@pulumi.getter
|
209
220
|
def products(self) -> Sequence[str]:
|
210
221
|
"""
|
211
|
-
Products associated with the Fleet
|
222
|
+
Products associated with the Fleet.
|
212
223
|
"""
|
213
224
|
return pulumi.get(self, "products")
|
214
225
|
|
@@ -224,7 +235,7 @@ class GetFleetResult:
|
|
224
235
|
@pulumi.getter(name="resourceSelectionType")
|
225
236
|
def resource_selection_type(self) -> str:
|
226
237
|
"""
|
227
|
-
Type of resource selection in a
|
238
|
+
Type of resource selection in a Fleet. Select resources manually or select resources based on rules.
|
228
239
|
"""
|
229
240
|
return pulumi.get(self, "resource_selection_type")
|
230
241
|
|
@@ -232,7 +243,7 @@ class GetFleetResult:
|
|
232
243
|
@pulumi.getter(name="ruleSelectionCriterias")
|
233
244
|
def rule_selection_criterias(self) -> Sequence['outputs.GetFleetRuleSelectionCriteriaResult']:
|
234
245
|
"""
|
235
|
-
Rule Selection Criteria
|
246
|
+
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.
|
236
247
|
"""
|
237
248
|
return pulumi.get(self, "rule_selection_criterias")
|
238
249
|
|
@@ -277,6 +288,7 @@ class AwaitableGetFleetResult(GetFleetResult):
|
|
277
288
|
return GetFleetResult(
|
278
289
|
application_type=self.application_type,
|
279
290
|
compartment_id=self.compartment_id,
|
291
|
+
credentials=self.credentials,
|
280
292
|
defined_tags=self.defined_tags,
|
281
293
|
description=self.description,
|
282
294
|
display_name=self.display_name,
|
@@ -304,7 +316,7 @@ def get_fleet(fleet_id: Optional[str] = None,
|
|
304
316
|
"""
|
305
317
|
This data source provides details about a specific Fleet resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
306
318
|
|
307
|
-
|
319
|
+
Get the details of a fleet in Fleet Application Management.
|
308
320
|
|
309
321
|
## Example Usage
|
310
322
|
|
@@ -316,7 +328,7 @@ def get_fleet(fleet_id: Optional[str] = None,
|
|
316
328
|
```
|
317
329
|
|
318
330
|
|
319
|
-
:param str fleet_id:
|
331
|
+
:param str fleet_id: Unique Fleet identifier.
|
320
332
|
"""
|
321
333
|
__args__ = dict()
|
322
334
|
__args__['fleetId'] = fleet_id
|
@@ -326,6 +338,7 @@ def get_fleet(fleet_id: Optional[str] = None,
|
|
326
338
|
return AwaitableGetFleetResult(
|
327
339
|
application_type=pulumi.get(__ret__, 'application_type'),
|
328
340
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
341
|
+
credentials=pulumi.get(__ret__, 'credentials'),
|
329
342
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
330
343
|
description=pulumi.get(__ret__, 'description'),
|
331
344
|
display_name=pulumi.get(__ret__, 'display_name'),
|
@@ -351,7 +364,7 @@ def get_fleet_output(fleet_id: Optional[pulumi.Input[str]] = None,
|
|
351
364
|
"""
|
352
365
|
This data source provides details about a specific Fleet resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
353
366
|
|
354
|
-
|
367
|
+
Get the details of a fleet in Fleet Application Management.
|
355
368
|
|
356
369
|
## Example Usage
|
357
370
|
|
@@ -363,7 +376,7 @@ def get_fleet_output(fleet_id: Optional[pulumi.Input[str]] = None,
|
|
363
376
|
```
|
364
377
|
|
365
378
|
|
366
|
-
:param str fleet_id:
|
379
|
+
:param str fleet_id: Unique Fleet identifier.
|
367
380
|
"""
|
368
381
|
__args__ = dict()
|
369
382
|
__args__['fleetId'] = fleet_id
|
@@ -372,6 +385,7 @@ def get_fleet_output(fleet_id: Optional[pulumi.Input[str]] = None,
|
|
372
385
|
return __ret__.apply(lambda __response__: GetFleetResult(
|
373
386
|
application_type=pulumi.get(__response__, 'application_type'),
|
374
387
|
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
388
|
+
credentials=pulumi.get(__response__, 'credentials'),
|
375
389
|
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
376
390
|
description=pulumi.get(__response__, 'description'),
|
377
391
|
display_name=pulumi.get(__response__, 'display_name'),
|
@@ -53,7 +53,7 @@ class GetFleetComplianceReportResult:
|
|
53
53
|
@pulumi.getter(name="complianceState")
|
54
54
|
def compliance_state(self) -> str:
|
55
55
|
"""
|
56
|
-
|
56
|
+
The last known compliance state of the target.
|
57
57
|
"""
|
58
58
|
return pulumi.get(self, "compliance_state")
|
59
59
|
|
@@ -77,7 +77,7 @@ class GetFleetComplianceReportResult:
|
|
77
77
|
@pulumi.getter
|
78
78
|
def resources(self) -> Sequence['outputs.GetFleetComplianceReportResourceResult']:
|
79
79
|
"""
|
80
|
-
Resources
|
80
|
+
Resources associated with the Fleet.
|
81
81
|
"""
|
82
82
|
return pulumi.get(self, "resources")
|
83
83
|
|
@@ -101,7 +101,7 @@ def get_fleet_compliance_report(compliance_report_id: Optional[str] = None,
|
|
101
101
|
"""
|
102
102
|
This data source provides details about a specific Fleet Compliance Report resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
103
103
|
|
104
|
-
Retrieve
|
104
|
+
Retrieve compliance report for a fleet.
|
105
105
|
|
106
106
|
## Example Usage
|
107
107
|
|
@@ -114,8 +114,8 @@ def get_fleet_compliance_report(compliance_report_id: Optional[str] = None,
|
|
114
114
|
```
|
115
115
|
|
116
116
|
|
117
|
-
:param str compliance_report_id: compliance report identifier
|
118
|
-
:param str fleet_id:
|
117
|
+
:param str compliance_report_id: compliance report identifier.
|
118
|
+
:param str fleet_id: Unique Fleet identifier.
|
119
119
|
"""
|
120
120
|
__args__ = dict()
|
121
121
|
__args__['complianceReportId'] = compliance_report_id
|
@@ -135,7 +135,7 @@ def get_fleet_compliance_report_output(compliance_report_id: Optional[pulumi.Inp
|
|
135
135
|
"""
|
136
136
|
This data source provides details about a specific Fleet Compliance Report resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
137
137
|
|
138
|
-
Retrieve
|
138
|
+
Retrieve compliance report for a fleet.
|
139
139
|
|
140
140
|
## Example Usage
|
141
141
|
|
@@ -148,8 +148,8 @@ def get_fleet_compliance_report_output(compliance_report_id: Optional[pulumi.Inp
|
|
148
148
|
```
|
149
149
|
|
150
150
|
|
151
|
-
:param str compliance_report_id: compliance report identifier
|
152
|
-
:param str fleet_id:
|
151
|
+
:param str compliance_report_id: compliance report identifier.
|
152
|
+
:param str fleet_id: Unique Fleet identifier.
|
153
153
|
"""
|
154
154
|
__args__ = dict()
|
155
155
|
__args__['complianceReportId'] = compliance_report_id
|
@@ -88,7 +88,7 @@ class GetFleetCredentialResult:
|
|
88
88
|
@pulumi.getter(name="entitySpecifics")
|
89
89
|
def entity_specifics(self) -> Sequence['outputs.GetFleetCredentialEntitySpecificResult']:
|
90
90
|
"""
|
91
|
-
Credential Details
|
91
|
+
Credential specific Details.
|
92
92
|
"""
|
93
93
|
return pulumi.get(self, "entity_specifics")
|
94
94
|
|
@@ -122,7 +122,7 @@ class GetFleetCredentialResult:
|
|
122
122
|
@pulumi.getter
|
123
123
|
def passwords(self) -> Sequence['outputs.GetFleetCredentialPasswordResult']:
|
124
124
|
"""
|
125
|
-
Credential Details
|
125
|
+
Credential Details.
|
126
126
|
"""
|
127
127
|
return pulumi.get(self, "passwords")
|
128
128
|
|
@@ -162,7 +162,7 @@ class GetFleetCredentialResult:
|
|
162
162
|
@pulumi.getter
|
163
163
|
def users(self) -> Sequence['outputs.GetFleetCredentialUserResult']:
|
164
164
|
"""
|
165
|
-
Credential Details
|
165
|
+
Credential Details.
|
166
166
|
"""
|
167
167
|
return pulumi.get(self, "users")
|
168
168
|
|
@@ -194,7 +194,7 @@ def get_fleet_credential(fleet_credential_id: Optional[str] = None,
|
|
194
194
|
"""
|
195
195
|
This data source provides details about a specific Fleet Credential resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
196
196
|
|
197
|
-
Gets a FleetCredential by identifier
|
197
|
+
Gets a FleetCredential by identifier.
|
198
198
|
|
199
199
|
## Example Usage
|
200
200
|
|
@@ -208,7 +208,7 @@ def get_fleet_credential(fleet_credential_id: Optional[str] = None,
|
|
208
208
|
|
209
209
|
|
210
210
|
:param str fleet_credential_id: unique FleetCredential identifier
|
211
|
-
:param str fleet_id:
|
211
|
+
:param str fleet_id: Unique Fleet identifier.
|
212
212
|
"""
|
213
213
|
__args__ = dict()
|
214
214
|
__args__['fleetCredentialId'] = fleet_credential_id
|
@@ -236,7 +236,7 @@ def get_fleet_credential_output(fleet_credential_id: Optional[pulumi.Input[str]]
|
|
236
236
|
"""
|
237
237
|
This data source provides details about a specific Fleet Credential resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
238
238
|
|
239
|
-
Gets a FleetCredential by identifier
|
239
|
+
Gets a FleetCredential by identifier.
|
240
240
|
|
241
241
|
## Example Usage
|
242
242
|
|
@@ -250,7 +250,7 @@ def get_fleet_credential_output(fleet_credential_id: Optional[pulumi.Input[str]]
|
|
250
250
|
|
251
251
|
|
252
252
|
:param str fleet_credential_id: unique FleetCredential identifier
|
253
|
-
:param str fleet_id:
|
253
|
+
:param str fleet_id: Unique Fleet identifier.
|
254
254
|
"""
|
255
255
|
__args__ = dict()
|
256
256
|
__args__['fleetCredentialId'] = fleet_credential_id
|
@@ -28,7 +28,7 @@ class GetFleetCredentialsResult:
|
|
28
28
|
"""
|
29
29
|
A collection of values returned by getFleetCredentials.
|
30
30
|
"""
|
31
|
-
def __init__(__self__, compartment_id=None, credential_level=None, display_name=None, filters=None, fleet_credential_collections=None, fleet_id=None, id=None, state=None):
|
31
|
+
def __init__(__self__, compartment_id=None, credential_level=None, display_name=None, filters=None, fleet_credential_collections=None, fleet_id=None, id=None, resource_id=None, state=None, target=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)
|
@@ -50,9 +50,15 @@ class GetFleetCredentialsResult:
|
|
50
50
|
if id and not isinstance(id, str):
|
51
51
|
raise TypeError("Expected argument 'id' to be a str")
|
52
52
|
pulumi.set(__self__, "id", id)
|
53
|
+
if resource_id and not isinstance(resource_id, str):
|
54
|
+
raise TypeError("Expected argument 'resource_id' to be a str")
|
55
|
+
pulumi.set(__self__, "resource_id", resource_id)
|
53
56
|
if state and not isinstance(state, str):
|
54
57
|
raise TypeError("Expected argument 'state' to be a str")
|
55
58
|
pulumi.set(__self__, "state", state)
|
59
|
+
if target and not isinstance(target, str):
|
60
|
+
raise TypeError("Expected argument 'target' to be a str")
|
61
|
+
pulumi.set(__self__, "target", target)
|
56
62
|
|
57
63
|
@property
|
58
64
|
@pulumi.getter(name="compartmentId")
|
@@ -66,7 +72,7 @@ class GetFleetCredentialsResult:
|
|
66
72
|
@pulumi.getter(name="credentialLevel")
|
67
73
|
def credential_level(self) -> Optional[str]:
|
68
74
|
"""
|
69
|
-
|
75
|
+
At what level the credential is provided?
|
70
76
|
"""
|
71
77
|
return pulumi.get(self, "credential_level")
|
72
78
|
|
@@ -104,6 +110,14 @@ class GetFleetCredentialsResult:
|
|
104
110
|
"""
|
105
111
|
return pulumi.get(self, "id")
|
106
112
|
|
113
|
+
@property
|
114
|
+
@pulumi.getter(name="resourceId")
|
115
|
+
def resource_id(self) -> Optional[str]:
|
116
|
+
"""
|
117
|
+
OCID of the resource associated with the target for which the credential is created.
|
118
|
+
"""
|
119
|
+
return pulumi.get(self, "resource_id")
|
120
|
+
|
107
121
|
@property
|
108
122
|
@pulumi.getter
|
109
123
|
def state(self) -> Optional[str]:
|
@@ -112,6 +126,14 @@ class GetFleetCredentialsResult:
|
|
112
126
|
"""
|
113
127
|
return pulumi.get(self, "state")
|
114
128
|
|
129
|
+
@property
|
130
|
+
@pulumi.getter
|
131
|
+
def target(self) -> Optional[str]:
|
132
|
+
"""
|
133
|
+
Target name for which the credential is provided.
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "target")
|
136
|
+
|
115
137
|
|
116
138
|
class AwaitableGetFleetCredentialsResult(GetFleetCredentialsResult):
|
117
139
|
# pylint: disable=using-constant-test
|
@@ -126,7 +148,9 @@ class AwaitableGetFleetCredentialsResult(GetFleetCredentialsResult):
|
|
126
148
|
fleet_credential_collections=self.fleet_credential_collections,
|
127
149
|
fleet_id=self.fleet_id,
|
128
150
|
id=self.id,
|
129
|
-
|
151
|
+
resource_id=self.resource_id,
|
152
|
+
state=self.state,
|
153
|
+
target=self.target)
|
130
154
|
|
131
155
|
|
132
156
|
def get_fleet_credentials(compartment_id: Optional[str] = None,
|
@@ -135,12 +159,14 @@ def get_fleet_credentials(compartment_id: Optional[str] = None,
|
|
135
159
|
filters: Optional[Sequence[Union['GetFleetCredentialsFilterArgs', 'GetFleetCredentialsFilterArgsDict']]] = None,
|
136
160
|
fleet_id: Optional[str] = None,
|
137
161
|
id: Optional[str] = None,
|
162
|
+
resource_id: Optional[str] = None,
|
138
163
|
state: Optional[str] = None,
|
164
|
+
target: Optional[str] = None,
|
139
165
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFleetCredentialsResult:
|
140
166
|
"""
|
141
167
|
This data source provides the list of Fleet Credentials in Oracle Cloud Infrastructure Fleet Apps Management service.
|
142
168
|
|
143
|
-
|
169
|
+
List credentials in Fleet Application Management.
|
144
170
|
|
145
171
|
## Example Usage
|
146
172
|
|
@@ -153,16 +179,20 @@ def get_fleet_credentials(compartment_id: Optional[str] = None,
|
|
153
179
|
credential_level=fleet_credential_credential_level,
|
154
180
|
display_name=fleet_credential_display_name,
|
155
181
|
id=fleet_credential_id,
|
156
|
-
|
182
|
+
resource_id=test_resource["id"],
|
183
|
+
state=fleet_credential_state,
|
184
|
+
target=fleet_credential_target)
|
157
185
|
```
|
158
186
|
|
159
187
|
|
160
188
|
:param str compartment_id: The ID of the compartment in which to list resources.
|
161
|
-
:param str credential_level:
|
189
|
+
:param str credential_level: A filter to return only resources whose credentialLevel matches the given credentialLevel.
|
162
190
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
163
|
-
:param str fleet_id:
|
164
|
-
:param str id:
|
165
|
-
:param str
|
191
|
+
:param str fleet_id: Unique Fleet identifier.
|
192
|
+
:param str id: A filter to return only resources whose credential identifier matches the given identifier.
|
193
|
+
:param str resource_id: Resource Identifier
|
194
|
+
:param str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
195
|
+
:param str target: A filter to return only resources whose target matches the given target name.
|
166
196
|
"""
|
167
197
|
__args__ = dict()
|
168
198
|
__args__['compartmentId'] = compartment_id
|
@@ -171,7 +201,9 @@ def get_fleet_credentials(compartment_id: Optional[str] = None,
|
|
171
201
|
__args__['filters'] = filters
|
172
202
|
__args__['fleetId'] = fleet_id
|
173
203
|
__args__['id'] = id
|
204
|
+
__args__['resourceId'] = resource_id
|
174
205
|
__args__['state'] = state
|
206
|
+
__args__['target'] = target
|
175
207
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
176
208
|
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getFleetCredentials:getFleetCredentials', __args__, opts=opts, typ=GetFleetCredentialsResult).value
|
177
209
|
|
@@ -183,19 +215,23 @@ def get_fleet_credentials(compartment_id: Optional[str] = None,
|
|
183
215
|
fleet_credential_collections=pulumi.get(__ret__, 'fleet_credential_collections'),
|
184
216
|
fleet_id=pulumi.get(__ret__, 'fleet_id'),
|
185
217
|
id=pulumi.get(__ret__, 'id'),
|
186
|
-
|
218
|
+
resource_id=pulumi.get(__ret__, 'resource_id'),
|
219
|
+
state=pulumi.get(__ret__, 'state'),
|
220
|
+
target=pulumi.get(__ret__, 'target'))
|
187
221
|
def get_fleet_credentials_output(compartment_id: Optional[pulumi.Input[Optional[str]]] = None,
|
188
222
|
credential_level: Optional[pulumi.Input[Optional[str]]] = None,
|
189
223
|
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
190
224
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetFleetCredentialsFilterArgs', 'GetFleetCredentialsFilterArgsDict']]]]] = None,
|
191
225
|
fleet_id: Optional[pulumi.Input[str]] = None,
|
192
226
|
id: Optional[pulumi.Input[Optional[str]]] = None,
|
227
|
+
resource_id: Optional[pulumi.Input[Optional[str]]] = None,
|
193
228
|
state: Optional[pulumi.Input[Optional[str]]] = None,
|
229
|
+
target: Optional[pulumi.Input[Optional[str]]] = None,
|
194
230
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFleetCredentialsResult]:
|
195
231
|
"""
|
196
232
|
This data source provides the list of Fleet Credentials in Oracle Cloud Infrastructure Fleet Apps Management service.
|
197
233
|
|
198
|
-
|
234
|
+
List credentials in Fleet Application Management.
|
199
235
|
|
200
236
|
## Example Usage
|
201
237
|
|
@@ -208,16 +244,20 @@ def get_fleet_credentials_output(compartment_id: Optional[pulumi.Input[Optional[
|
|
208
244
|
credential_level=fleet_credential_credential_level,
|
209
245
|
display_name=fleet_credential_display_name,
|
210
246
|
id=fleet_credential_id,
|
211
|
-
|
247
|
+
resource_id=test_resource["id"],
|
248
|
+
state=fleet_credential_state,
|
249
|
+
target=fleet_credential_target)
|
212
250
|
```
|
213
251
|
|
214
252
|
|
215
253
|
:param str compartment_id: The ID of the compartment in which to list resources.
|
216
|
-
:param str credential_level:
|
254
|
+
:param str credential_level: A filter to return only resources whose credentialLevel matches the given credentialLevel.
|
217
255
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
218
|
-
:param str fleet_id:
|
219
|
-
:param str id:
|
220
|
-
:param str
|
256
|
+
:param str fleet_id: Unique Fleet identifier.
|
257
|
+
:param str id: A filter to return only resources whose credential identifier matches the given identifier.
|
258
|
+
:param str resource_id: Resource Identifier
|
259
|
+
:param str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
260
|
+
:param str target: A filter to return only resources whose target matches the given target name.
|
221
261
|
"""
|
222
262
|
__args__ = dict()
|
223
263
|
__args__['compartmentId'] = compartment_id
|
@@ -226,7 +266,9 @@ def get_fleet_credentials_output(compartment_id: Optional[pulumi.Input[Optional[
|
|
226
266
|
__args__['filters'] = filters
|
227
267
|
__args__['fleetId'] = fleet_id
|
228
268
|
__args__['id'] = id
|
269
|
+
__args__['resourceId'] = resource_id
|
229
270
|
__args__['state'] = state
|
271
|
+
__args__['target'] = target
|
230
272
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
231
273
|
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getFleetCredentials:getFleetCredentials', __args__, opts=opts, typ=GetFleetCredentialsResult)
|
232
274
|
return __ret__.apply(lambda __response__: GetFleetCredentialsResult(
|
@@ -237,4 +279,6 @@ def get_fleet_credentials_output(compartment_id: Optional[pulumi.Input[Optional[
|
|
237
279
|
fleet_credential_collections=pulumi.get(__response__, 'fleet_credential_collections'),
|
238
280
|
fleet_id=pulumi.get(__response__, 'fleet_id'),
|
239
281
|
id=pulumi.get(__response__, 'id'),
|
240
|
-
|
282
|
+
resource_id=pulumi.get(__response__, 'resource_id'),
|
283
|
+
state=pulumi.get(__response__, 'state'),
|
284
|
+
target=pulumi.get(__response__, 'target')))
|
@@ -139,7 +139,7 @@ def get_fleet_products(compartment_id: Optional[str] = None,
|
|
139
139
|
"""
|
140
140
|
This data source provides the list of Fleet Products in Oracle Cloud Infrastructure Fleet Apps Management service.
|
141
141
|
|
142
|
-
Returns a list of
|
142
|
+
Returns a list of products associated with the confirmed targets.
|
143
143
|
|
144
144
|
## Example Usage
|
145
145
|
|
@@ -157,8 +157,8 @@ def get_fleet_products(compartment_id: Optional[str] = None,
|
|
157
157
|
|
158
158
|
:param str compartment_id: The ID of the compartment in which to list resources.
|
159
159
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
160
|
-
:param str fleet_id:
|
161
|
-
:param str resource_display_name: Resource Display Name
|
160
|
+
:param str fleet_id: Unique Fleet identifier.
|
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_products_output(compartment_id: Optional[pulumi.Input[Optional[str
|
|
190
190
|
"""
|
191
191
|
This data source provides the list of Fleet Products in Oracle Cloud Infrastructure Fleet Apps Management service.
|
192
192
|
|
193
|
-
Returns a list of
|
193
|
+
Returns a list of products associated with the confirmed targets.
|
194
194
|
|
195
195
|
## Example Usage
|
196
196
|
|
@@ -208,8 +208,8 @@ def get_fleet_products_output(compartment_id: Optional[pulumi.Input[Optional[str
|
|
208
208
|
|
209
209
|
:param str compartment_id: The ID of the compartment in which to list resources.
|
210
210
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
211
|
-
:param str fleet_id:
|
212
|
-
:param str resource_display_name: Resource Display Name
|
211
|
+
:param str fleet_id: Unique Fleet identifier.
|
212
|
+
:param str resource_display_name: Resource Display Name.
|
213
213
|
:param str resource_id: Resource Identifier
|
214
214
|
"""
|
215
215
|
__args__ = dict()
|
@@ -127,7 +127,7 @@ def get_fleet_properties(compartment_id: Optional[str] = None,
|
|
127
127
|
"""
|
128
128
|
This data source provides the list of Fleet Properties in Oracle Cloud Infrastructure Fleet Apps Management service.
|
129
129
|
|
130
|
-
|
130
|
+
List fleet properties in Fleet Application Management.
|
131
131
|
|
132
132
|
## Example Usage
|
133
133
|
|
@@ -145,9 +145,9 @@ def get_fleet_properties(compartment_id: Optional[str] = None,
|
|
145
145
|
|
146
146
|
:param str compartment_id: The ID of the compartment in which to list resources.
|
147
147
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
148
|
-
:param str fleet_id:
|
149
|
-
:param str id:
|
150
|
-
:param str state: A filter to return only resources
|
148
|
+
:param str fleet_id: Unique Fleet identifier.
|
149
|
+
:param str id: A filter to return only resources whose fleetProperty identifier matches the given identifier.
|
150
|
+
:param str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
151
151
|
"""
|
152
152
|
__args__ = dict()
|
153
153
|
__args__['compartmentId'] = compartment_id
|
@@ -177,7 +177,7 @@ def get_fleet_properties_output(compartment_id: Optional[pulumi.Input[Optional[s
|
|
177
177
|
"""
|
178
178
|
This data source provides the list of Fleet Properties in Oracle Cloud Infrastructure Fleet Apps Management service.
|
179
179
|
|
180
|
-
|
180
|
+
List fleet properties in Fleet Application Management.
|
181
181
|
|
182
182
|
## Example Usage
|
183
183
|
|
@@ -195,9 +195,9 @@ def get_fleet_properties_output(compartment_id: Optional[pulumi.Input[Optional[s
|
|
195
195
|
|
196
196
|
:param str compartment_id: The ID of the compartment in which to list resources.
|
197
197
|
:param str display_name: A filter to return only resources that match the entire display name given.
|
198
|
-
:param str fleet_id:
|
199
|
-
:param str id:
|
200
|
-
:param str state: A filter to return only resources
|
198
|
+
:param str fleet_id: Unique Fleet identifier.
|
199
|
+
:param str id: A filter to return only resources whose fleetProperty identifier matches the given identifier.
|
200
|
+
:param str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
201
201
|
"""
|
202
202
|
__args__ = dict()
|
203
203
|
__args__['compartmentId'] = compartment_id
|
@@ -74,7 +74,7 @@ class GetFleetPropertyResult:
|
|
74
74
|
@pulumi.getter(name="allowedValues")
|
75
75
|
def allowed_values(self) -> Sequence[str]:
|
76
76
|
"""
|
77
|
-
Values of the
|
77
|
+
Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE').
|
78
78
|
"""
|
79
79
|
return pulumi.get(self, "allowed_values")
|
80
80
|
|
@@ -116,7 +116,7 @@ class GetFleetPropertyResult:
|
|
116
116
|
@pulumi.getter(name="propertyId")
|
117
117
|
def property_id(self) -> str:
|
118
118
|
"""
|
119
|
-
|
119
|
+
OCID referring to global level metadata property.
|
120
120
|
"""
|
121
121
|
return pulumi.get(self, "property_id")
|
122
122
|
|
@@ -124,7 +124,7 @@ class GetFleetPropertyResult:
|
|
124
124
|
@pulumi.getter(name="selectionType")
|
125
125
|
def selection_type(self) -> str:
|
126
126
|
"""
|
127
|
-
Text selection of the
|
127
|
+
Text selection of the property.
|
128
128
|
"""
|
129
129
|
return pulumi.get(self, "selection_type")
|
130
130
|
|
@@ -164,7 +164,7 @@ class GetFleetPropertyResult:
|
|
164
164
|
@pulumi.getter
|
165
165
|
def value(self) -> str:
|
166
166
|
"""
|
167
|
-
Value of the Property
|
167
|
+
Value of the Property.
|
168
168
|
"""
|
169
169
|
return pulumi.get(self, "value")
|
170
170
|
|
@@ -172,7 +172,7 @@ class GetFleetPropertyResult:
|
|
172
172
|
@pulumi.getter(name="valueType")
|
173
173
|
def value_type(self) -> str:
|
174
174
|
"""
|
175
|
-
Format of the value
|
175
|
+
Format of the value.
|
176
176
|
"""
|
177
177
|
return pulumi.get(self, "value_type")
|
178
178
|
|
@@ -205,7 +205,7 @@ def get_fleet_property(fleet_id: Optional[str] = None,
|
|
205
205
|
"""
|
206
206
|
This data source provides details about a specific Fleet Property resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
207
207
|
|
208
|
-
Gets a
|
208
|
+
Gets a Fleet Property by identifier.
|
209
209
|
|
210
210
|
## Example Usage
|
211
211
|
|
@@ -218,8 +218,8 @@ def get_fleet_property(fleet_id: Optional[str] = None,
|
|
218
218
|
```
|
219
219
|
|
220
220
|
|
221
|
-
:param str fleet_id:
|
222
|
-
:param str fleet_property_id: unique FleetProperty identifier
|
221
|
+
:param str fleet_id: Unique Fleet identifier.
|
222
|
+
:param str fleet_property_id: unique FleetProperty identifier.
|
223
223
|
"""
|
224
224
|
__args__ = dict()
|
225
225
|
__args__['fleetId'] = fleet_id
|
@@ -248,7 +248,7 @@ def get_fleet_property_output(fleet_id: Optional[pulumi.Input[str]] = None,
|
|
248
248
|
"""
|
249
249
|
This data source provides details about a specific Fleet Property resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
250
250
|
|
251
|
-
Gets a
|
251
|
+
Gets a Fleet Property by identifier.
|
252
252
|
|
253
253
|
## Example Usage
|
254
254
|
|
@@ -261,8 +261,8 @@ def get_fleet_property_output(fleet_id: Optional[pulumi.Input[str]] = None,
|
|
261
261
|
```
|
262
262
|
|
263
263
|
|
264
|
-
:param str fleet_id:
|
265
|
-
:param str fleet_property_id: unique FleetProperty identifier
|
264
|
+
:param str fleet_id: Unique Fleet identifier.
|
265
|
+
:param str fleet_property_id: unique FleetProperty identifier.
|
266
266
|
"""
|
267
267
|
__args__ = dict()
|
268
268
|
__args__['fleetId'] = fleet_id
|