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,225 +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
|
-
'GetFsuCollectionResult',
|
15
|
-
'AwaitableGetFsuCollectionResult',
|
16
|
-
'get_fsu_collection',
|
17
|
-
'get_fsu_collection_output',
|
18
|
-
]
|
19
|
-
|
20
|
-
@pulumi.output_type
|
21
|
-
class GetFsuCollectionResult:
|
22
|
-
"""
|
23
|
-
A collection of values returned by getFsuCollection.
|
24
|
-
"""
|
25
|
-
def __init__(__self__, active_fsu_cycles=None, compartment_id=None, defined_tags=None, display_name=None, fleet_discoveries=None, freeform_tags=None, fsu_collection_id=None, id=None, lifecycle_details=None, service_type=None, source_major_version=None, state=None, system_tags=None, target_count=None, time_created=None, time_updated=None, type=None):
|
26
|
-
if active_fsu_cycles and not isinstance(active_fsu_cycles, list):
|
27
|
-
raise TypeError("Expected argument 'active_fsu_cycles' to be a list")
|
28
|
-
pulumi.set(__self__, "active_fsu_cycles", active_fsu_cycles)
|
29
|
-
if compartment_id and not isinstance(compartment_id, str):
|
30
|
-
raise TypeError("Expected argument 'compartment_id' to be a str")
|
31
|
-
pulumi.set(__self__, "compartment_id", compartment_id)
|
32
|
-
if defined_tags and not isinstance(defined_tags, dict):
|
33
|
-
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
34
|
-
pulumi.set(__self__, "defined_tags", defined_tags)
|
35
|
-
if display_name and not isinstance(display_name, str):
|
36
|
-
raise TypeError("Expected argument 'display_name' to be a str")
|
37
|
-
pulumi.set(__self__, "display_name", display_name)
|
38
|
-
if fleet_discoveries and not isinstance(fleet_discoveries, list):
|
39
|
-
raise TypeError("Expected argument 'fleet_discoveries' to be a list")
|
40
|
-
pulumi.set(__self__, "fleet_discoveries", fleet_discoveries)
|
41
|
-
if freeform_tags and not isinstance(freeform_tags, dict):
|
42
|
-
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
43
|
-
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
44
|
-
if fsu_collection_id and not isinstance(fsu_collection_id, str):
|
45
|
-
raise TypeError("Expected argument 'fsu_collection_id' to be a str")
|
46
|
-
pulumi.set(__self__, "fsu_collection_id", fsu_collection_id)
|
47
|
-
if id and not isinstance(id, str):
|
48
|
-
raise TypeError("Expected argument 'id' to be a str")
|
49
|
-
pulumi.set(__self__, "id", id)
|
50
|
-
if lifecycle_details and not isinstance(lifecycle_details, str):
|
51
|
-
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
52
|
-
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
53
|
-
if service_type and not isinstance(service_type, str):
|
54
|
-
raise TypeError("Expected argument 'service_type' to be a str")
|
55
|
-
pulumi.set(__self__, "service_type", service_type)
|
56
|
-
if source_major_version and not isinstance(source_major_version, str):
|
57
|
-
raise TypeError("Expected argument 'source_major_version' to be a str")
|
58
|
-
pulumi.set(__self__, "source_major_version", source_major_version)
|
59
|
-
if state and not isinstance(state, str):
|
60
|
-
raise TypeError("Expected argument 'state' to be a str")
|
61
|
-
pulumi.set(__self__, "state", state)
|
62
|
-
if system_tags and not isinstance(system_tags, dict):
|
63
|
-
raise TypeError("Expected argument 'system_tags' to be a dict")
|
64
|
-
pulumi.set(__self__, "system_tags", system_tags)
|
65
|
-
if target_count and not isinstance(target_count, int):
|
66
|
-
raise TypeError("Expected argument 'target_count' to be a int")
|
67
|
-
pulumi.set(__self__, "target_count", target_count)
|
68
|
-
if time_created and not isinstance(time_created, str):
|
69
|
-
raise TypeError("Expected argument 'time_created' to be a str")
|
70
|
-
pulumi.set(__self__, "time_created", time_created)
|
71
|
-
if time_updated and not isinstance(time_updated, str):
|
72
|
-
raise TypeError("Expected argument 'time_updated' to be a str")
|
73
|
-
pulumi.set(__self__, "time_updated", time_updated)
|
74
|
-
if type and not isinstance(type, str):
|
75
|
-
raise TypeError("Expected argument 'type' to be a str")
|
76
|
-
pulumi.set(__self__, "type", type)
|
77
|
-
|
78
|
-
@property
|
79
|
-
@pulumi.getter(name="activeFsuCycles")
|
80
|
-
def active_fsu_cycles(self) -> Sequence['outputs.GetFsuCollectionActiveFsuCycleResult']:
|
81
|
-
return pulumi.get(self, "active_fsu_cycles")
|
82
|
-
|
83
|
-
@property
|
84
|
-
@pulumi.getter(name="compartmentId")
|
85
|
-
def compartment_id(self) -> str:
|
86
|
-
return pulumi.get(self, "compartment_id")
|
87
|
-
|
88
|
-
@property
|
89
|
-
@pulumi.getter(name="definedTags")
|
90
|
-
def defined_tags(self) -> Mapping[str, str]:
|
91
|
-
return pulumi.get(self, "defined_tags")
|
92
|
-
|
93
|
-
@property
|
94
|
-
@pulumi.getter(name="displayName")
|
95
|
-
def display_name(self) -> str:
|
96
|
-
return pulumi.get(self, "display_name")
|
97
|
-
|
98
|
-
@property
|
99
|
-
@pulumi.getter(name="fleetDiscoveries")
|
100
|
-
def fleet_discoveries(self) -> Sequence['outputs.GetFsuCollectionFleetDiscoveryResult']:
|
101
|
-
return pulumi.get(self, "fleet_discoveries")
|
102
|
-
|
103
|
-
@property
|
104
|
-
@pulumi.getter(name="freeformTags")
|
105
|
-
def freeform_tags(self) -> Mapping[str, str]:
|
106
|
-
return pulumi.get(self, "freeform_tags")
|
107
|
-
|
108
|
-
@property
|
109
|
-
@pulumi.getter(name="fsuCollectionId")
|
110
|
-
def fsu_collection_id(self) -> str:
|
111
|
-
return pulumi.get(self, "fsu_collection_id")
|
112
|
-
|
113
|
-
@property
|
114
|
-
@pulumi.getter
|
115
|
-
def id(self) -> str:
|
116
|
-
return pulumi.get(self, "id")
|
117
|
-
|
118
|
-
@property
|
119
|
-
@pulumi.getter(name="lifecycleDetails")
|
120
|
-
def lifecycle_details(self) -> str:
|
121
|
-
return pulumi.get(self, "lifecycle_details")
|
122
|
-
|
123
|
-
@property
|
124
|
-
@pulumi.getter(name="serviceType")
|
125
|
-
def service_type(self) -> str:
|
126
|
-
return pulumi.get(self, "service_type")
|
127
|
-
|
128
|
-
@property
|
129
|
-
@pulumi.getter(name="sourceMajorVersion")
|
130
|
-
def source_major_version(self) -> str:
|
131
|
-
return pulumi.get(self, "source_major_version")
|
132
|
-
|
133
|
-
@property
|
134
|
-
@pulumi.getter
|
135
|
-
def state(self) -> str:
|
136
|
-
return pulumi.get(self, "state")
|
137
|
-
|
138
|
-
@property
|
139
|
-
@pulumi.getter(name="systemTags")
|
140
|
-
def system_tags(self) -> Mapping[str, str]:
|
141
|
-
return pulumi.get(self, "system_tags")
|
142
|
-
|
143
|
-
@property
|
144
|
-
@pulumi.getter(name="targetCount")
|
145
|
-
def target_count(self) -> int:
|
146
|
-
return pulumi.get(self, "target_count")
|
147
|
-
|
148
|
-
@property
|
149
|
-
@pulumi.getter(name="timeCreated")
|
150
|
-
def time_created(self) -> str:
|
151
|
-
return pulumi.get(self, "time_created")
|
152
|
-
|
153
|
-
@property
|
154
|
-
@pulumi.getter(name="timeUpdated")
|
155
|
-
def time_updated(self) -> str:
|
156
|
-
return pulumi.get(self, "time_updated")
|
157
|
-
|
158
|
-
@property
|
159
|
-
@pulumi.getter
|
160
|
-
def type(self) -> str:
|
161
|
-
return pulumi.get(self, "type")
|
162
|
-
|
163
|
-
|
164
|
-
class AwaitableGetFsuCollectionResult(GetFsuCollectionResult):
|
165
|
-
# pylint: disable=using-constant-test
|
166
|
-
def __await__(self):
|
167
|
-
if False:
|
168
|
-
yield self
|
169
|
-
return GetFsuCollectionResult(
|
170
|
-
active_fsu_cycles=self.active_fsu_cycles,
|
171
|
-
compartment_id=self.compartment_id,
|
172
|
-
defined_tags=self.defined_tags,
|
173
|
-
display_name=self.display_name,
|
174
|
-
fleet_discoveries=self.fleet_discoveries,
|
175
|
-
freeform_tags=self.freeform_tags,
|
176
|
-
fsu_collection_id=self.fsu_collection_id,
|
177
|
-
id=self.id,
|
178
|
-
lifecycle_details=self.lifecycle_details,
|
179
|
-
service_type=self.service_type,
|
180
|
-
source_major_version=self.source_major_version,
|
181
|
-
state=self.state,
|
182
|
-
system_tags=self.system_tags,
|
183
|
-
target_count=self.target_count,
|
184
|
-
time_created=self.time_created,
|
185
|
-
time_updated=self.time_updated,
|
186
|
-
type=self.type)
|
187
|
-
|
188
|
-
|
189
|
-
def get_fsu_collection(fsu_collection_id: Optional[str] = None,
|
190
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFsuCollectionResult:
|
191
|
-
"""
|
192
|
-
Use this data source to access information about an existing resource.
|
193
|
-
"""
|
194
|
-
__args__ = dict()
|
195
|
-
__args__['fsuCollectionId'] = fsu_collection_id
|
196
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
197
|
-
__ret__ = pulumi.runtime.invoke('oci:FleetSoftwareUpdate/getFsuCollection:getFsuCollection', __args__, opts=opts, typ=GetFsuCollectionResult).value
|
198
|
-
|
199
|
-
return AwaitableGetFsuCollectionResult(
|
200
|
-
active_fsu_cycles=pulumi.get(__ret__, 'active_fsu_cycles'),
|
201
|
-
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
202
|
-
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
203
|
-
display_name=pulumi.get(__ret__, 'display_name'),
|
204
|
-
fleet_discoveries=pulumi.get(__ret__, 'fleet_discoveries'),
|
205
|
-
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
206
|
-
fsu_collection_id=pulumi.get(__ret__, 'fsu_collection_id'),
|
207
|
-
id=pulumi.get(__ret__, 'id'),
|
208
|
-
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
209
|
-
service_type=pulumi.get(__ret__, 'service_type'),
|
210
|
-
source_major_version=pulumi.get(__ret__, 'source_major_version'),
|
211
|
-
state=pulumi.get(__ret__, 'state'),
|
212
|
-
system_tags=pulumi.get(__ret__, 'system_tags'),
|
213
|
-
target_count=pulumi.get(__ret__, 'target_count'),
|
214
|
-
time_created=pulumi.get(__ret__, 'time_created'),
|
215
|
-
time_updated=pulumi.get(__ret__, 'time_updated'),
|
216
|
-
type=pulumi.get(__ret__, 'type'))
|
217
|
-
|
218
|
-
|
219
|
-
@_utilities.lift_output_func(get_fsu_collection)
|
220
|
-
def get_fsu_collection_output(fsu_collection_id: Optional[pulumi.Input[str]] = None,
|
221
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetFsuCollectionResult]:
|
222
|
-
"""
|
223
|
-
Use this data source to access information about an existing resource.
|
224
|
-
"""
|
225
|
-
...
|
@@ -1,141 +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
|
-
'GetFsuCollectionsResult',
|
16
|
-
'AwaitableGetFsuCollectionsResult',
|
17
|
-
'get_fsu_collections',
|
18
|
-
'get_fsu_collections_output',
|
19
|
-
]
|
20
|
-
|
21
|
-
@pulumi.output_type
|
22
|
-
class GetFsuCollectionsResult:
|
23
|
-
"""
|
24
|
-
A collection of values returned by getFsuCollections.
|
25
|
-
"""
|
26
|
-
def __init__(__self__, compartment_id=None, display_name=None, filters=None, fsu_collection_summary_collections=None, id=None, state=None, type=None):
|
27
|
-
if compartment_id and not isinstance(compartment_id, str):
|
28
|
-
raise TypeError("Expected argument 'compartment_id' to be a str")
|
29
|
-
pulumi.set(__self__, "compartment_id", compartment_id)
|
30
|
-
if display_name and not isinstance(display_name, str):
|
31
|
-
raise TypeError("Expected argument 'display_name' to be a str")
|
32
|
-
pulumi.set(__self__, "display_name", display_name)
|
33
|
-
if filters and not isinstance(filters, list):
|
34
|
-
raise TypeError("Expected argument 'filters' to be a list")
|
35
|
-
pulumi.set(__self__, "filters", filters)
|
36
|
-
if fsu_collection_summary_collections and not isinstance(fsu_collection_summary_collections, list):
|
37
|
-
raise TypeError("Expected argument 'fsu_collection_summary_collections' to be a list")
|
38
|
-
pulumi.set(__self__, "fsu_collection_summary_collections", fsu_collection_summary_collections)
|
39
|
-
if id and not isinstance(id, str):
|
40
|
-
raise TypeError("Expected argument 'id' to be a str")
|
41
|
-
pulumi.set(__self__, "id", id)
|
42
|
-
if state and not isinstance(state, str):
|
43
|
-
raise TypeError("Expected argument 'state' to be a str")
|
44
|
-
pulumi.set(__self__, "state", state)
|
45
|
-
if type and not isinstance(type, str):
|
46
|
-
raise TypeError("Expected argument 'type' to be a str")
|
47
|
-
pulumi.set(__self__, "type", type)
|
48
|
-
|
49
|
-
@property
|
50
|
-
@pulumi.getter(name="compartmentId")
|
51
|
-
def compartment_id(self) -> str:
|
52
|
-
return pulumi.get(self, "compartment_id")
|
53
|
-
|
54
|
-
@property
|
55
|
-
@pulumi.getter(name="displayName")
|
56
|
-
def display_name(self) -> Optional[str]:
|
57
|
-
return pulumi.get(self, "display_name")
|
58
|
-
|
59
|
-
@property
|
60
|
-
@pulumi.getter
|
61
|
-
def filters(self) -> Optional[Sequence['outputs.GetFsuCollectionsFilterResult']]:
|
62
|
-
return pulumi.get(self, "filters")
|
63
|
-
|
64
|
-
@property
|
65
|
-
@pulumi.getter(name="fsuCollectionSummaryCollections")
|
66
|
-
def fsu_collection_summary_collections(self) -> Sequence['outputs.GetFsuCollectionsFsuCollectionSummaryCollectionResult']:
|
67
|
-
return pulumi.get(self, "fsu_collection_summary_collections")
|
68
|
-
|
69
|
-
@property
|
70
|
-
@pulumi.getter
|
71
|
-
def id(self) -> str:
|
72
|
-
"""
|
73
|
-
The provider-assigned unique ID for this managed resource.
|
74
|
-
"""
|
75
|
-
return pulumi.get(self, "id")
|
76
|
-
|
77
|
-
@property
|
78
|
-
@pulumi.getter
|
79
|
-
def state(self) -> Optional[str]:
|
80
|
-
return pulumi.get(self, "state")
|
81
|
-
|
82
|
-
@property
|
83
|
-
@pulumi.getter
|
84
|
-
def type(self) -> Optional[str]:
|
85
|
-
return pulumi.get(self, "type")
|
86
|
-
|
87
|
-
|
88
|
-
class AwaitableGetFsuCollectionsResult(GetFsuCollectionsResult):
|
89
|
-
# pylint: disable=using-constant-test
|
90
|
-
def __await__(self):
|
91
|
-
if False:
|
92
|
-
yield self
|
93
|
-
return GetFsuCollectionsResult(
|
94
|
-
compartment_id=self.compartment_id,
|
95
|
-
display_name=self.display_name,
|
96
|
-
filters=self.filters,
|
97
|
-
fsu_collection_summary_collections=self.fsu_collection_summary_collections,
|
98
|
-
id=self.id,
|
99
|
-
state=self.state,
|
100
|
-
type=self.type)
|
101
|
-
|
102
|
-
|
103
|
-
def get_fsu_collections(compartment_id: Optional[str] = None,
|
104
|
-
display_name: Optional[str] = None,
|
105
|
-
filters: Optional[Sequence[Union['GetFsuCollectionsFilterArgs', 'GetFsuCollectionsFilterArgsDict']]] = None,
|
106
|
-
state: Optional[str] = None,
|
107
|
-
type: Optional[str] = None,
|
108
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFsuCollectionsResult:
|
109
|
-
"""
|
110
|
-
Use this data source to access information about an existing resource.
|
111
|
-
"""
|
112
|
-
__args__ = dict()
|
113
|
-
__args__['compartmentId'] = compartment_id
|
114
|
-
__args__['displayName'] = display_name
|
115
|
-
__args__['filters'] = filters
|
116
|
-
__args__['state'] = state
|
117
|
-
__args__['type'] = type
|
118
|
-
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
119
|
-
__ret__ = pulumi.runtime.invoke('oci:FleetSoftwareUpdate/getFsuCollections:getFsuCollections', __args__, opts=opts, typ=GetFsuCollectionsResult).value
|
120
|
-
|
121
|
-
return AwaitableGetFsuCollectionsResult(
|
122
|
-
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
123
|
-
display_name=pulumi.get(__ret__, 'display_name'),
|
124
|
-
filters=pulumi.get(__ret__, 'filters'),
|
125
|
-
fsu_collection_summary_collections=pulumi.get(__ret__, 'fsu_collection_summary_collections'),
|
126
|
-
id=pulumi.get(__ret__, 'id'),
|
127
|
-
state=pulumi.get(__ret__, 'state'),
|
128
|
-
type=pulumi.get(__ret__, 'type'))
|
129
|
-
|
130
|
-
|
131
|
-
@_utilities.lift_output_func(get_fsu_collections)
|
132
|
-
def get_fsu_collections_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
133
|
-
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
134
|
-
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetFsuCollectionsFilterArgs', 'GetFsuCollectionsFilterArgsDict']]]]] = None,
|
135
|
-
state: Optional[pulumi.Input[Optional[str]]] = None,
|
136
|
-
type: Optional[pulumi.Input[Optional[str]]] = None,
|
137
|
-
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetFsuCollectionsResult]:
|
138
|
-
"""
|
139
|
-
Use this data source to access information about an existing resource.
|
140
|
-
"""
|
141
|
-
...
|