pulumi-oci 2.9.0a1724479778__py3-none-any.whl → 2.9.0a1724836493__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 +86 -38
- pulumi_oci/announcementsservice/__init__.py +1 -0
- pulumi_oci/announcementsservice/_inputs.py +46 -6
- pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
- pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
- pulumi_oci/announcementsservice/get_services.py +173 -0
- pulumi_oci/announcementsservice/outputs.py +195 -18
- pulumi_oci/bigdataservice/_inputs.py +1 -49
- pulumi_oci/bigdataservice/bds_instance.py +0 -128
- pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
- pulumi_oci/bigdataservice/outputs.py +3 -132
- pulumi_oci/database/_inputs.py +32 -0
- pulumi_oci/database/autonomous_database.py +28 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_databases.py +32 -95
- pulumi_oci/database/get_data_guard_association.py +11 -1
- pulumi_oci/database/outputs.py +163 -42
- pulumi_oci/databasemanagement/__init__.py +1 -0
- pulumi_oci/databasemanagement/_inputs.py +873 -10
- pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
- pulumi_oci/databasemanagement/get_managed_database.py +47 -3
- pulumi_oci/databasemanagement/managed_database.py +56 -0
- pulumi_oci/databasemanagement/outputs.py +3331 -1397
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
- pulumi_oci/datasafe/__init__.py +6 -0
- pulumi_oci/datasafe/_inputs.py +18 -0
- pulumi_oci/datasafe/database_security_config_management.py +244 -2
- pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/datasafe/outputs.py +18 -0
- pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
- pulumi_oci/datasafe/security_policy_management.py +172 -2
- pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
- pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
- pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
- pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
- pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
- pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
- pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
- pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
- pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
- pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
- pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
- pulumi_oci/desktops/_inputs.py +483 -0
- pulumi_oci/desktops/desktop_pool.py +1348 -0
- pulumi_oci/desktops/get_desktop.py +223 -0
- pulumi_oci/desktops/get_desktop_pool.py +418 -0
- pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
- pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
- pulumi_oci/desktops/get_desktop_pools.py +203 -0
- pulumi_oci/desktops/get_desktops.py +214 -0
- pulumi_oci/desktops/outputs.py +1738 -0
- pulumi_oci/filestorage/mount_target.py +143 -38
- pulumi_oci/filestorage/outputs.py +44 -0
- pulumi_oci/identity/domains_group.py +34 -0
- pulumi_oci/identity/domains_user.py +34 -0
- pulumi_oci/identity/get_domains_group.py +11 -1
- pulumi_oci/identity/get_domains_user.py +11 -1
- pulumi_oci/identity/outputs.py +14 -0
- pulumi_oci/kms/_inputs.py +10 -10
- pulumi_oci/kms/get_vault.py +14 -1
- pulumi_oci/kms/outputs.py +41 -30
- pulumi_oci/kms/vault.py +28 -0
- pulumi_oci/loadbalancer/load_balancer.py +224 -0
- pulumi_oci/loadbalancer/outputs.py +22 -0
- pulumi_oci/mysql/_inputs.py +23 -0
- pulumi_oci/mysql/get_mysql_db_system.py +15 -2
- pulumi_oci/mysql/mysql_db_system.py +53 -0
- pulumi_oci/mysql/outputs.py +74 -6
- pulumi_oci/ocvp/get_cluster.py +2 -2
- pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
- pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
- pulumi_oci/ocvp/outputs.py +2 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/recoverymod/_inputs.py +0 -8
- pulumi_oci/recoverymod/get_protected_database.py +14 -1
- pulumi_oci/recoverymod/get_protection_policy.py +14 -1
- pulumi_oci/recoverymod/outputs.py +22 -8
- pulumi_oci/recoverymod/protected_database.py +80 -3
- pulumi_oci/recoverymod/protection_policy.py +49 -0
- pulumi_oci/waf/_inputs.py +29 -16
- pulumi_oci/waf/outputs.py +33 -10
- {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.9.0a1724836493.dist-info}/METADATA +1 -1
- {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.9.0a1724836493.dist-info}/RECORD +104 -86
- {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.9.0a1724836493.dist-info}/WHEEL +1 -1
- pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
- pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
- {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.9.0a1724836493.dist-info}/top_level.txt +0 -0
@@ -1,325 +0,0 @@
|
|
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 pulumi
|
8
|
-
import pulumi.runtime
|
9
|
-
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
-
from .. import _utilities
|
11
|
-
from . import outputs
|
12
|
-
|
13
|
-
__all__ = [
|
14
|
-
'GetFsuCycleResult',
|
15
|
-
'AwaitableGetFsuCycleResult',
|
16
|
-
'get_fsu_cycle',
|
17
|
-
'get_fsu_cycle_output',
|
18
|
-
]
|
19
|
-
|
20
|
-
@pulumi.output_type
|
21
|
-
class GetFsuCycleResult:
|
22
|
-
"""
|
23
|
-
A collection of values returned by getFsuCycle.
|
24
|
-
"""
|
25
|
-
def __init__(__self__, apply_action_schedules=None, batching_strategies=None, collection_type=None, compartment_id=None, defined_tags=None, diagnostics_collections=None, display_name=None, executing_fsu_action_id=None, freeform_tags=None, fsu_collection_id=None, fsu_cycle_id=None, goal_version_details=None, id=None, is_ignore_missing_patches=None, is_ignore_patches=None, is_keep_placement=None, last_completed_action=None, lifecycle_details=None, max_drain_timeout_in_seconds=None, next_action_to_executes=None, stage_action_schedules=None, state=None, system_tags=None, time_created=None, time_finished=None, time_updated=None, type=None):
|
26
|
-
if apply_action_schedules and not isinstance(apply_action_schedules, list):
|
27
|
-
raise TypeError("Expected argument 'apply_action_schedules' to be a list")
|
28
|
-
pulumi.set(__self__, "apply_action_schedules", apply_action_schedules)
|
29
|
-
if batching_strategies and not isinstance(batching_strategies, list):
|
30
|
-
raise TypeError("Expected argument 'batching_strategies' to be a list")
|
31
|
-
pulumi.set(__self__, "batching_strategies", batching_strategies)
|
32
|
-
if collection_type and not isinstance(collection_type, str):
|
33
|
-
raise TypeError("Expected argument 'collection_type' to be a str")
|
34
|
-
pulumi.set(__self__, "collection_type", collection_type)
|
35
|
-
if compartment_id and not isinstance(compartment_id, str):
|
36
|
-
raise TypeError("Expected argument 'compartment_id' to be a str")
|
37
|
-
pulumi.set(__self__, "compartment_id", compartment_id)
|
38
|
-
if defined_tags and not isinstance(defined_tags, dict):
|
39
|
-
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
40
|
-
pulumi.set(__self__, "defined_tags", defined_tags)
|
41
|
-
if diagnostics_collections and not isinstance(diagnostics_collections, list):
|
42
|
-
raise TypeError("Expected argument 'diagnostics_collections' to be a list")
|
43
|
-
pulumi.set(__self__, "diagnostics_collections", diagnostics_collections)
|
44
|
-
if display_name and not isinstance(display_name, str):
|
45
|
-
raise TypeError("Expected argument 'display_name' to be a str")
|
46
|
-
pulumi.set(__self__, "display_name", display_name)
|
47
|
-
if executing_fsu_action_id and not isinstance(executing_fsu_action_id, str):
|
48
|
-
raise TypeError("Expected argument 'executing_fsu_action_id' to be a str")
|
49
|
-
pulumi.set(__self__, "executing_fsu_action_id", executing_fsu_action_id)
|
50
|
-
if freeform_tags and not isinstance(freeform_tags, dict):
|
51
|
-
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
52
|
-
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
53
|
-
if fsu_collection_id and not isinstance(fsu_collection_id, str):
|
54
|
-
raise TypeError("Expected argument 'fsu_collection_id' to be a str")
|
55
|
-
pulumi.set(__self__, "fsu_collection_id", fsu_collection_id)
|
56
|
-
if fsu_cycle_id and not isinstance(fsu_cycle_id, str):
|
57
|
-
raise TypeError("Expected argument 'fsu_cycle_id' to be a str")
|
58
|
-
pulumi.set(__self__, "fsu_cycle_id", fsu_cycle_id)
|
59
|
-
if goal_version_details and not isinstance(goal_version_details, list):
|
60
|
-
raise TypeError("Expected argument 'goal_version_details' to be a list")
|
61
|
-
pulumi.set(__self__, "goal_version_details", goal_version_details)
|
62
|
-
if id and not isinstance(id, str):
|
63
|
-
raise TypeError("Expected argument 'id' to be a str")
|
64
|
-
pulumi.set(__self__, "id", id)
|
65
|
-
if is_ignore_missing_patches and not isinstance(is_ignore_missing_patches, list):
|
66
|
-
raise TypeError("Expected argument 'is_ignore_missing_patches' to be a list")
|
67
|
-
pulumi.set(__self__, "is_ignore_missing_patches", is_ignore_missing_patches)
|
68
|
-
if is_ignore_patches and not isinstance(is_ignore_patches, bool):
|
69
|
-
raise TypeError("Expected argument 'is_ignore_patches' to be a bool")
|
70
|
-
pulumi.set(__self__, "is_ignore_patches", is_ignore_patches)
|
71
|
-
if is_keep_placement and not isinstance(is_keep_placement, bool):
|
72
|
-
raise TypeError("Expected argument 'is_keep_placement' to be a bool")
|
73
|
-
pulumi.set(__self__, "is_keep_placement", is_keep_placement)
|
74
|
-
if last_completed_action and not isinstance(last_completed_action, str):
|
75
|
-
raise TypeError("Expected argument 'last_completed_action' to be a str")
|
76
|
-
pulumi.set(__self__, "last_completed_action", last_completed_action)
|
77
|
-
if lifecycle_details and not isinstance(lifecycle_details, str):
|
78
|
-
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
79
|
-
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
80
|
-
if max_drain_timeout_in_seconds and not isinstance(max_drain_timeout_in_seconds, int):
|
81
|
-
raise TypeError("Expected argument 'max_drain_timeout_in_seconds' to be a int")
|
82
|
-
pulumi.set(__self__, "max_drain_timeout_in_seconds", max_drain_timeout_in_seconds)
|
83
|
-
if next_action_to_executes and not isinstance(next_action_to_executes, list):
|
84
|
-
raise TypeError("Expected argument 'next_action_to_executes' to be a list")
|
85
|
-
pulumi.set(__self__, "next_action_to_executes", next_action_to_executes)
|
86
|
-
if stage_action_schedules and not isinstance(stage_action_schedules, list):
|
87
|
-
raise TypeError("Expected argument 'stage_action_schedules' to be a list")
|
88
|
-
pulumi.set(__self__, "stage_action_schedules", stage_action_schedules)
|
89
|
-
if state and not isinstance(state, str):
|
90
|
-
raise TypeError("Expected argument 'state' to be a str")
|
91
|
-
pulumi.set(__self__, "state", state)
|
92
|
-
if system_tags and not isinstance(system_tags, dict):
|
93
|
-
raise TypeError("Expected argument 'system_tags' to be a dict")
|
94
|
-
pulumi.set(__self__, "system_tags", system_tags)
|
95
|
-
if time_created and not isinstance(time_created, str):
|
96
|
-
raise TypeError("Expected argument 'time_created' to be a str")
|
97
|
-
pulumi.set(__self__, "time_created", time_created)
|
98
|
-
if time_finished and not isinstance(time_finished, str):
|
99
|
-
raise TypeError("Expected argument 'time_finished' to be a str")
|
100
|
-
pulumi.set(__self__, "time_finished", time_finished)
|
101
|
-
if time_updated and not isinstance(time_updated, str):
|
102
|
-
raise TypeError("Expected argument 'time_updated' to be a str")
|
103
|
-
pulumi.set(__self__, "time_updated", time_updated)
|
104
|
-
if type and not isinstance(type, str):
|
105
|
-
raise TypeError("Expected argument 'type' to be a str")
|
106
|
-
pulumi.set(__self__, "type", type)
|
107
|
-
|
108
|
-
@property
|
109
|
-
@pulumi.getter(name="applyActionSchedules")
|
110
|
-
def apply_action_schedules(self) -> Sequence['outputs.GetFsuCycleApplyActionScheduleResult']:
|
111
|
-
return pulumi.get(self, "apply_action_schedules")
|
112
|
-
|
113
|
-
@property
|
114
|
-
@pulumi.getter(name="batchingStrategies")
|
115
|
-
def batching_strategies(self) -> Sequence['outputs.GetFsuCycleBatchingStrategyResult']:
|
116
|
-
return pulumi.get(self, "batching_strategies")
|
117
|
-
|
118
|
-
@property
|
119
|
-
@pulumi.getter(name="collectionType")
|
120
|
-
def collection_type(self) -> str:
|
121
|
-
return pulumi.get(self, "collection_type")
|
122
|
-
|
123
|
-
@property
|
124
|
-
@pulumi.getter(name="compartmentId")
|
125
|
-
def compartment_id(self) -> str:
|
126
|
-
return pulumi.get(self, "compartment_id")
|
127
|
-
|
128
|
-
@property
|
129
|
-
@pulumi.getter(name="definedTags")
|
130
|
-
def defined_tags(self) -> Mapping[str, str]:
|
131
|
-
return pulumi.get(self, "defined_tags")
|
132
|
-
|
133
|
-
@property
|
134
|
-
@pulumi.getter(name="diagnosticsCollections")
|
135
|
-
def diagnostics_collections(self) -> Sequence['outputs.GetFsuCycleDiagnosticsCollectionResult']:
|
136
|
-
return pulumi.get(self, "diagnostics_collections")
|
137
|
-
|
138
|
-
@property
|
139
|
-
@pulumi.getter(name="displayName")
|
140
|
-
def display_name(self) -> str:
|
141
|
-
return pulumi.get(self, "display_name")
|
142
|
-
|
143
|
-
@property
|
144
|
-
@pulumi.getter(name="executingFsuActionId")
|
145
|
-
def executing_fsu_action_id(self) -> str:
|
146
|
-
return pulumi.get(self, "executing_fsu_action_id")
|
147
|
-
|
148
|
-
@property
|
149
|
-
@pulumi.getter(name="freeformTags")
|
150
|
-
def freeform_tags(self) -> Mapping[str, str]:
|
151
|
-
return pulumi.get(self, "freeform_tags")
|
152
|
-
|
153
|
-
@property
|
154
|
-
@pulumi.getter(name="fsuCollectionId")
|
155
|
-
def fsu_collection_id(self) -> str:
|
156
|
-
return pulumi.get(self, "fsu_collection_id")
|
157
|
-
|
158
|
-
@property
|
159
|
-
@pulumi.getter(name="fsuCycleId")
|
160
|
-
def fsu_cycle_id(self) -> str:
|
161
|
-
return pulumi.get(self, "fsu_cycle_id")
|
162
|
-
|
163
|
-
@property
|
164
|
-
@pulumi.getter(name="goalVersionDetails")
|
165
|
-
def goal_version_details(self) -> Sequence['outputs.GetFsuCycleGoalVersionDetailResult']:
|
166
|
-
return pulumi.get(self, "goal_version_details")
|
167
|
-
|
168
|
-
@property
|
169
|
-
@pulumi.getter
|
170
|
-
def id(self) -> str:
|
171
|
-
return pulumi.get(self, "id")
|
172
|
-
|
173
|
-
@property
|
174
|
-
@pulumi.getter(name="isIgnoreMissingPatches")
|
175
|
-
def is_ignore_missing_patches(self) -> Sequence[str]:
|
176
|
-
return pulumi.get(self, "is_ignore_missing_patches")
|
177
|
-
|
178
|
-
@property
|
179
|
-
@pulumi.getter(name="isIgnorePatches")
|
180
|
-
def is_ignore_patches(self) -> bool:
|
181
|
-
return pulumi.get(self, "is_ignore_patches")
|
182
|
-
|
183
|
-
@property
|
184
|
-
@pulumi.getter(name="isKeepPlacement")
|
185
|
-
def is_keep_placement(self) -> bool:
|
186
|
-
return pulumi.get(self, "is_keep_placement")
|
187
|
-
|
188
|
-
@property
|
189
|
-
@pulumi.getter(name="lastCompletedAction")
|
190
|
-
def last_completed_action(self) -> str:
|
191
|
-
return pulumi.get(self, "last_completed_action")
|
192
|
-
|
193
|
-
@property
|
194
|
-
@pulumi.getter(name="lifecycleDetails")
|
195
|
-
def lifecycle_details(self) -> str:
|
196
|
-
return pulumi.get(self, "lifecycle_details")
|
197
|
-
|
198
|
-
@property
|
199
|
-
@pulumi.getter(name="maxDrainTimeoutInSeconds")
|
200
|
-
def max_drain_timeout_in_seconds(self) -> int:
|
201
|
-
return pulumi.get(self, "max_drain_timeout_in_seconds")
|
202
|
-
|
203
|
-
@property
|
204
|
-
@pulumi.getter(name="nextActionToExecutes")
|
205
|
-
def next_action_to_executes(self) -> Sequence['outputs.GetFsuCycleNextActionToExecuteResult']:
|
206
|
-
return pulumi.get(self, "next_action_to_executes")
|
207
|
-
|
208
|
-
@property
|
209
|
-
@pulumi.getter(name="stageActionSchedules")
|
210
|
-
def stage_action_schedules(self) -> Sequence['outputs.GetFsuCycleStageActionScheduleResult']:
|
211
|
-
return pulumi.get(self, "stage_action_schedules")
|
212
|
-
|
213
|
-
@property
|
214
|
-
@pulumi.getter
|
215
|
-
def state(self) -> str:
|
216
|
-
return pulumi.get(self, "state")
|
217
|
-
|
218
|
-
@property
|
219
|
-
@pulumi.getter(name="systemTags")
|
220
|
-
def system_tags(self) -> Mapping[str, str]:
|
221
|
-
return pulumi.get(self, "system_tags")
|
222
|
-
|
223
|
-
@property
|
224
|
-
@pulumi.getter(name="timeCreated")
|
225
|
-
def time_created(self) -> str:
|
226
|
-
return pulumi.get(self, "time_created")
|
227
|
-
|
228
|
-
@property
|
229
|
-
@pulumi.getter(name="timeFinished")
|
230
|
-
def time_finished(self) -> str:
|
231
|
-
return pulumi.get(self, "time_finished")
|
232
|
-
|
233
|
-
@property
|
234
|
-
@pulumi.getter(name="timeUpdated")
|
235
|
-
def time_updated(self) -> str:
|
236
|
-
return pulumi.get(self, "time_updated")
|
237
|
-
|
238
|
-
@property
|
239
|
-
@pulumi.getter
|
240
|
-
def type(self) -> str:
|
241
|
-
return pulumi.get(self, "type")
|
242
|
-
|
243
|
-
|
244
|
-
class AwaitableGetFsuCycleResult(GetFsuCycleResult):
|
245
|
-
# pylint: disable=using-constant-test
|
246
|
-
def __await__(self):
|
247
|
-
if False:
|
248
|
-
yield self
|
249
|
-
return GetFsuCycleResult(
|
250
|
-
apply_action_schedules=self.apply_action_schedules,
|
251
|
-
batching_strategies=self.batching_strategies,
|
252
|
-
collection_type=self.collection_type,
|
253
|
-
compartment_id=self.compartment_id,
|
254
|
-
defined_tags=self.defined_tags,
|
255
|
-
diagnostics_collections=self.diagnostics_collections,
|
256
|
-
display_name=self.display_name,
|
257
|
-
executing_fsu_action_id=self.executing_fsu_action_id,
|
258
|
-
freeform_tags=self.freeform_tags,
|
259
|
-
fsu_collection_id=self.fsu_collection_id,
|
260
|
-
fsu_cycle_id=self.fsu_cycle_id,
|
261
|
-
goal_version_details=self.goal_version_details,
|
262
|
-
id=self.id,
|
263
|
-
is_ignore_missing_patches=self.is_ignore_missing_patches,
|
264
|
-
is_ignore_patches=self.is_ignore_patches,
|
265
|
-
is_keep_placement=self.is_keep_placement,
|
266
|
-
last_completed_action=self.last_completed_action,
|
267
|
-
lifecycle_details=self.lifecycle_details,
|
268
|
-
max_drain_timeout_in_seconds=self.max_drain_timeout_in_seconds,
|
269
|
-
next_action_to_executes=self.next_action_to_executes,
|
270
|
-
stage_action_schedules=self.stage_action_schedules,
|
271
|
-
state=self.state,
|
272
|
-
system_tags=self.system_tags,
|
273
|
-
time_created=self.time_created,
|
274
|
-
time_finished=self.time_finished,
|
275
|
-
time_updated=self.time_updated,
|
276
|
-
type=self.type)
|
277
|
-
|
278
|
-
|
279
|
-
def get_fsu_cycle(fsu_cycle_id: Optional[str] = None,
|
280
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFsuCycleResult:
|
281
|
-
"""
|
282
|
-
Use this data source to access information about an existing resource.
|
283
|
-
"""
|
284
|
-
__args__ = dict()
|
285
|
-
__args__['fsuCycleId'] = fsu_cycle_id
|
286
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
287
|
-
__ret__ = pulumi.runtime.invoke('oci:FleetSoftwareUpdate/getFsuCycle:getFsuCycle', __args__, opts=opts, typ=GetFsuCycleResult).value
|
288
|
-
|
289
|
-
return AwaitableGetFsuCycleResult(
|
290
|
-
apply_action_schedules=pulumi.get(__ret__, 'apply_action_schedules'),
|
291
|
-
batching_strategies=pulumi.get(__ret__, 'batching_strategies'),
|
292
|
-
collection_type=pulumi.get(__ret__, 'collection_type'),
|
293
|
-
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
294
|
-
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
295
|
-
diagnostics_collections=pulumi.get(__ret__, 'diagnostics_collections'),
|
296
|
-
display_name=pulumi.get(__ret__, 'display_name'),
|
297
|
-
executing_fsu_action_id=pulumi.get(__ret__, 'executing_fsu_action_id'),
|
298
|
-
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
299
|
-
fsu_collection_id=pulumi.get(__ret__, 'fsu_collection_id'),
|
300
|
-
fsu_cycle_id=pulumi.get(__ret__, 'fsu_cycle_id'),
|
301
|
-
goal_version_details=pulumi.get(__ret__, 'goal_version_details'),
|
302
|
-
id=pulumi.get(__ret__, 'id'),
|
303
|
-
is_ignore_missing_patches=pulumi.get(__ret__, 'is_ignore_missing_patches'),
|
304
|
-
is_ignore_patches=pulumi.get(__ret__, 'is_ignore_patches'),
|
305
|
-
is_keep_placement=pulumi.get(__ret__, 'is_keep_placement'),
|
306
|
-
last_completed_action=pulumi.get(__ret__, 'last_completed_action'),
|
307
|
-
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
308
|
-
max_drain_timeout_in_seconds=pulumi.get(__ret__, 'max_drain_timeout_in_seconds'),
|
309
|
-
next_action_to_executes=pulumi.get(__ret__, 'next_action_to_executes'),
|
310
|
-
stage_action_schedules=pulumi.get(__ret__, 'stage_action_schedules'),
|
311
|
-
state=pulumi.get(__ret__, 'state'),
|
312
|
-
system_tags=pulumi.get(__ret__, 'system_tags'),
|
313
|
-
time_created=pulumi.get(__ret__, 'time_created'),
|
314
|
-
time_finished=pulumi.get(__ret__, 'time_finished'),
|
315
|
-
time_updated=pulumi.get(__ret__, 'time_updated'),
|
316
|
-
type=pulumi.get(__ret__, 'type'))
|
317
|
-
|
318
|
-
|
319
|
-
@_utilities.lift_output_func(get_fsu_cycle)
|
320
|
-
def get_fsu_cycle_output(fsu_cycle_id: Optional[pulumi.Input[str]] = None,
|
321
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetFsuCycleResult]:
|
322
|
-
"""
|
323
|
-
Use this data source to access information about an existing resource.
|
324
|
-
"""
|
325
|
-
...
|
@@ -1,167 +0,0 @@
|
|
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 pulumi
|
8
|
-
import pulumi.runtime
|
9
|
-
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
|
-
from .. import _utilities
|
11
|
-
from . import outputs
|
12
|
-
from ._inputs import *
|
13
|
-
|
14
|
-
__all__ = [
|
15
|
-
'GetFsuCyclesResult',
|
16
|
-
'AwaitableGetFsuCyclesResult',
|
17
|
-
'get_fsu_cycles',
|
18
|
-
'get_fsu_cycles_output',
|
19
|
-
]
|
20
|
-
|
21
|
-
@pulumi.output_type
|
22
|
-
class GetFsuCyclesResult:
|
23
|
-
"""
|
24
|
-
A collection of values returned by getFsuCycles.
|
25
|
-
"""
|
26
|
-
def __init__(__self__, collection_type=None, compartment_id=None, display_name=None, filters=None, fsu_collection_id=None, fsu_cycle_summary_collections=None, id=None, state=None, target_version=None):
|
27
|
-
if collection_type and not isinstance(collection_type, str):
|
28
|
-
raise TypeError("Expected argument 'collection_type' to be a str")
|
29
|
-
pulumi.set(__self__, "collection_type", collection_type)
|
30
|
-
if compartment_id and not isinstance(compartment_id, str):
|
31
|
-
raise TypeError("Expected argument 'compartment_id' to be a str")
|
32
|
-
pulumi.set(__self__, "compartment_id", compartment_id)
|
33
|
-
if display_name and not isinstance(display_name, str):
|
34
|
-
raise TypeError("Expected argument 'display_name' to be a str")
|
35
|
-
pulumi.set(__self__, "display_name", display_name)
|
36
|
-
if filters and not isinstance(filters, list):
|
37
|
-
raise TypeError("Expected argument 'filters' to be a list")
|
38
|
-
pulumi.set(__self__, "filters", filters)
|
39
|
-
if fsu_collection_id and not isinstance(fsu_collection_id, str):
|
40
|
-
raise TypeError("Expected argument 'fsu_collection_id' to be a str")
|
41
|
-
pulumi.set(__self__, "fsu_collection_id", fsu_collection_id)
|
42
|
-
if fsu_cycle_summary_collections and not isinstance(fsu_cycle_summary_collections, list):
|
43
|
-
raise TypeError("Expected argument 'fsu_cycle_summary_collections' to be a list")
|
44
|
-
pulumi.set(__self__, "fsu_cycle_summary_collections", fsu_cycle_summary_collections)
|
45
|
-
if id and not isinstance(id, str):
|
46
|
-
raise TypeError("Expected argument 'id' to be a str")
|
47
|
-
pulumi.set(__self__, "id", id)
|
48
|
-
if state and not isinstance(state, str):
|
49
|
-
raise TypeError("Expected argument 'state' to be a str")
|
50
|
-
pulumi.set(__self__, "state", state)
|
51
|
-
if target_version and not isinstance(target_version, str):
|
52
|
-
raise TypeError("Expected argument 'target_version' to be a str")
|
53
|
-
pulumi.set(__self__, "target_version", target_version)
|
54
|
-
|
55
|
-
@property
|
56
|
-
@pulumi.getter(name="collectionType")
|
57
|
-
def collection_type(self) -> Optional[str]:
|
58
|
-
return pulumi.get(self, "collection_type")
|
59
|
-
|
60
|
-
@property
|
61
|
-
@pulumi.getter(name="compartmentId")
|
62
|
-
def compartment_id(self) -> str:
|
63
|
-
return pulumi.get(self, "compartment_id")
|
64
|
-
|
65
|
-
@property
|
66
|
-
@pulumi.getter(name="displayName")
|
67
|
-
def display_name(self) -> Optional[str]:
|
68
|
-
return pulumi.get(self, "display_name")
|
69
|
-
|
70
|
-
@property
|
71
|
-
@pulumi.getter
|
72
|
-
def filters(self) -> Optional[Sequence['outputs.GetFsuCyclesFilterResult']]:
|
73
|
-
return pulumi.get(self, "filters")
|
74
|
-
|
75
|
-
@property
|
76
|
-
@pulumi.getter(name="fsuCollectionId")
|
77
|
-
def fsu_collection_id(self) -> Optional[str]:
|
78
|
-
return pulumi.get(self, "fsu_collection_id")
|
79
|
-
|
80
|
-
@property
|
81
|
-
@pulumi.getter(name="fsuCycleSummaryCollections")
|
82
|
-
def fsu_cycle_summary_collections(self) -> Sequence['outputs.GetFsuCyclesFsuCycleSummaryCollectionResult']:
|
83
|
-
return pulumi.get(self, "fsu_cycle_summary_collections")
|
84
|
-
|
85
|
-
@property
|
86
|
-
@pulumi.getter
|
87
|
-
def id(self) -> str:
|
88
|
-
"""
|
89
|
-
The provider-assigned unique ID for this managed resource.
|
90
|
-
"""
|
91
|
-
return pulumi.get(self, "id")
|
92
|
-
|
93
|
-
@property
|
94
|
-
@pulumi.getter
|
95
|
-
def state(self) -> Optional[str]:
|
96
|
-
return pulumi.get(self, "state")
|
97
|
-
|
98
|
-
@property
|
99
|
-
@pulumi.getter(name="targetVersion")
|
100
|
-
def target_version(self) -> Optional[str]:
|
101
|
-
return pulumi.get(self, "target_version")
|
102
|
-
|
103
|
-
|
104
|
-
class AwaitableGetFsuCyclesResult(GetFsuCyclesResult):
|
105
|
-
# pylint: disable=using-constant-test
|
106
|
-
def __await__(self):
|
107
|
-
if False:
|
108
|
-
yield self
|
109
|
-
return GetFsuCyclesResult(
|
110
|
-
collection_type=self.collection_type,
|
111
|
-
compartment_id=self.compartment_id,
|
112
|
-
display_name=self.display_name,
|
113
|
-
filters=self.filters,
|
114
|
-
fsu_collection_id=self.fsu_collection_id,
|
115
|
-
fsu_cycle_summary_collections=self.fsu_cycle_summary_collections,
|
116
|
-
id=self.id,
|
117
|
-
state=self.state,
|
118
|
-
target_version=self.target_version)
|
119
|
-
|
120
|
-
|
121
|
-
def get_fsu_cycles(collection_type: Optional[str] = None,
|
122
|
-
compartment_id: Optional[str] = None,
|
123
|
-
display_name: Optional[str] = None,
|
124
|
-
filters: Optional[Sequence[Union['GetFsuCyclesFilterArgs', 'GetFsuCyclesFilterArgsDict']]] = None,
|
125
|
-
fsu_collection_id: Optional[str] = None,
|
126
|
-
state: Optional[str] = None,
|
127
|
-
target_version: Optional[str] = None,
|
128
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFsuCyclesResult:
|
129
|
-
"""
|
130
|
-
Use this data source to access information about an existing resource.
|
131
|
-
"""
|
132
|
-
__args__ = dict()
|
133
|
-
__args__['collectionType'] = collection_type
|
134
|
-
__args__['compartmentId'] = compartment_id
|
135
|
-
__args__['displayName'] = display_name
|
136
|
-
__args__['filters'] = filters
|
137
|
-
__args__['fsuCollectionId'] = fsu_collection_id
|
138
|
-
__args__['state'] = state
|
139
|
-
__args__['targetVersion'] = target_version
|
140
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
141
|
-
__ret__ = pulumi.runtime.invoke('oci:FleetSoftwareUpdate/getFsuCycles:getFsuCycles', __args__, opts=opts, typ=GetFsuCyclesResult).value
|
142
|
-
|
143
|
-
return AwaitableGetFsuCyclesResult(
|
144
|
-
collection_type=pulumi.get(__ret__, 'collection_type'),
|
145
|
-
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
146
|
-
display_name=pulumi.get(__ret__, 'display_name'),
|
147
|
-
filters=pulumi.get(__ret__, 'filters'),
|
148
|
-
fsu_collection_id=pulumi.get(__ret__, 'fsu_collection_id'),
|
149
|
-
fsu_cycle_summary_collections=pulumi.get(__ret__, 'fsu_cycle_summary_collections'),
|
150
|
-
id=pulumi.get(__ret__, 'id'),
|
151
|
-
state=pulumi.get(__ret__, 'state'),
|
152
|
-
target_version=pulumi.get(__ret__, 'target_version'))
|
153
|
-
|
154
|
-
|
155
|
-
@_utilities.lift_output_func(get_fsu_cycles)
|
156
|
-
def get_fsu_cycles_output(collection_type: Optional[pulumi.Input[Optional[str]]] = None,
|
157
|
-
compartment_id: Optional[pulumi.Input[str]] = None,
|
158
|
-
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
159
|
-
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetFsuCyclesFilterArgs', 'GetFsuCyclesFilterArgsDict']]]]] = None,
|
160
|
-
fsu_collection_id: Optional[pulumi.Input[Optional[str]]] = None,
|
161
|
-
state: Optional[pulumi.Input[Optional[str]]] = None,
|
162
|
-
target_version: Optional[pulumi.Input[Optional[str]]] = None,
|
163
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetFsuCyclesResult]:
|
164
|
-
"""
|
165
|
-
Use this data source to access information about an existing resource.
|
166
|
-
"""
|
167
|
-
...
|