pulumi-oci 2.19.0a1733984857__py3-none-any.whl → 2.20.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (128) hide show
  1. pulumi_oci/__init__.py +56 -0
  2. pulumi_oci/bigdataservice/__init__.py +4 -0
  3. pulumi_oci/bigdataservice/_inputs.py +672 -6
  4. pulumi_oci/bigdataservice/bds_instance.py +169 -7
  5. pulumi_oci/bigdataservice/bds_instance_api_key.py +66 -3
  6. pulumi_oci/bigdataservice/bds_instance_identity_configuration.py +859 -0
  7. pulumi_oci/bigdataservice/bds_instance_patch_action.py +4 -0
  8. pulumi_oci/bigdataservice/get_bds_cluster_versions.py +123 -0
  9. pulumi_oci/bigdataservice/get_bds_instance.py +48 -1
  10. pulumi_oci/bigdataservice/get_bds_instance_api_key.py +17 -1
  11. pulumi_oci/bigdataservice/get_bds_instance_api_keys.py +3 -0
  12. pulumi_oci/bigdataservice/get_bds_instance_identity_configuration.py +322 -0
  13. pulumi_oci/bigdataservice/get_bds_instance_identity_configurations.py +207 -0
  14. pulumi_oci/bigdataservice/outputs.py +1466 -98
  15. pulumi_oci/blockchain/get_blockchain_platform.py +1 -1
  16. pulumi_oci/blockchain/outputs.py +2 -2
  17. pulumi_oci/core/outputs.py +4 -0
  18. pulumi_oci/database/autonomous_container_database.py +47 -0
  19. pulumi_oci/database/autonomous_database.py +94 -0
  20. pulumi_oci/database/exadb_vm_cluster.py +104 -0
  21. pulumi_oci/database/get_autonomous_container_database.py +15 -1
  22. pulumi_oci/database/get_autonomous_database.py +29 -1
  23. pulumi_oci/database/outputs.py +36 -0
  24. pulumi_oci/dataflow/application.py +75 -33
  25. pulumi_oci/dataflow/get_application.py +15 -1
  26. pulumi_oci/dataflow/outputs.py +7 -0
  27. pulumi_oci/datascience/_inputs.py +32 -12
  28. pulumi_oci/datascience/get_job_run.py +3 -3
  29. pulumi_oci/datascience/get_job_runs.py +2 -2
  30. pulumi_oci/datascience/job_run.py +7 -7
  31. pulumi_oci/datascience/model_deployment.py +2 -0
  32. pulumi_oci/datascience/outputs.py +62 -26
  33. pulumi_oci/desktops/_inputs.py +9 -9
  34. pulumi_oci/desktops/desktop_pool.py +84 -35
  35. pulumi_oci/desktops/get_desktop_pool.py +12 -1
  36. pulumi_oci/desktops/outputs.py +13 -6
  37. pulumi_oci/disasterrecovery/_inputs.py +46 -30
  38. pulumi_oci/disasterrecovery/dr_plan.py +194 -23
  39. pulumi_oci/disasterrecovery/get_dr_plan.py +54 -4
  40. pulumi_oci/disasterrecovery/get_dr_plans.py +23 -1
  41. pulumi_oci/disasterrecovery/outputs.py +113 -21
  42. pulumi_oci/fleetappsmanagement/__init__.py +19 -0
  43. pulumi_oci/fleetappsmanagement/_inputs.py +5334 -378
  44. pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +830 -0
  45. pulumi_oci/fleetappsmanagement/fleet.py +112 -67
  46. pulumi_oci/fleetappsmanagement/fleet_credential.py +44 -36
  47. pulumi_oci/fleetappsmanagement/fleet_property.py +35 -35
  48. pulumi_oci/fleetappsmanagement/fleet_resource.py +37 -37
  49. pulumi_oci/fleetappsmanagement/get_announcements.py +4 -4
  50. pulumi_oci/fleetappsmanagement/get_compliance_policies.py +199 -0
  51. pulumi_oci/fleetappsmanagement/get_compliance_policy.py +253 -0
  52. pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +324 -0
  53. pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +243 -0
  54. pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +144 -0
  55. pulumi_oci/fleetappsmanagement/get_compliance_records.py +279 -0
  56. pulumi_oci/fleetappsmanagement/get_fleet.py +29 -15
  57. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +8 -8
  58. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +7 -7
  59. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +61 -17
  60. pulumi_oci/fleetappsmanagement/get_fleet_products.py +6 -6
  61. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +8 -8
  62. pulumi_oci/fleetappsmanagement/get_fleet_property.py +11 -11
  63. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +11 -11
  64. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +10 -10
  65. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +8 -8
  66. pulumi_oci/fleetappsmanagement/get_fleets.py +16 -16
  67. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +12 -12
  68. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +8 -8
  69. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +31 -12
  70. pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +144 -0
  71. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +2 -2
  72. pulumi_oci/fleetappsmanagement/get_onboardings.py +2 -2
  73. pulumi_oci/fleetappsmanagement/get_patch.py +363 -0
  74. pulumi_oci/fleetappsmanagement/get_patches.py +335 -0
  75. pulumi_oci/fleetappsmanagement/get_platform_configuration.py +296 -0
  76. pulumi_oci/fleetappsmanagement/get_platform_configurations.py +221 -0
  77. pulumi_oci/fleetappsmanagement/get_properties.py +9 -9
  78. pulumi_oci/fleetappsmanagement/get_property.py +4 -4
  79. pulumi_oci/fleetappsmanagement/get_runbook.py +8 -8
  80. pulumi_oci/fleetappsmanagement/get_runbooks.py +16 -16
  81. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +10 -10
  82. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +2 -2
  83. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +33 -11
  84. pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +144 -0
  85. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_resources.py +245 -0
  86. pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +245 -0
  87. pulumi_oci/fleetappsmanagement/get_task_record.py +3 -3
  88. pulumi_oci/fleetappsmanagement/maintenance_window.py +44 -44
  89. pulumi_oci/fleetappsmanagement/onboarding.py +108 -20
  90. pulumi_oci/fleetappsmanagement/outputs.py +11222 -2736
  91. pulumi_oci/fleetappsmanagement/patch.py +978 -0
  92. pulumi_oci/fleetappsmanagement/platform_configuration.py +687 -0
  93. pulumi_oci/fleetappsmanagement/property.py +27 -27
  94. pulumi_oci/fleetappsmanagement/runbook.py +1173 -0
  95. pulumi_oci/fleetappsmanagement/scheduler_definition.py +30 -30
  96. pulumi_oci/fleetappsmanagement/task_record.py +754 -0
  97. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +28 -0
  98. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +56 -0
  99. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +15 -1
  100. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +29 -1
  101. pulumi_oci/fleetsoftwareupdate/outputs.py +33 -0
  102. pulumi_oci/generativeai/dedicated_ai_cluster.py +21 -0
  103. pulumi_oci/goldengate/__init__.py +7 -0
  104. pulumi_oci/goldengate/_inputs.py +665 -0
  105. pulumi_oci/goldengate/connection.py +7 -7
  106. pulumi_oci/goldengate/get_pipeline.py +408 -0
  107. pulumi_oci/goldengate/get_pipeline_running_processes.py +144 -0
  108. pulumi_oci/goldengate/get_pipeline_schema_tables.py +207 -0
  109. pulumi_oci/goldengate/get_pipeline_schemas.py +163 -0
  110. pulumi_oci/goldengate/get_pipelines.py +213 -0
  111. pulumi_oci/goldengate/get_recipes.py +188 -0
  112. pulumi_oci/goldengate/get_trail_files.py +4 -2
  113. pulumi_oci/goldengate/get_trail_sequences.py +4 -2
  114. pulumi_oci/goldengate/outputs.py +1500 -0
  115. pulumi_oci/goldengate/pipeline.py +928 -0
  116. pulumi_oci/pulumi-plugin.json +1 -1
  117. pulumi_oci/stackmonitoring/_inputs.py +94 -14
  118. pulumi_oci/stackmonitoring/get_metric_extensions.py +22 -3
  119. pulumi_oci/stackmonitoring/metric_extension.py +8 -0
  120. pulumi_oci/stackmonitoring/outputs.py +166 -24
  121. pulumi_oci/visualbuilder/_inputs.py +57 -202
  122. pulumi_oci/visualbuilder/get_vb_instance.py +15 -29
  123. pulumi_oci/visualbuilder/outputs.py +114 -400
  124. pulumi_oci/visualbuilder/vb_instance.py +62 -59
  125. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/METADATA +3 -3
  126. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/RECORD +128 -98
  127. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/WHEEL +0 -0
  128. {pulumi_oci-2.19.0a1733984857.dist-info → pulumi_oci-2.20.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,754 @@
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__ = ['TaskRecordArgs', 'TaskRecord']
20
+
21
+ @pulumi.input_type
22
+ class TaskRecordArgs:
23
+ def __init__(__self__, *,
24
+ compartment_id: pulumi.Input[str],
25
+ details: pulumi.Input['TaskRecordDetailsArgs'],
26
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
27
+ description: Optional[pulumi.Input[str]] = None,
28
+ display_name: Optional[pulumi.Input[str]] = None,
29
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
30
+ """
31
+ The set of arguments for constructing a TaskRecord resource.
32
+ :param pulumi.Input['TaskRecordDetailsArgs'] details: (Updatable) The details of the task.
33
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
34
+ :param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
35
+ :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`
36
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
37
+
38
+
39
+ ** IMPORTANT **
40
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
41
+ """
42
+ pulumi.set(__self__, "compartment_id", compartment_id)
43
+ pulumi.set(__self__, "details", details)
44
+ if defined_tags is not None:
45
+ pulumi.set(__self__, "defined_tags", defined_tags)
46
+ if description is not None:
47
+ pulumi.set(__self__, "description", description)
48
+ if display_name is not None:
49
+ pulumi.set(__self__, "display_name", display_name)
50
+ if freeform_tags is not None:
51
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
52
+
53
+ @property
54
+ @pulumi.getter(name="compartmentId")
55
+ def compartment_id(self) -> pulumi.Input[str]:
56
+ return pulumi.get(self, "compartment_id")
57
+
58
+ @compartment_id.setter
59
+ def compartment_id(self, value: pulumi.Input[str]):
60
+ pulumi.set(self, "compartment_id", value)
61
+
62
+ @property
63
+ @pulumi.getter
64
+ def details(self) -> pulumi.Input['TaskRecordDetailsArgs']:
65
+ """
66
+ (Updatable) The details of the task.
67
+ """
68
+ return pulumi.get(self, "details")
69
+
70
+ @details.setter
71
+ def details(self, value: pulumi.Input['TaskRecordDetailsArgs']):
72
+ pulumi.set(self, "details", value)
73
+
74
+ @property
75
+ @pulumi.getter(name="definedTags")
76
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
77
+ """
78
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
79
+ """
80
+ return pulumi.get(self, "defined_tags")
81
+
82
+ @defined_tags.setter
83
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
84
+ pulumi.set(self, "defined_tags", value)
85
+
86
+ @property
87
+ @pulumi.getter
88
+ def description(self) -> Optional[pulumi.Input[str]]:
89
+ """
90
+ (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
91
+ """
92
+ return pulumi.get(self, "description")
93
+
94
+ @description.setter
95
+ def description(self, value: Optional[pulumi.Input[str]]):
96
+ pulumi.set(self, "description", value)
97
+
98
+ @property
99
+ @pulumi.getter(name="displayName")
100
+ def display_name(self) -> Optional[pulumi.Input[str]]:
101
+ """
102
+ (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
103
+ """
104
+ return pulumi.get(self, "display_name")
105
+
106
+ @display_name.setter
107
+ def display_name(self, value: Optional[pulumi.Input[str]]):
108
+ pulumi.set(self, "display_name", value)
109
+
110
+ @property
111
+ @pulumi.getter(name="freeformTags")
112
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
113
+ """
114
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
115
+
116
+
117
+ ** IMPORTANT **
118
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
119
+ """
120
+ return pulumi.get(self, "freeform_tags")
121
+
122
+ @freeform_tags.setter
123
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
124
+ pulumi.set(self, "freeform_tags", value)
125
+
126
+
127
+ @pulumi.input_type
128
+ class _TaskRecordState:
129
+ def __init__(__self__, *,
130
+ compartment_id: Optional[pulumi.Input[str]] = None,
131
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
132
+ description: Optional[pulumi.Input[str]] = None,
133
+ details: Optional[pulumi.Input['TaskRecordDetailsArgs']] = None,
134
+ display_name: Optional[pulumi.Input[str]] = None,
135
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
136
+ lifecycle_details: Optional[pulumi.Input[str]] = None,
137
+ resource_region: Optional[pulumi.Input[str]] = None,
138
+ state: Optional[pulumi.Input[str]] = None,
139
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
140
+ time_created: Optional[pulumi.Input[str]] = None,
141
+ time_updated: Optional[pulumi.Input[str]] = None,
142
+ type: Optional[pulumi.Input[str]] = None,
143
+ version: Optional[pulumi.Input[str]] = None):
144
+ """
145
+ Input properties used for looking up and filtering TaskRecord resources.
146
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
147
+ :param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
148
+ :param pulumi.Input['TaskRecordDetailsArgs'] details: (Updatable) The details of the task.
149
+ :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`
150
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
151
+
152
+
153
+ ** IMPORTANT **
154
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
155
+ :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.
156
+ :param pulumi.Input[str] resource_region: Associated region
157
+ :param pulumi.Input[str] state: The current state of the TaskRecord.
158
+ :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"}`
159
+ :param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
160
+ :param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
161
+ :param pulumi.Input[str] type: Task type.
162
+ :param pulumi.Input[str] version: The version of the task
163
+ """
164
+ if compartment_id is not None:
165
+ pulumi.set(__self__, "compartment_id", compartment_id)
166
+ if defined_tags is not None:
167
+ pulumi.set(__self__, "defined_tags", defined_tags)
168
+ if description is not None:
169
+ pulumi.set(__self__, "description", description)
170
+ if details is not None:
171
+ pulumi.set(__self__, "details", details)
172
+ if display_name is not None:
173
+ pulumi.set(__self__, "display_name", display_name)
174
+ if freeform_tags is not None:
175
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
176
+ if lifecycle_details is not None:
177
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
178
+ if resource_region is not None:
179
+ pulumi.set(__self__, "resource_region", resource_region)
180
+ if state is not None:
181
+ pulumi.set(__self__, "state", state)
182
+ if system_tags is not None:
183
+ pulumi.set(__self__, "system_tags", system_tags)
184
+ if time_created is not None:
185
+ pulumi.set(__self__, "time_created", time_created)
186
+ if time_updated is not None:
187
+ pulumi.set(__self__, "time_updated", time_updated)
188
+ if type is not None:
189
+ pulumi.set(__self__, "type", type)
190
+ if version is not None:
191
+ pulumi.set(__self__, "version", version)
192
+
193
+ @property
194
+ @pulumi.getter(name="compartmentId")
195
+ def compartment_id(self) -> Optional[pulumi.Input[str]]:
196
+ return pulumi.get(self, "compartment_id")
197
+
198
+ @compartment_id.setter
199
+ def compartment_id(self, value: Optional[pulumi.Input[str]]):
200
+ pulumi.set(self, "compartment_id", value)
201
+
202
+ @property
203
+ @pulumi.getter(name="definedTags")
204
+ def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
205
+ """
206
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
207
+ """
208
+ return pulumi.get(self, "defined_tags")
209
+
210
+ @defined_tags.setter
211
+ def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
212
+ pulumi.set(self, "defined_tags", value)
213
+
214
+ @property
215
+ @pulumi.getter
216
+ def description(self) -> Optional[pulumi.Input[str]]:
217
+ """
218
+ (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
219
+ """
220
+ return pulumi.get(self, "description")
221
+
222
+ @description.setter
223
+ def description(self, value: Optional[pulumi.Input[str]]):
224
+ pulumi.set(self, "description", value)
225
+
226
+ @property
227
+ @pulumi.getter
228
+ def details(self) -> Optional[pulumi.Input['TaskRecordDetailsArgs']]:
229
+ """
230
+ (Updatable) The details of the task.
231
+ """
232
+ return pulumi.get(self, "details")
233
+
234
+ @details.setter
235
+ def details(self, value: Optional[pulumi.Input['TaskRecordDetailsArgs']]):
236
+ pulumi.set(self, "details", value)
237
+
238
+ @property
239
+ @pulumi.getter(name="displayName")
240
+ def display_name(self) -> Optional[pulumi.Input[str]]:
241
+ """
242
+ (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
243
+ """
244
+ return pulumi.get(self, "display_name")
245
+
246
+ @display_name.setter
247
+ def display_name(self, value: Optional[pulumi.Input[str]]):
248
+ pulumi.set(self, "display_name", value)
249
+
250
+ @property
251
+ @pulumi.getter(name="freeformTags")
252
+ def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
253
+ """
254
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
255
+
256
+
257
+ ** IMPORTANT **
258
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
259
+ """
260
+ return pulumi.get(self, "freeform_tags")
261
+
262
+ @freeform_tags.setter
263
+ def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
264
+ pulumi.set(self, "freeform_tags", value)
265
+
266
+ @property
267
+ @pulumi.getter(name="lifecycleDetails")
268
+ def lifecycle_details(self) -> Optional[pulumi.Input[str]]:
269
+ """
270
+ A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
271
+ """
272
+ return pulumi.get(self, "lifecycle_details")
273
+
274
+ @lifecycle_details.setter
275
+ def lifecycle_details(self, value: Optional[pulumi.Input[str]]):
276
+ pulumi.set(self, "lifecycle_details", value)
277
+
278
+ @property
279
+ @pulumi.getter(name="resourceRegion")
280
+ def resource_region(self) -> Optional[pulumi.Input[str]]:
281
+ """
282
+ Associated region
283
+ """
284
+ return pulumi.get(self, "resource_region")
285
+
286
+ @resource_region.setter
287
+ def resource_region(self, value: Optional[pulumi.Input[str]]):
288
+ pulumi.set(self, "resource_region", value)
289
+
290
+ @property
291
+ @pulumi.getter
292
+ def state(self) -> Optional[pulumi.Input[str]]:
293
+ """
294
+ The current state of the TaskRecord.
295
+ """
296
+ return pulumi.get(self, "state")
297
+
298
+ @state.setter
299
+ def state(self, value: Optional[pulumi.Input[str]]):
300
+ pulumi.set(self, "state", value)
301
+
302
+ @property
303
+ @pulumi.getter(name="systemTags")
304
+ def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
305
+ """
306
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
307
+ """
308
+ return pulumi.get(self, "system_tags")
309
+
310
+ @system_tags.setter
311
+ def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
312
+ pulumi.set(self, "system_tags", value)
313
+
314
+ @property
315
+ @pulumi.getter(name="timeCreated")
316
+ def time_created(self) -> Optional[pulumi.Input[str]]:
317
+ """
318
+ The time this resource was created. An RFC3339 formatted datetime string.
319
+ """
320
+ return pulumi.get(self, "time_created")
321
+
322
+ @time_created.setter
323
+ def time_created(self, value: Optional[pulumi.Input[str]]):
324
+ pulumi.set(self, "time_created", value)
325
+
326
+ @property
327
+ @pulumi.getter(name="timeUpdated")
328
+ def time_updated(self) -> Optional[pulumi.Input[str]]:
329
+ """
330
+ The time this resource was last updated. An RFC3339 formatted datetime string.
331
+ """
332
+ return pulumi.get(self, "time_updated")
333
+
334
+ @time_updated.setter
335
+ def time_updated(self, value: Optional[pulumi.Input[str]]):
336
+ pulumi.set(self, "time_updated", value)
337
+
338
+ @property
339
+ @pulumi.getter
340
+ def type(self) -> Optional[pulumi.Input[str]]:
341
+ """
342
+ Task type.
343
+ """
344
+ return pulumi.get(self, "type")
345
+
346
+ @type.setter
347
+ def type(self, value: Optional[pulumi.Input[str]]):
348
+ pulumi.set(self, "type", value)
349
+
350
+ @property
351
+ @pulumi.getter
352
+ def version(self) -> Optional[pulumi.Input[str]]:
353
+ """
354
+ The version of the task
355
+ """
356
+ return pulumi.get(self, "version")
357
+
358
+ @version.setter
359
+ def version(self, value: Optional[pulumi.Input[str]]):
360
+ pulumi.set(self, "version", value)
361
+
362
+
363
+ class TaskRecord(pulumi.CustomResource):
364
+ @overload
365
+ def __init__(__self__,
366
+ resource_name: str,
367
+ opts: Optional[pulumi.ResourceOptions] = None,
368
+ compartment_id: Optional[pulumi.Input[str]] = None,
369
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
370
+ description: Optional[pulumi.Input[str]] = None,
371
+ details: Optional[pulumi.Input[Union['TaskRecordDetailsArgs', 'TaskRecordDetailsArgsDict']]] = None,
372
+ display_name: Optional[pulumi.Input[str]] = None,
373
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
374
+ __props__=None):
375
+ """
376
+ This resource provides the Task Record resource in Oracle Cloud Infrastructure Fleet Apps Management service.
377
+
378
+ Creates a new Task.
379
+
380
+ ## Example Usage
381
+
382
+ ```python
383
+ import pulumi
384
+ import pulumi_oci as oci
385
+
386
+ test_task_record = oci.fleet_apps_management.TaskRecord("test_task_record",
387
+ compartment_id=compartment_id,
388
+ details={
389
+ "execution_details": {
390
+ "execution_type": task_record_details_execution_details_execution_type,
391
+ "command": task_record_details_execution_details_command,
392
+ "content": {
393
+ "bucket": task_record_details_execution_details_content_bucket,
394
+ "checksum": task_record_details_execution_details_content_checksum,
395
+ "namespace": task_record_details_execution_details_content_namespace,
396
+ "object": task_record_details_execution_details_content_object,
397
+ "source_type": task_record_details_execution_details_content_source_type,
398
+ },
399
+ "credentials": [{
400
+ "display_name": task_record_details_execution_details_credentials_display_name,
401
+ "id": task_record_details_execution_details_credentials_id,
402
+ }],
403
+ "endpoint": task_record_details_execution_details_endpoint,
404
+ "variables": {
405
+ "input_variables": [{
406
+ "description": task_record_details_execution_details_variables_input_variables_description,
407
+ "name": task_record_details_execution_details_variables_input_variables_name,
408
+ "type": task_record_details_execution_details_variables_input_variables_type,
409
+ }],
410
+ "output_variables": task_record_details_execution_details_variables_output_variables,
411
+ },
412
+ },
413
+ "os_type": task_record_details_os_type,
414
+ "scope": task_record_details_scope,
415
+ "is_apply_subject_task": task_record_details_is_apply_subject_task,
416
+ "is_discovery_output_task": task_record_details_is_discovery_output_task,
417
+ "platform": task_record_details_platform,
418
+ "properties": {
419
+ "num_retries": task_record_details_properties_num_retries,
420
+ "timeout_in_seconds": task_record_details_properties_timeout_in_seconds,
421
+ },
422
+ },
423
+ defined_tags={
424
+ "foo-namespace.bar-key": "value",
425
+ },
426
+ description=task_record_description,
427
+ display_name=task_record_display_name,
428
+ freeform_tags={
429
+ "bar-key": "value",
430
+ })
431
+ ```
432
+
433
+ ## Import
434
+
435
+ TaskRecords can be imported using the `id`, e.g.
436
+
437
+ ```sh
438
+ $ pulumi import oci:FleetAppsManagement/taskRecord:TaskRecord test_task_record "id"
439
+ ```
440
+
441
+ :param str resource_name: The name of the resource.
442
+ :param pulumi.ResourceOptions opts: Options for the resource.
443
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
444
+ :param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
445
+ :param pulumi.Input[Union['TaskRecordDetailsArgs', 'TaskRecordDetailsArgsDict']] details: (Updatable) The details of the task.
446
+ :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`
447
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
448
+
449
+
450
+ ** IMPORTANT **
451
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
452
+ """
453
+ ...
454
+ @overload
455
+ def __init__(__self__,
456
+ resource_name: str,
457
+ args: TaskRecordArgs,
458
+ opts: Optional[pulumi.ResourceOptions] = None):
459
+ """
460
+ This resource provides the Task Record resource in Oracle Cloud Infrastructure Fleet Apps Management service.
461
+
462
+ Creates a new Task.
463
+
464
+ ## Example Usage
465
+
466
+ ```python
467
+ import pulumi
468
+ import pulumi_oci as oci
469
+
470
+ test_task_record = oci.fleet_apps_management.TaskRecord("test_task_record",
471
+ compartment_id=compartment_id,
472
+ details={
473
+ "execution_details": {
474
+ "execution_type": task_record_details_execution_details_execution_type,
475
+ "command": task_record_details_execution_details_command,
476
+ "content": {
477
+ "bucket": task_record_details_execution_details_content_bucket,
478
+ "checksum": task_record_details_execution_details_content_checksum,
479
+ "namespace": task_record_details_execution_details_content_namespace,
480
+ "object": task_record_details_execution_details_content_object,
481
+ "source_type": task_record_details_execution_details_content_source_type,
482
+ },
483
+ "credentials": [{
484
+ "display_name": task_record_details_execution_details_credentials_display_name,
485
+ "id": task_record_details_execution_details_credentials_id,
486
+ }],
487
+ "endpoint": task_record_details_execution_details_endpoint,
488
+ "variables": {
489
+ "input_variables": [{
490
+ "description": task_record_details_execution_details_variables_input_variables_description,
491
+ "name": task_record_details_execution_details_variables_input_variables_name,
492
+ "type": task_record_details_execution_details_variables_input_variables_type,
493
+ }],
494
+ "output_variables": task_record_details_execution_details_variables_output_variables,
495
+ },
496
+ },
497
+ "os_type": task_record_details_os_type,
498
+ "scope": task_record_details_scope,
499
+ "is_apply_subject_task": task_record_details_is_apply_subject_task,
500
+ "is_discovery_output_task": task_record_details_is_discovery_output_task,
501
+ "platform": task_record_details_platform,
502
+ "properties": {
503
+ "num_retries": task_record_details_properties_num_retries,
504
+ "timeout_in_seconds": task_record_details_properties_timeout_in_seconds,
505
+ },
506
+ },
507
+ defined_tags={
508
+ "foo-namespace.bar-key": "value",
509
+ },
510
+ description=task_record_description,
511
+ display_name=task_record_display_name,
512
+ freeform_tags={
513
+ "bar-key": "value",
514
+ })
515
+ ```
516
+
517
+ ## Import
518
+
519
+ TaskRecords can be imported using the `id`, e.g.
520
+
521
+ ```sh
522
+ $ pulumi import oci:FleetAppsManagement/taskRecord:TaskRecord test_task_record "id"
523
+ ```
524
+
525
+ :param str resource_name: The name of the resource.
526
+ :param TaskRecordArgs args: The arguments to use to populate this resource's properties.
527
+ :param pulumi.ResourceOptions opts: Options for the resource.
528
+ """
529
+ ...
530
+ def __init__(__self__, resource_name: str, *args, **kwargs):
531
+ resource_args, opts = _utilities.get_resource_args_opts(TaskRecordArgs, pulumi.ResourceOptions, *args, **kwargs)
532
+ if resource_args is not None:
533
+ __self__._internal_init(resource_name, opts, **resource_args.__dict__)
534
+ else:
535
+ __self__._internal_init(resource_name, *args, **kwargs)
536
+
537
+ def _internal_init(__self__,
538
+ resource_name: str,
539
+ opts: Optional[pulumi.ResourceOptions] = None,
540
+ compartment_id: Optional[pulumi.Input[str]] = None,
541
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
542
+ description: Optional[pulumi.Input[str]] = None,
543
+ details: Optional[pulumi.Input[Union['TaskRecordDetailsArgs', 'TaskRecordDetailsArgsDict']]] = None,
544
+ display_name: Optional[pulumi.Input[str]] = None,
545
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
546
+ __props__=None):
547
+ opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
548
+ if not isinstance(opts, pulumi.ResourceOptions):
549
+ raise TypeError('Expected resource options to be a ResourceOptions instance')
550
+ if opts.id is None:
551
+ if __props__ is not None:
552
+ raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
553
+ __props__ = TaskRecordArgs.__new__(TaskRecordArgs)
554
+
555
+ if compartment_id is None and not opts.urn:
556
+ raise TypeError("Missing required property 'compartment_id'")
557
+ __props__.__dict__["compartment_id"] = compartment_id
558
+ __props__.__dict__["defined_tags"] = defined_tags
559
+ __props__.__dict__["description"] = description
560
+ if details is None and not opts.urn:
561
+ raise TypeError("Missing required property 'details'")
562
+ __props__.__dict__["details"] = details
563
+ __props__.__dict__["display_name"] = display_name
564
+ __props__.__dict__["freeform_tags"] = freeform_tags
565
+ __props__.__dict__["lifecycle_details"] = None
566
+ __props__.__dict__["resource_region"] = None
567
+ __props__.__dict__["state"] = None
568
+ __props__.__dict__["system_tags"] = None
569
+ __props__.__dict__["time_created"] = None
570
+ __props__.__dict__["time_updated"] = None
571
+ __props__.__dict__["type"] = None
572
+ __props__.__dict__["version"] = None
573
+ super(TaskRecord, __self__).__init__(
574
+ 'oci:FleetAppsManagement/taskRecord:TaskRecord',
575
+ resource_name,
576
+ __props__,
577
+ opts)
578
+
579
+ @staticmethod
580
+ def get(resource_name: str,
581
+ id: pulumi.Input[str],
582
+ opts: Optional[pulumi.ResourceOptions] = None,
583
+ compartment_id: Optional[pulumi.Input[str]] = None,
584
+ defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
585
+ description: Optional[pulumi.Input[str]] = None,
586
+ details: Optional[pulumi.Input[Union['TaskRecordDetailsArgs', 'TaskRecordDetailsArgsDict']]] = None,
587
+ display_name: Optional[pulumi.Input[str]] = None,
588
+ freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
589
+ lifecycle_details: Optional[pulumi.Input[str]] = None,
590
+ resource_region: Optional[pulumi.Input[str]] = None,
591
+ state: Optional[pulumi.Input[str]] = None,
592
+ system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
593
+ time_created: Optional[pulumi.Input[str]] = None,
594
+ time_updated: Optional[pulumi.Input[str]] = None,
595
+ type: Optional[pulumi.Input[str]] = None,
596
+ version: Optional[pulumi.Input[str]] = None) -> 'TaskRecord':
597
+ """
598
+ Get an existing TaskRecord resource's state with the given name, id, and optional extra
599
+ properties used to qualify the lookup.
600
+
601
+ :param str resource_name: The unique name of the resulting resource.
602
+ :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
603
+ :param pulumi.ResourceOptions opts: Options for the resource.
604
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
605
+ :param pulumi.Input[str] description: (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
606
+ :param pulumi.Input[Union['TaskRecordDetailsArgs', 'TaskRecordDetailsArgsDict']] details: (Updatable) The details of the task.
607
+ :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`
608
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
609
+
610
+
611
+ ** IMPORTANT **
612
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
613
+ :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.
614
+ :param pulumi.Input[str] resource_region: Associated region
615
+ :param pulumi.Input[str] state: The current state of the TaskRecord.
616
+ :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"}`
617
+ :param pulumi.Input[str] time_created: The time this resource was created. An RFC3339 formatted datetime string.
618
+ :param pulumi.Input[str] time_updated: The time this resource was last updated. An RFC3339 formatted datetime string.
619
+ :param pulumi.Input[str] type: Task type.
620
+ :param pulumi.Input[str] version: The version of the task
621
+ """
622
+ opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
623
+
624
+ __props__ = _TaskRecordState.__new__(_TaskRecordState)
625
+
626
+ __props__.__dict__["compartment_id"] = compartment_id
627
+ __props__.__dict__["defined_tags"] = defined_tags
628
+ __props__.__dict__["description"] = description
629
+ __props__.__dict__["details"] = details
630
+ __props__.__dict__["display_name"] = display_name
631
+ __props__.__dict__["freeform_tags"] = freeform_tags
632
+ __props__.__dict__["lifecycle_details"] = lifecycle_details
633
+ __props__.__dict__["resource_region"] = resource_region
634
+ __props__.__dict__["state"] = state
635
+ __props__.__dict__["system_tags"] = system_tags
636
+ __props__.__dict__["time_created"] = time_created
637
+ __props__.__dict__["time_updated"] = time_updated
638
+ __props__.__dict__["type"] = type
639
+ __props__.__dict__["version"] = version
640
+ return TaskRecord(resource_name, opts=opts, __props__=__props__)
641
+
642
+ @property
643
+ @pulumi.getter(name="compartmentId")
644
+ def compartment_id(self) -> pulumi.Output[str]:
645
+ return pulumi.get(self, "compartment_id")
646
+
647
+ @property
648
+ @pulumi.getter(name="definedTags")
649
+ def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
650
+ """
651
+ (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
652
+ """
653
+ return pulumi.get(self, "defined_tags")
654
+
655
+ @property
656
+ @pulumi.getter
657
+ def description(self) -> pulumi.Output[str]:
658
+ """
659
+ (Updatable) A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
660
+ """
661
+ return pulumi.get(self, "description")
662
+
663
+ @property
664
+ @pulumi.getter
665
+ def details(self) -> pulumi.Output['outputs.TaskRecordDetails']:
666
+ """
667
+ (Updatable) The details of the task.
668
+ """
669
+ return pulumi.get(self, "details")
670
+
671
+ @property
672
+ @pulumi.getter(name="displayName")
673
+ def display_name(self) -> pulumi.Output[str]:
674
+ """
675
+ (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
676
+ """
677
+ return pulumi.get(self, "display_name")
678
+
679
+ @property
680
+ @pulumi.getter(name="freeformTags")
681
+ def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
682
+ """
683
+ (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
684
+
685
+
686
+ ** IMPORTANT **
687
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
688
+ """
689
+ return pulumi.get(self, "freeform_tags")
690
+
691
+ @property
692
+ @pulumi.getter(name="lifecycleDetails")
693
+ def lifecycle_details(self) -> pulumi.Output[str]:
694
+ """
695
+ A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
696
+ """
697
+ return pulumi.get(self, "lifecycle_details")
698
+
699
+ @property
700
+ @pulumi.getter(name="resourceRegion")
701
+ def resource_region(self) -> pulumi.Output[str]:
702
+ """
703
+ Associated region
704
+ """
705
+ return pulumi.get(self, "resource_region")
706
+
707
+ @property
708
+ @pulumi.getter
709
+ def state(self) -> pulumi.Output[str]:
710
+ """
711
+ The current state of the TaskRecord.
712
+ """
713
+ return pulumi.get(self, "state")
714
+
715
+ @property
716
+ @pulumi.getter(name="systemTags")
717
+ def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
718
+ """
719
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
720
+ """
721
+ return pulumi.get(self, "system_tags")
722
+
723
+ @property
724
+ @pulumi.getter(name="timeCreated")
725
+ def time_created(self) -> pulumi.Output[str]:
726
+ """
727
+ The time this resource was created. An RFC3339 formatted datetime string.
728
+ """
729
+ return pulumi.get(self, "time_created")
730
+
731
+ @property
732
+ @pulumi.getter(name="timeUpdated")
733
+ def time_updated(self) -> pulumi.Output[str]:
734
+ """
735
+ The time this resource was last updated. An RFC3339 formatted datetime string.
736
+ """
737
+ return pulumi.get(self, "time_updated")
738
+
739
+ @property
740
+ @pulumi.getter
741
+ def type(self) -> pulumi.Output[str]:
742
+ """
743
+ Task type.
744
+ """
745
+ return pulumi.get(self, "type")
746
+
747
+ @property
748
+ @pulumi.getter
749
+ def version(self) -> pulumi.Output[str]:
750
+ """
751
+ The version of the task
752
+ """
753
+ return pulumi.get(self, "version")
754
+