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
@@ -0,0 +1,687 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import copy
|
6
|
+
import warnings
|
7
|
+
import sys
|
8
|
+
import pulumi
|
9
|
+
import pulumi.runtime
|
10
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
11
|
+
if sys.version_info >= (3, 11):
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
13
|
+
else:
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
|
+
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
18
|
+
|
19
|
+
__all__ = ['PlatformConfigurationArgs', 'PlatformConfiguration']
|
20
|
+
|
21
|
+
@pulumi.input_type
|
22
|
+
class PlatformConfigurationArgs:
|
23
|
+
def __init__(__self__, *,
|
24
|
+
compartment_id: pulumi.Input[str],
|
25
|
+
config_category_details: pulumi.Input['PlatformConfigurationConfigCategoryDetailsArgs'],
|
26
|
+
description: Optional[pulumi.Input[str]] = None,
|
27
|
+
display_name: Optional[pulumi.Input[str]] = None):
|
28
|
+
"""
|
29
|
+
The set of arguments for constructing a PlatformConfiguration resource.
|
30
|
+
:param pulumi.Input[str] compartment_id: Tenancy OCID
|
31
|
+
:param pulumi.Input['PlatformConfigurationConfigCategoryDetailsArgs'] config_category_details: (Updatable) Config Category Details.
|
32
|
+
:param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
33
|
+
: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`
|
34
|
+
|
35
|
+
|
36
|
+
** IMPORTANT **
|
37
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
38
|
+
"""
|
39
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
40
|
+
pulumi.set(__self__, "config_category_details", config_category_details)
|
41
|
+
if description is not None:
|
42
|
+
pulumi.set(__self__, "description", description)
|
43
|
+
if display_name is not None:
|
44
|
+
pulumi.set(__self__, "display_name", display_name)
|
45
|
+
|
46
|
+
@property
|
47
|
+
@pulumi.getter(name="compartmentId")
|
48
|
+
def compartment_id(self) -> pulumi.Input[str]:
|
49
|
+
"""
|
50
|
+
Tenancy OCID
|
51
|
+
"""
|
52
|
+
return pulumi.get(self, "compartment_id")
|
53
|
+
|
54
|
+
@compartment_id.setter
|
55
|
+
def compartment_id(self, value: pulumi.Input[str]):
|
56
|
+
pulumi.set(self, "compartment_id", value)
|
57
|
+
|
58
|
+
@property
|
59
|
+
@pulumi.getter(name="configCategoryDetails")
|
60
|
+
def config_category_details(self) -> pulumi.Input['PlatformConfigurationConfigCategoryDetailsArgs']:
|
61
|
+
"""
|
62
|
+
(Updatable) Config Category Details.
|
63
|
+
"""
|
64
|
+
return pulumi.get(self, "config_category_details")
|
65
|
+
|
66
|
+
@config_category_details.setter
|
67
|
+
def config_category_details(self, value: pulumi.Input['PlatformConfigurationConfigCategoryDetailsArgs']):
|
68
|
+
pulumi.set(self, "config_category_details", value)
|
69
|
+
|
70
|
+
@property
|
71
|
+
@pulumi.getter
|
72
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
73
|
+
"""
|
74
|
+
(Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
75
|
+
"""
|
76
|
+
return pulumi.get(self, "description")
|
77
|
+
|
78
|
+
@description.setter
|
79
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
80
|
+
pulumi.set(self, "description", value)
|
81
|
+
|
82
|
+
@property
|
83
|
+
@pulumi.getter(name="displayName")
|
84
|
+
def display_name(self) -> Optional[pulumi.Input[str]]:
|
85
|
+
"""
|
86
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
87
|
+
|
88
|
+
|
89
|
+
** IMPORTANT **
|
90
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
91
|
+
"""
|
92
|
+
return pulumi.get(self, "display_name")
|
93
|
+
|
94
|
+
@display_name.setter
|
95
|
+
def display_name(self, value: Optional[pulumi.Input[str]]):
|
96
|
+
pulumi.set(self, "display_name", value)
|
97
|
+
|
98
|
+
|
99
|
+
@pulumi.input_type
|
100
|
+
class _PlatformConfigurationState:
|
101
|
+
def __init__(__self__, *,
|
102
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
103
|
+
config_category_details: Optional[pulumi.Input['PlatformConfigurationConfigCategoryDetailsArgs']] = None,
|
104
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
105
|
+
description: Optional[pulumi.Input[str]] = None,
|
106
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
107
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
108
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
109
|
+
resource_region: Optional[pulumi.Input[str]] = None,
|
110
|
+
state: Optional[pulumi.Input[str]] = None,
|
111
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
112
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
113
|
+
time_updated: Optional[pulumi.Input[str]] = None,
|
114
|
+
type: Optional[pulumi.Input[str]] = None):
|
115
|
+
"""
|
116
|
+
Input properties used for looking up and filtering PlatformConfiguration resources.
|
117
|
+
:param pulumi.Input[str] compartment_id: Tenancy OCID
|
118
|
+
:param pulumi.Input['PlatformConfigurationConfigCategoryDetailsArgs'] config_category_details: (Updatable) Config Category Details.
|
119
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
120
|
+
:param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
121
|
+
: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`
|
122
|
+
|
123
|
+
|
124
|
+
** IMPORTANT **
|
125
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
126
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
127
|
+
: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.
|
128
|
+
:param pulumi.Input[str] resource_region: Associated region
|
129
|
+
:param pulumi.Input[str] state: The current state of the PlatformConfiguration.
|
130
|
+
: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"}`
|
131
|
+
:param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
|
132
|
+
:param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
|
133
|
+
:param pulumi.Input[str] type: The type of the configuration.
|
134
|
+
"""
|
135
|
+
if compartment_id is not None:
|
136
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
137
|
+
if config_category_details is not None:
|
138
|
+
pulumi.set(__self__, "config_category_details", config_category_details)
|
139
|
+
if defined_tags is not None:
|
140
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
141
|
+
if description is not None:
|
142
|
+
pulumi.set(__self__, "description", description)
|
143
|
+
if display_name is not None:
|
144
|
+
pulumi.set(__self__, "display_name", display_name)
|
145
|
+
if freeform_tags is not None:
|
146
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
147
|
+
if lifecycle_details is not None:
|
148
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
149
|
+
if resource_region is not None:
|
150
|
+
pulumi.set(__self__, "resource_region", resource_region)
|
151
|
+
if state is not None:
|
152
|
+
pulumi.set(__self__, "state", state)
|
153
|
+
if system_tags is not None:
|
154
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
155
|
+
if time_created is not None:
|
156
|
+
pulumi.set(__self__, "time_created", time_created)
|
157
|
+
if time_updated is not None:
|
158
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
159
|
+
if type is not None:
|
160
|
+
pulumi.set(__self__, "type", type)
|
161
|
+
|
162
|
+
@property
|
163
|
+
@pulumi.getter(name="compartmentId")
|
164
|
+
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
165
|
+
"""
|
166
|
+
Tenancy OCID
|
167
|
+
"""
|
168
|
+
return pulumi.get(self, "compartment_id")
|
169
|
+
|
170
|
+
@compartment_id.setter
|
171
|
+
def compartment_id(self, value: Optional[pulumi.Input[str]]):
|
172
|
+
pulumi.set(self, "compartment_id", value)
|
173
|
+
|
174
|
+
@property
|
175
|
+
@pulumi.getter(name="configCategoryDetails")
|
176
|
+
def config_category_details(self) -> Optional[pulumi.Input['PlatformConfigurationConfigCategoryDetailsArgs']]:
|
177
|
+
"""
|
178
|
+
(Updatable) Config Category Details.
|
179
|
+
"""
|
180
|
+
return pulumi.get(self, "config_category_details")
|
181
|
+
|
182
|
+
@config_category_details.setter
|
183
|
+
def config_category_details(self, value: Optional[pulumi.Input['PlatformConfigurationConfigCategoryDetailsArgs']]):
|
184
|
+
pulumi.set(self, "config_category_details", value)
|
185
|
+
|
186
|
+
@property
|
187
|
+
@pulumi.getter(name="definedTags")
|
188
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
189
|
+
"""
|
190
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
191
|
+
"""
|
192
|
+
return pulumi.get(self, "defined_tags")
|
193
|
+
|
194
|
+
@defined_tags.setter
|
195
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
196
|
+
pulumi.set(self, "defined_tags", value)
|
197
|
+
|
198
|
+
@property
|
199
|
+
@pulumi.getter
|
200
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
201
|
+
"""
|
202
|
+
(Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
203
|
+
"""
|
204
|
+
return pulumi.get(self, "description")
|
205
|
+
|
206
|
+
@description.setter
|
207
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
208
|
+
pulumi.set(self, "description", value)
|
209
|
+
|
210
|
+
@property
|
211
|
+
@pulumi.getter(name="displayName")
|
212
|
+
def display_name(self) -> Optional[pulumi.Input[str]]:
|
213
|
+
"""
|
214
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
215
|
+
|
216
|
+
|
217
|
+
** IMPORTANT **
|
218
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
219
|
+
"""
|
220
|
+
return pulumi.get(self, "display_name")
|
221
|
+
|
222
|
+
@display_name.setter
|
223
|
+
def display_name(self, value: Optional[pulumi.Input[str]]):
|
224
|
+
pulumi.set(self, "display_name", value)
|
225
|
+
|
226
|
+
@property
|
227
|
+
@pulumi.getter(name="freeformTags")
|
228
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
229
|
+
"""
|
230
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
231
|
+
"""
|
232
|
+
return pulumi.get(self, "freeform_tags")
|
233
|
+
|
234
|
+
@freeform_tags.setter
|
235
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
236
|
+
pulumi.set(self, "freeform_tags", value)
|
237
|
+
|
238
|
+
@property
|
239
|
+
@pulumi.getter(name="lifecycleDetails")
|
240
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
|
241
|
+
"""
|
242
|
+
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
243
|
+
"""
|
244
|
+
return pulumi.get(self, "lifecycle_details")
|
245
|
+
|
246
|
+
@lifecycle_details.setter
|
247
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
|
248
|
+
pulumi.set(self, "lifecycle_details", value)
|
249
|
+
|
250
|
+
@property
|
251
|
+
@pulumi.getter(name="resourceRegion")
|
252
|
+
def resource_region(self) -> Optional[pulumi.Input[str]]:
|
253
|
+
"""
|
254
|
+
Associated region
|
255
|
+
"""
|
256
|
+
return pulumi.get(self, "resource_region")
|
257
|
+
|
258
|
+
@resource_region.setter
|
259
|
+
def resource_region(self, value: Optional[pulumi.Input[str]]):
|
260
|
+
pulumi.set(self, "resource_region", value)
|
261
|
+
|
262
|
+
@property
|
263
|
+
@pulumi.getter
|
264
|
+
def state(self) -> Optional[pulumi.Input[str]]:
|
265
|
+
"""
|
266
|
+
The current state of the PlatformConfiguration.
|
267
|
+
"""
|
268
|
+
return pulumi.get(self, "state")
|
269
|
+
|
270
|
+
@state.setter
|
271
|
+
def state(self, value: Optional[pulumi.Input[str]]):
|
272
|
+
pulumi.set(self, "state", value)
|
273
|
+
|
274
|
+
@property
|
275
|
+
@pulumi.getter(name="systemTags")
|
276
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
277
|
+
"""
|
278
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
279
|
+
"""
|
280
|
+
return pulumi.get(self, "system_tags")
|
281
|
+
|
282
|
+
@system_tags.setter
|
283
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
284
|
+
pulumi.set(self, "system_tags", value)
|
285
|
+
|
286
|
+
@property
|
287
|
+
@pulumi.getter(name="timeCreated")
|
288
|
+
def time_created(self) -> Optional[pulumi.Input[str]]:
|
289
|
+
"""
|
290
|
+
The time this resource was created. An RFC3339 formatted datetime string.
|
291
|
+
"""
|
292
|
+
return pulumi.get(self, "time_created")
|
293
|
+
|
294
|
+
@time_created.setter
|
295
|
+
def time_created(self, value: Optional[pulumi.Input[str]]):
|
296
|
+
pulumi.set(self, "time_created", value)
|
297
|
+
|
298
|
+
@property
|
299
|
+
@pulumi.getter(name="timeUpdated")
|
300
|
+
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
301
|
+
"""
|
302
|
+
The time this resource was last updated. An RFC3339 formatted datetime string.
|
303
|
+
"""
|
304
|
+
return pulumi.get(self, "time_updated")
|
305
|
+
|
306
|
+
@time_updated.setter
|
307
|
+
def time_updated(self, value: Optional[pulumi.Input[str]]):
|
308
|
+
pulumi.set(self, "time_updated", value)
|
309
|
+
|
310
|
+
@property
|
311
|
+
@pulumi.getter
|
312
|
+
def type(self) -> Optional[pulumi.Input[str]]:
|
313
|
+
"""
|
314
|
+
The type of the configuration.
|
315
|
+
"""
|
316
|
+
return pulumi.get(self, "type")
|
317
|
+
|
318
|
+
@type.setter
|
319
|
+
def type(self, value: Optional[pulumi.Input[str]]):
|
320
|
+
pulumi.set(self, "type", value)
|
321
|
+
|
322
|
+
|
323
|
+
class PlatformConfiguration(pulumi.CustomResource):
|
324
|
+
@overload
|
325
|
+
def __init__(__self__,
|
326
|
+
resource_name: str,
|
327
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
328
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
329
|
+
config_category_details: Optional[pulumi.Input[Union['PlatformConfigurationConfigCategoryDetailsArgs', 'PlatformConfigurationConfigCategoryDetailsArgsDict']]] = None,
|
330
|
+
description: Optional[pulumi.Input[str]] = None,
|
331
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
332
|
+
__props__=None):
|
333
|
+
"""
|
334
|
+
This resource provides the Platform Configuration resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
335
|
+
|
336
|
+
Creates a new PlatformConfiguration.
|
337
|
+
|
338
|
+
## Example Usage
|
339
|
+
|
340
|
+
```python
|
341
|
+
import pulumi
|
342
|
+
import pulumi_oci as oci
|
343
|
+
|
344
|
+
test_platform_configuration = oci.fleet_apps_management.PlatformConfiguration("test_platform_configuration",
|
345
|
+
compartment_id=compartment_id,
|
346
|
+
config_category_details={
|
347
|
+
"config_category": platform_configuration_config_category_details_config_category,
|
348
|
+
"compatible_products": [{
|
349
|
+
"display_name": platform_configuration_config_category_details_compatible_products_display_name,
|
350
|
+
"id": platform_configuration_config_category_details_compatible_products_id,
|
351
|
+
}],
|
352
|
+
"components": platform_configuration_config_category_details_components,
|
353
|
+
"credentials": [{
|
354
|
+
"display_name": platform_configuration_config_category_details_credentials_display_name,
|
355
|
+
"id": platform_configuration_config_category_details_credentials_id,
|
356
|
+
}],
|
357
|
+
"patch_types": [{
|
358
|
+
"display_name": platform_configuration_config_category_details_patch_types_display_name,
|
359
|
+
"id": platform_configuration_config_category_details_patch_types_id,
|
360
|
+
}],
|
361
|
+
"products": [{
|
362
|
+
"display_name": platform_configuration_config_category_details_products_display_name,
|
363
|
+
"id": platform_configuration_config_category_details_products_id,
|
364
|
+
}],
|
365
|
+
"sub_category_details": {
|
366
|
+
"sub_category": platform_configuration_config_category_details_sub_category_details_sub_category,
|
367
|
+
"components": platform_configuration_config_category_details_sub_category_details_components,
|
368
|
+
"credentials": [{
|
369
|
+
"display_name": platform_configuration_config_category_details_sub_category_details_credentials_display_name,
|
370
|
+
"id": platform_configuration_config_category_details_sub_category_details_credentials_id,
|
371
|
+
}],
|
372
|
+
"patch_types": [{
|
373
|
+
"display_name": platform_configuration_config_category_details_sub_category_details_patch_types_display_name,
|
374
|
+
"id": platform_configuration_config_category_details_sub_category_details_patch_types_id,
|
375
|
+
}],
|
376
|
+
"versions": platform_configuration_config_category_details_sub_category_details_versions,
|
377
|
+
},
|
378
|
+
"versions": platform_configuration_config_category_details_versions,
|
379
|
+
},
|
380
|
+
description=platform_configuration_description,
|
381
|
+
display_name=platform_configuration_display_name)
|
382
|
+
```
|
383
|
+
|
384
|
+
## Import
|
385
|
+
|
386
|
+
PlatformConfigurations can be imported using the `id`, e.g.
|
387
|
+
|
388
|
+
```sh
|
389
|
+
$ pulumi import oci:FleetAppsManagement/platformConfiguration:PlatformConfiguration test_platform_configuration "id"
|
390
|
+
```
|
391
|
+
|
392
|
+
:param str resource_name: The name of the resource.
|
393
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
394
|
+
:param pulumi.Input[str] compartment_id: Tenancy OCID
|
395
|
+
:param pulumi.Input[Union['PlatformConfigurationConfigCategoryDetailsArgs', 'PlatformConfigurationConfigCategoryDetailsArgsDict']] config_category_details: (Updatable) Config Category Details.
|
396
|
+
:param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
397
|
+
: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`
|
398
|
+
|
399
|
+
|
400
|
+
** IMPORTANT **
|
401
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
402
|
+
"""
|
403
|
+
...
|
404
|
+
@overload
|
405
|
+
def __init__(__self__,
|
406
|
+
resource_name: str,
|
407
|
+
args: PlatformConfigurationArgs,
|
408
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
409
|
+
"""
|
410
|
+
This resource provides the Platform Configuration resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
411
|
+
|
412
|
+
Creates a new PlatformConfiguration.
|
413
|
+
|
414
|
+
## Example Usage
|
415
|
+
|
416
|
+
```python
|
417
|
+
import pulumi
|
418
|
+
import pulumi_oci as oci
|
419
|
+
|
420
|
+
test_platform_configuration = oci.fleet_apps_management.PlatformConfiguration("test_platform_configuration",
|
421
|
+
compartment_id=compartment_id,
|
422
|
+
config_category_details={
|
423
|
+
"config_category": platform_configuration_config_category_details_config_category,
|
424
|
+
"compatible_products": [{
|
425
|
+
"display_name": platform_configuration_config_category_details_compatible_products_display_name,
|
426
|
+
"id": platform_configuration_config_category_details_compatible_products_id,
|
427
|
+
}],
|
428
|
+
"components": platform_configuration_config_category_details_components,
|
429
|
+
"credentials": [{
|
430
|
+
"display_name": platform_configuration_config_category_details_credentials_display_name,
|
431
|
+
"id": platform_configuration_config_category_details_credentials_id,
|
432
|
+
}],
|
433
|
+
"patch_types": [{
|
434
|
+
"display_name": platform_configuration_config_category_details_patch_types_display_name,
|
435
|
+
"id": platform_configuration_config_category_details_patch_types_id,
|
436
|
+
}],
|
437
|
+
"products": [{
|
438
|
+
"display_name": platform_configuration_config_category_details_products_display_name,
|
439
|
+
"id": platform_configuration_config_category_details_products_id,
|
440
|
+
}],
|
441
|
+
"sub_category_details": {
|
442
|
+
"sub_category": platform_configuration_config_category_details_sub_category_details_sub_category,
|
443
|
+
"components": platform_configuration_config_category_details_sub_category_details_components,
|
444
|
+
"credentials": [{
|
445
|
+
"display_name": platform_configuration_config_category_details_sub_category_details_credentials_display_name,
|
446
|
+
"id": platform_configuration_config_category_details_sub_category_details_credentials_id,
|
447
|
+
}],
|
448
|
+
"patch_types": [{
|
449
|
+
"display_name": platform_configuration_config_category_details_sub_category_details_patch_types_display_name,
|
450
|
+
"id": platform_configuration_config_category_details_sub_category_details_patch_types_id,
|
451
|
+
}],
|
452
|
+
"versions": platform_configuration_config_category_details_sub_category_details_versions,
|
453
|
+
},
|
454
|
+
"versions": platform_configuration_config_category_details_versions,
|
455
|
+
},
|
456
|
+
description=platform_configuration_description,
|
457
|
+
display_name=platform_configuration_display_name)
|
458
|
+
```
|
459
|
+
|
460
|
+
## Import
|
461
|
+
|
462
|
+
PlatformConfigurations can be imported using the `id`, e.g.
|
463
|
+
|
464
|
+
```sh
|
465
|
+
$ pulumi import oci:FleetAppsManagement/platformConfiguration:PlatformConfiguration test_platform_configuration "id"
|
466
|
+
```
|
467
|
+
|
468
|
+
:param str resource_name: The name of the resource.
|
469
|
+
:param PlatformConfigurationArgs args: The arguments to use to populate this resource's properties.
|
470
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
471
|
+
"""
|
472
|
+
...
|
473
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
474
|
+
resource_args, opts = _utilities.get_resource_args_opts(PlatformConfigurationArgs, pulumi.ResourceOptions, *args, **kwargs)
|
475
|
+
if resource_args is not None:
|
476
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
477
|
+
else:
|
478
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
479
|
+
|
480
|
+
def _internal_init(__self__,
|
481
|
+
resource_name: str,
|
482
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
483
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
484
|
+
config_category_details: Optional[pulumi.Input[Union['PlatformConfigurationConfigCategoryDetailsArgs', 'PlatformConfigurationConfigCategoryDetailsArgsDict']]] = None,
|
485
|
+
description: Optional[pulumi.Input[str]] = None,
|
486
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
487
|
+
__props__=None):
|
488
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
489
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
490
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
491
|
+
if opts.id is None:
|
492
|
+
if __props__ is not None:
|
493
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
494
|
+
__props__ = PlatformConfigurationArgs.__new__(PlatformConfigurationArgs)
|
495
|
+
|
496
|
+
if compartment_id is None and not opts.urn:
|
497
|
+
raise TypeError("Missing required property 'compartment_id'")
|
498
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
499
|
+
if config_category_details is None and not opts.urn:
|
500
|
+
raise TypeError("Missing required property 'config_category_details'")
|
501
|
+
__props__.__dict__["config_category_details"] = config_category_details
|
502
|
+
__props__.__dict__["description"] = description
|
503
|
+
__props__.__dict__["display_name"] = display_name
|
504
|
+
__props__.__dict__["defined_tags"] = None
|
505
|
+
__props__.__dict__["freeform_tags"] = None
|
506
|
+
__props__.__dict__["lifecycle_details"] = None
|
507
|
+
__props__.__dict__["resource_region"] = None
|
508
|
+
__props__.__dict__["state"] = None
|
509
|
+
__props__.__dict__["system_tags"] = None
|
510
|
+
__props__.__dict__["time_created"] = None
|
511
|
+
__props__.__dict__["time_updated"] = None
|
512
|
+
__props__.__dict__["type"] = None
|
513
|
+
super(PlatformConfiguration, __self__).__init__(
|
514
|
+
'oci:FleetAppsManagement/platformConfiguration:PlatformConfiguration',
|
515
|
+
resource_name,
|
516
|
+
__props__,
|
517
|
+
opts)
|
518
|
+
|
519
|
+
@staticmethod
|
520
|
+
def get(resource_name: str,
|
521
|
+
id: pulumi.Input[str],
|
522
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
523
|
+
compartment_id: Optional[pulumi.Input[str]] = None,
|
524
|
+
config_category_details: Optional[pulumi.Input[Union['PlatformConfigurationConfigCategoryDetailsArgs', 'PlatformConfigurationConfigCategoryDetailsArgsDict']]] = None,
|
525
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
526
|
+
description: Optional[pulumi.Input[str]] = None,
|
527
|
+
display_name: Optional[pulumi.Input[str]] = None,
|
528
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
529
|
+
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
530
|
+
resource_region: Optional[pulumi.Input[str]] = None,
|
531
|
+
state: Optional[pulumi.Input[str]] = None,
|
532
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
533
|
+
time_created: Optional[pulumi.Input[str]] = None,
|
534
|
+
time_updated: Optional[pulumi.Input[str]] = None,
|
535
|
+
type: Optional[pulumi.Input[str]] = None) -> 'PlatformConfiguration':
|
536
|
+
"""
|
537
|
+
Get an existing PlatformConfiguration resource's state with the given name, id, and optional extra
|
538
|
+
properties used to qualify the lookup.
|
539
|
+
|
540
|
+
:param str resource_name: The unique name of the resulting resource.
|
541
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
542
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
543
|
+
:param pulumi.Input[str] compartment_id: Tenancy OCID
|
544
|
+
:param pulumi.Input[Union['PlatformConfigurationConfigCategoryDetailsArgs', 'PlatformConfigurationConfigCategoryDetailsArgsDict']] config_category_details: (Updatable) Config Category Details.
|
545
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
546
|
+
:param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
547
|
+
: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`
|
548
|
+
|
549
|
+
|
550
|
+
** IMPORTANT **
|
551
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
552
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
553
|
+
: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.
|
554
|
+
:param pulumi.Input[str] resource_region: Associated region
|
555
|
+
:param pulumi.Input[str] state: The current state of the PlatformConfiguration.
|
556
|
+
: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"}`
|
557
|
+
:param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
|
558
|
+
:param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
|
559
|
+
:param pulumi.Input[str] type: The type of the configuration.
|
560
|
+
"""
|
561
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
562
|
+
|
563
|
+
__props__ = _PlatformConfigurationState.__new__(_PlatformConfigurationState)
|
564
|
+
|
565
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
566
|
+
__props__.__dict__["config_category_details"] = config_category_details
|
567
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
568
|
+
__props__.__dict__["description"] = description
|
569
|
+
__props__.__dict__["display_name"] = display_name
|
570
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
571
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
572
|
+
__props__.__dict__["resource_region"] = resource_region
|
573
|
+
__props__.__dict__["state"] = state
|
574
|
+
__props__.__dict__["system_tags"] = system_tags
|
575
|
+
__props__.__dict__["time_created"] = time_created
|
576
|
+
__props__.__dict__["time_updated"] = time_updated
|
577
|
+
__props__.__dict__["type"] = type
|
578
|
+
return PlatformConfiguration(resource_name, opts=opts, __props__=__props__)
|
579
|
+
|
580
|
+
@property
|
581
|
+
@pulumi.getter(name="compartmentId")
|
582
|
+
def compartment_id(self) -> pulumi.Output[str]:
|
583
|
+
"""
|
584
|
+
Tenancy OCID
|
585
|
+
"""
|
586
|
+
return pulumi.get(self, "compartment_id")
|
587
|
+
|
588
|
+
@property
|
589
|
+
@pulumi.getter(name="configCategoryDetails")
|
590
|
+
def config_category_details(self) -> pulumi.Output['outputs.PlatformConfigurationConfigCategoryDetails']:
|
591
|
+
"""
|
592
|
+
(Updatable) Config Category Details.
|
593
|
+
"""
|
594
|
+
return pulumi.get(self, "config_category_details")
|
595
|
+
|
596
|
+
@property
|
597
|
+
@pulumi.getter(name="definedTags")
|
598
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
599
|
+
"""
|
600
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
601
|
+
"""
|
602
|
+
return pulumi.get(self, "defined_tags")
|
603
|
+
|
604
|
+
@property
|
605
|
+
@pulumi.getter
|
606
|
+
def description(self) -> pulumi.Output[str]:
|
607
|
+
"""
|
608
|
+
(Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
609
|
+
"""
|
610
|
+
return pulumi.get(self, "description")
|
611
|
+
|
612
|
+
@property
|
613
|
+
@pulumi.getter(name="displayName")
|
614
|
+
def display_name(self) -> pulumi.Output[str]:
|
615
|
+
"""
|
616
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
617
|
+
|
618
|
+
|
619
|
+
** IMPORTANT **
|
620
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
621
|
+
"""
|
622
|
+
return pulumi.get(self, "display_name")
|
623
|
+
|
624
|
+
@property
|
625
|
+
@pulumi.getter(name="freeformTags")
|
626
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
627
|
+
"""
|
628
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
629
|
+
"""
|
630
|
+
return pulumi.get(self, "freeform_tags")
|
631
|
+
|
632
|
+
@property
|
633
|
+
@pulumi.getter(name="lifecycleDetails")
|
634
|
+
def lifecycle_details(self) -> pulumi.Output[str]:
|
635
|
+
"""
|
636
|
+
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
637
|
+
"""
|
638
|
+
return pulumi.get(self, "lifecycle_details")
|
639
|
+
|
640
|
+
@property
|
641
|
+
@pulumi.getter(name="resourceRegion")
|
642
|
+
def resource_region(self) -> pulumi.Output[str]:
|
643
|
+
"""
|
644
|
+
Associated region
|
645
|
+
"""
|
646
|
+
return pulumi.get(self, "resource_region")
|
647
|
+
|
648
|
+
@property
|
649
|
+
@pulumi.getter
|
650
|
+
def state(self) -> pulumi.Output[str]:
|
651
|
+
"""
|
652
|
+
The current state of the PlatformConfiguration.
|
653
|
+
"""
|
654
|
+
return pulumi.get(self, "state")
|
655
|
+
|
656
|
+
@property
|
657
|
+
@pulumi.getter(name="systemTags")
|
658
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
659
|
+
"""
|
660
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
661
|
+
"""
|
662
|
+
return pulumi.get(self, "system_tags")
|
663
|
+
|
664
|
+
@property
|
665
|
+
@pulumi.getter(name="timeCreated")
|
666
|
+
def time_created(self) -> pulumi.Output[str]:
|
667
|
+
"""
|
668
|
+
The time this resource was created. An RFC3339 formatted datetime string.
|
669
|
+
"""
|
670
|
+
return pulumi.get(self, "time_created")
|
671
|
+
|
672
|
+
@property
|
673
|
+
@pulumi.getter(name="timeUpdated")
|
674
|
+
def time_updated(self) -> pulumi.Output[str]:
|
675
|
+
"""
|
676
|
+
The time this resource was last updated. An RFC3339 formatted datetime string.
|
677
|
+
"""
|
678
|
+
return pulumi.get(self, "time_updated")
|
679
|
+
|
680
|
+
@property
|
681
|
+
@pulumi.getter
|
682
|
+
def type(self) -> pulumi.Output[str]:
|
683
|
+
"""
|
684
|
+
The type of the configuration.
|
685
|
+
"""
|
686
|
+
return pulumi.get(self, "type")
|
687
|
+
|