pulumi-oci 2.10.0a1726294433__py3-none-any.whl → 2.11.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.
- pulumi_oci/__init__.py +62 -0
- pulumi_oci/bigdataservice/__init__.py +3 -0
- pulumi_oci/bigdataservice/_inputs.py +66 -0
- pulumi_oci/bigdataservice/bds_instance_os_patch_action.py +136 -2
- pulumi_oci/bigdataservice/bds_instance_resource_principal_configuration.py +524 -0
- pulumi_oci/bigdataservice/get_bds_instance_resource_principal_configuration.py +236 -0
- pulumi_oci/bigdataservice/get_bds_instance_resource_principal_configurations.py +176 -0
- pulumi_oci/bigdataservice/outputs.py +175 -0
- pulumi_oci/capacitymanagement/__init__.py +8 -0
- pulumi_oci/capacitymanagement/_inputs.py +465 -3
- pulumi_oci/capacitymanagement/get_internal_namespace_occ_overviews.py +221 -0
- pulumi_oci/capacitymanagement/get_internal_occ_availability_catalogs.py +7 -7
- pulumi_oci/capacitymanagement/get_internal_occ_handover_resource_block_details.py +150 -0
- pulumi_oci/capacitymanagement/get_internal_occ_handover_resource_blocks.py +247 -0
- pulumi_oci/capacitymanagement/get_namespace_occ_overviews.py +204 -0
- pulumi_oci/capacitymanagement/get_occ_availability_catalog.py +1 -1
- pulumi_oci/capacitymanagement/get_occ_capacity_request.py +15 -2
- pulumi_oci/capacitymanagement/get_occ_capacity_requests.py +25 -5
- pulumi_oci/capacitymanagement/get_occ_customer_group.py +1 -1
- pulumi_oci/capacitymanagement/get_occ_handover_resource_block_details.py +150 -0
- pulumi_oci/capacitymanagement/get_occ_handover_resource_blocks.py +227 -0
- pulumi_oci/capacitymanagement/occ_availability_catalog.py +4 -4
- pulumi_oci/capacitymanagement/occ_capacity_request.py +78 -32
- pulumi_oci/capacitymanagement/occ_customer_group.py +690 -0
- pulumi_oci/capacitymanagement/occ_customer_group_occ_customer.py +412 -0
- pulumi_oci/capacitymanagement/outputs.py +1668 -166
- pulumi_oci/containerengine/__init__.py +1 -0
- pulumi_oci/containerengine/get_cluster.py +327 -0
- pulumi_oci/containerengine/outputs.py +492 -0
- pulumi_oci/fleetsoftwareupdate/__init__.py +15 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +717 -0
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +804 -0
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +1231 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +301 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +196 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +431 -0
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +233 -0
- pulumi_oci/fleetsoftwareupdate/outputs.py +2129 -0
- pulumi_oci/generativeai/dedicated_ai_cluster.py +7 -0
- pulumi_oci/generativeai/get_model.py +3 -0
- pulumi_oci/generativeai/outputs.py +4 -0
- pulumi_oci/globallydistributeddatabase/__init__.py +15 -0
- pulumi_oci/globallydistributeddatabase/_inputs.py +1003 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +300 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +176 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +610 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +176 -0
- pulumi_oci/globallydistributeddatabase/outputs.py +2058 -0
- pulumi_oci/globallydistributeddatabase/private_endpoint.py +742 -0
- pulumi_oci/globallydistributeddatabase/sharded_database.py +1816 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.10.0a1726294433.dist-info → pulumi_oci-2.11.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.10.0a1726294433.dist-info → pulumi_oci-2.11.0.dist-info}/RECORD +55 -25
- {pulumi_oci-2.10.0a1726294433.dist-info → pulumi_oci-2.11.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.10.0a1726294433.dist-info → pulumi_oci-2.11.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,236 @@
|
|
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
|
+
|
12
|
+
__all__ = [
|
13
|
+
'GetBdsInstanceResourcePrincipalConfigurationResult',
|
14
|
+
'AwaitableGetBdsInstanceResourcePrincipalConfigurationResult',
|
15
|
+
'get_bds_instance_resource_principal_configuration',
|
16
|
+
'get_bds_instance_resource_principal_configuration_output',
|
17
|
+
]
|
18
|
+
|
19
|
+
@pulumi.output_type
|
20
|
+
class GetBdsInstanceResourcePrincipalConfigurationResult:
|
21
|
+
"""
|
22
|
+
A collection of values returned by getBdsInstanceResourcePrincipalConfiguration.
|
23
|
+
"""
|
24
|
+
def __init__(__self__, bds_instance_id=None, cluster_admin_password=None, display_name=None, force_refresh_resource_principal_trigger=None, id=None, resource_principal_configuration_id=None, session_token_life_span_duration_in_hours=None, state=None, time_created=None, time_token_expiry=None, time_token_refreshed=None, time_updated=None):
|
25
|
+
if bds_instance_id and not isinstance(bds_instance_id, str):
|
26
|
+
raise TypeError("Expected argument 'bds_instance_id' to be a str")
|
27
|
+
pulumi.set(__self__, "bds_instance_id", bds_instance_id)
|
28
|
+
if cluster_admin_password and not isinstance(cluster_admin_password, str):
|
29
|
+
raise TypeError("Expected argument 'cluster_admin_password' to be a str")
|
30
|
+
pulumi.set(__self__, "cluster_admin_password", cluster_admin_password)
|
31
|
+
if display_name and not isinstance(display_name, str):
|
32
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
33
|
+
pulumi.set(__self__, "display_name", display_name)
|
34
|
+
if force_refresh_resource_principal_trigger and not isinstance(force_refresh_resource_principal_trigger, int):
|
35
|
+
raise TypeError("Expected argument 'force_refresh_resource_principal_trigger' to be a int")
|
36
|
+
pulumi.set(__self__, "force_refresh_resource_principal_trigger", force_refresh_resource_principal_trigger)
|
37
|
+
if id and not isinstance(id, str):
|
38
|
+
raise TypeError("Expected argument 'id' to be a str")
|
39
|
+
pulumi.set(__self__, "id", id)
|
40
|
+
if resource_principal_configuration_id and not isinstance(resource_principal_configuration_id, str):
|
41
|
+
raise TypeError("Expected argument 'resource_principal_configuration_id' to be a str")
|
42
|
+
pulumi.set(__self__, "resource_principal_configuration_id", resource_principal_configuration_id)
|
43
|
+
if session_token_life_span_duration_in_hours and not isinstance(session_token_life_span_duration_in_hours, int):
|
44
|
+
raise TypeError("Expected argument 'session_token_life_span_duration_in_hours' to be a int")
|
45
|
+
pulumi.set(__self__, "session_token_life_span_duration_in_hours", session_token_life_span_duration_in_hours)
|
46
|
+
if state and not isinstance(state, str):
|
47
|
+
raise TypeError("Expected argument 'state' to be a str")
|
48
|
+
pulumi.set(__self__, "state", state)
|
49
|
+
if time_created and not isinstance(time_created, str):
|
50
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
51
|
+
pulumi.set(__self__, "time_created", time_created)
|
52
|
+
if time_token_expiry and not isinstance(time_token_expiry, str):
|
53
|
+
raise TypeError("Expected argument 'time_token_expiry' to be a str")
|
54
|
+
pulumi.set(__self__, "time_token_expiry", time_token_expiry)
|
55
|
+
if time_token_refreshed and not isinstance(time_token_refreshed, str):
|
56
|
+
raise TypeError("Expected argument 'time_token_refreshed' to be a str")
|
57
|
+
pulumi.set(__self__, "time_token_refreshed", time_token_refreshed)
|
58
|
+
if time_updated and not isinstance(time_updated, str):
|
59
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
60
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
61
|
+
|
62
|
+
@property
|
63
|
+
@pulumi.getter(name="bdsInstanceId")
|
64
|
+
def bds_instance_id(self) -> str:
|
65
|
+
"""
|
66
|
+
The OCID of the bdsInstance which is the parent resource id.
|
67
|
+
"""
|
68
|
+
return pulumi.get(self, "bds_instance_id")
|
69
|
+
|
70
|
+
@property
|
71
|
+
@pulumi.getter(name="clusterAdminPassword")
|
72
|
+
def cluster_admin_password(self) -> str:
|
73
|
+
return pulumi.get(self, "cluster_admin_password")
|
74
|
+
|
75
|
+
@property
|
76
|
+
@pulumi.getter(name="displayName")
|
77
|
+
def display_name(self) -> str:
|
78
|
+
"""
|
79
|
+
A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
|
80
|
+
"""
|
81
|
+
return pulumi.get(self, "display_name")
|
82
|
+
|
83
|
+
@property
|
84
|
+
@pulumi.getter(name="forceRefreshResourcePrincipalTrigger")
|
85
|
+
def force_refresh_resource_principal_trigger(self) -> int:
|
86
|
+
return pulumi.get(self, "force_refresh_resource_principal_trigger")
|
87
|
+
|
88
|
+
@property
|
89
|
+
@pulumi.getter
|
90
|
+
def id(self) -> str:
|
91
|
+
"""
|
92
|
+
The id of the ResourcePrincipalConfiguration.
|
93
|
+
"""
|
94
|
+
return pulumi.get(self, "id")
|
95
|
+
|
96
|
+
@property
|
97
|
+
@pulumi.getter(name="resourcePrincipalConfigurationId")
|
98
|
+
def resource_principal_configuration_id(self) -> str:
|
99
|
+
return pulumi.get(self, "resource_principal_configuration_id")
|
100
|
+
|
101
|
+
@property
|
102
|
+
@pulumi.getter(name="sessionTokenLifeSpanDurationInHours")
|
103
|
+
def session_token_life_span_duration_in_hours(self) -> int:
|
104
|
+
"""
|
105
|
+
Life span in hours of each resource principal session token.
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "session_token_life_span_duration_in_hours")
|
108
|
+
|
109
|
+
@property
|
110
|
+
@pulumi.getter
|
111
|
+
def state(self) -> str:
|
112
|
+
"""
|
113
|
+
The state of the ResourcePrincipalConfiguration.
|
114
|
+
"""
|
115
|
+
return pulumi.get(self, "state")
|
116
|
+
|
117
|
+
@property
|
118
|
+
@pulumi.getter(name="timeCreated")
|
119
|
+
def time_created(self) -> str:
|
120
|
+
"""
|
121
|
+
The time the ResourcePrincipalConfiguration was created, shown as an RFC 3339 formatted datetime string.
|
122
|
+
"""
|
123
|
+
return pulumi.get(self, "time_created")
|
124
|
+
|
125
|
+
@property
|
126
|
+
@pulumi.getter(name="timeTokenExpiry")
|
127
|
+
def time_token_expiry(self) -> str:
|
128
|
+
"""
|
129
|
+
the time the resource principal session token will expired, shown as an rfc 3339 formatted datetime string.
|
130
|
+
"""
|
131
|
+
return pulumi.get(self, "time_token_expiry")
|
132
|
+
|
133
|
+
@property
|
134
|
+
@pulumi.getter(name="timeTokenRefreshed")
|
135
|
+
def time_token_refreshed(self) -> str:
|
136
|
+
"""
|
137
|
+
the time the resource principal session token was refreshed, shown as an rfc 3339 formatted datetime string.
|
138
|
+
"""
|
139
|
+
return pulumi.get(self, "time_token_refreshed")
|
140
|
+
|
141
|
+
@property
|
142
|
+
@pulumi.getter(name="timeUpdated")
|
143
|
+
def time_updated(self) -> str:
|
144
|
+
"""
|
145
|
+
The time the ResourcePrincipalConfiguration was updated, shown as an RFC 3339 formatted datetime string.
|
146
|
+
"""
|
147
|
+
return pulumi.get(self, "time_updated")
|
148
|
+
|
149
|
+
|
150
|
+
class AwaitableGetBdsInstanceResourcePrincipalConfigurationResult(GetBdsInstanceResourcePrincipalConfigurationResult):
|
151
|
+
# pylint: disable=using-constant-test
|
152
|
+
def __await__(self):
|
153
|
+
if False:
|
154
|
+
yield self
|
155
|
+
return GetBdsInstanceResourcePrincipalConfigurationResult(
|
156
|
+
bds_instance_id=self.bds_instance_id,
|
157
|
+
cluster_admin_password=self.cluster_admin_password,
|
158
|
+
display_name=self.display_name,
|
159
|
+
force_refresh_resource_principal_trigger=self.force_refresh_resource_principal_trigger,
|
160
|
+
id=self.id,
|
161
|
+
resource_principal_configuration_id=self.resource_principal_configuration_id,
|
162
|
+
session_token_life_span_duration_in_hours=self.session_token_life_span_duration_in_hours,
|
163
|
+
state=self.state,
|
164
|
+
time_created=self.time_created,
|
165
|
+
time_token_expiry=self.time_token_expiry,
|
166
|
+
time_token_refreshed=self.time_token_refreshed,
|
167
|
+
time_updated=self.time_updated)
|
168
|
+
|
169
|
+
|
170
|
+
def get_bds_instance_resource_principal_configuration(bds_instance_id: Optional[str] = None,
|
171
|
+
resource_principal_configuration_id: Optional[str] = None,
|
172
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBdsInstanceResourcePrincipalConfigurationResult:
|
173
|
+
"""
|
174
|
+
This data source provides details about a specific Bds Instance Resource Principal Configuration resource in Oracle Cloud Infrastructure Big Data Service service.
|
175
|
+
|
176
|
+
Returns details of the resourcePrincipalConfiguration identified by the given ID.
|
177
|
+
|
178
|
+
## Example Usage
|
179
|
+
|
180
|
+
```python
|
181
|
+
import pulumi
|
182
|
+
import pulumi_oci as oci
|
183
|
+
|
184
|
+
test_bds_instance_resource_principal_configuration = oci.BigDataService.get_bds_instance_resource_principal_configuration(bds_instance_id=test_bds_instance["id"],
|
185
|
+
resource_principal_configuration_id=test_configuration["id"])
|
186
|
+
```
|
187
|
+
|
188
|
+
|
189
|
+
:param str bds_instance_id: The OCID of the cluster.
|
190
|
+
:param str resource_principal_configuration_id: Unique Oracle-assigned identifier of the ResourcePrincipalConfiguration.
|
191
|
+
"""
|
192
|
+
__args__ = dict()
|
193
|
+
__args__['bdsInstanceId'] = bds_instance_id
|
194
|
+
__args__['resourcePrincipalConfigurationId'] = resource_principal_configuration_id
|
195
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
196
|
+
__ret__ = pulumi.runtime.invoke('oci:BigDataService/getBdsInstanceResourcePrincipalConfiguration:getBdsInstanceResourcePrincipalConfiguration', __args__, opts=opts, typ=GetBdsInstanceResourcePrincipalConfigurationResult).value
|
197
|
+
|
198
|
+
return AwaitableGetBdsInstanceResourcePrincipalConfigurationResult(
|
199
|
+
bds_instance_id=pulumi.get(__ret__, 'bds_instance_id'),
|
200
|
+
cluster_admin_password=pulumi.get(__ret__, 'cluster_admin_password'),
|
201
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
202
|
+
force_refresh_resource_principal_trigger=pulumi.get(__ret__, 'force_refresh_resource_principal_trigger'),
|
203
|
+
id=pulumi.get(__ret__, 'id'),
|
204
|
+
resource_principal_configuration_id=pulumi.get(__ret__, 'resource_principal_configuration_id'),
|
205
|
+
session_token_life_span_duration_in_hours=pulumi.get(__ret__, 'session_token_life_span_duration_in_hours'),
|
206
|
+
state=pulumi.get(__ret__, 'state'),
|
207
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
208
|
+
time_token_expiry=pulumi.get(__ret__, 'time_token_expiry'),
|
209
|
+
time_token_refreshed=pulumi.get(__ret__, 'time_token_refreshed'),
|
210
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
211
|
+
|
212
|
+
|
213
|
+
@_utilities.lift_output_func(get_bds_instance_resource_principal_configuration)
|
214
|
+
def get_bds_instance_resource_principal_configuration_output(bds_instance_id: Optional[pulumi.Input[str]] = None,
|
215
|
+
resource_principal_configuration_id: Optional[pulumi.Input[str]] = None,
|
216
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBdsInstanceResourcePrincipalConfigurationResult]:
|
217
|
+
"""
|
218
|
+
This data source provides details about a specific Bds Instance Resource Principal Configuration resource in Oracle Cloud Infrastructure Big Data Service service.
|
219
|
+
|
220
|
+
Returns details of the resourcePrincipalConfiguration identified by the given ID.
|
221
|
+
|
222
|
+
## Example Usage
|
223
|
+
|
224
|
+
```python
|
225
|
+
import pulumi
|
226
|
+
import pulumi_oci as oci
|
227
|
+
|
228
|
+
test_bds_instance_resource_principal_configuration = oci.BigDataService.get_bds_instance_resource_principal_configuration(bds_instance_id=test_bds_instance["id"],
|
229
|
+
resource_principal_configuration_id=test_configuration["id"])
|
230
|
+
```
|
231
|
+
|
232
|
+
|
233
|
+
:param str bds_instance_id: The OCID of the cluster.
|
234
|
+
:param str resource_principal_configuration_id: Unique Oracle-assigned identifier of the ResourcePrincipalConfiguration.
|
235
|
+
"""
|
236
|
+
...
|
@@ -0,0 +1,176 @@
|
|
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
|
+
'GetBdsInstanceResourcePrincipalConfigurationsResult',
|
16
|
+
'AwaitableGetBdsInstanceResourcePrincipalConfigurationsResult',
|
17
|
+
'get_bds_instance_resource_principal_configurations',
|
18
|
+
'get_bds_instance_resource_principal_configurations_output',
|
19
|
+
]
|
20
|
+
|
21
|
+
@pulumi.output_type
|
22
|
+
class GetBdsInstanceResourcePrincipalConfigurationsResult:
|
23
|
+
"""
|
24
|
+
A collection of values returned by getBdsInstanceResourcePrincipalConfigurations.
|
25
|
+
"""
|
26
|
+
def __init__(__self__, bds_instance_id=None, display_name=None, filters=None, id=None, resource_principal_configurations=None, state=None):
|
27
|
+
if bds_instance_id and not isinstance(bds_instance_id, str):
|
28
|
+
raise TypeError("Expected argument 'bds_instance_id' to be a str")
|
29
|
+
pulumi.set(__self__, "bds_instance_id", bds_instance_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 id and not isinstance(id, str):
|
37
|
+
raise TypeError("Expected argument 'id' to be a str")
|
38
|
+
pulumi.set(__self__, "id", id)
|
39
|
+
if resource_principal_configurations and not isinstance(resource_principal_configurations, list):
|
40
|
+
raise TypeError("Expected argument 'resource_principal_configurations' to be a list")
|
41
|
+
pulumi.set(__self__, "resource_principal_configurations", resource_principal_configurations)
|
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
|
+
|
46
|
+
@property
|
47
|
+
@pulumi.getter(name="bdsInstanceId")
|
48
|
+
def bds_instance_id(self) -> str:
|
49
|
+
"""
|
50
|
+
The OCID of the bdsInstance which is the parent resource id.
|
51
|
+
"""
|
52
|
+
return pulumi.get(self, "bds_instance_id")
|
53
|
+
|
54
|
+
@property
|
55
|
+
@pulumi.getter(name="displayName")
|
56
|
+
def display_name(self) -> Optional[str]:
|
57
|
+
"""
|
58
|
+
A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
|
59
|
+
"""
|
60
|
+
return pulumi.get(self, "display_name")
|
61
|
+
|
62
|
+
@property
|
63
|
+
@pulumi.getter
|
64
|
+
def filters(self) -> Optional[Sequence['outputs.GetBdsInstanceResourcePrincipalConfigurationsFilterResult']]:
|
65
|
+
return pulumi.get(self, "filters")
|
66
|
+
|
67
|
+
@property
|
68
|
+
@pulumi.getter
|
69
|
+
def id(self) -> str:
|
70
|
+
"""
|
71
|
+
The provider-assigned unique ID for this managed resource.
|
72
|
+
"""
|
73
|
+
return pulumi.get(self, "id")
|
74
|
+
|
75
|
+
@property
|
76
|
+
@pulumi.getter(name="resourcePrincipalConfigurations")
|
77
|
+
def resource_principal_configurations(self) -> Sequence['outputs.GetBdsInstanceResourcePrincipalConfigurationsResourcePrincipalConfigurationResult']:
|
78
|
+
"""
|
79
|
+
The list of resource_principal_configurations.
|
80
|
+
"""
|
81
|
+
return pulumi.get(self, "resource_principal_configurations")
|
82
|
+
|
83
|
+
@property
|
84
|
+
@pulumi.getter
|
85
|
+
def state(self) -> Optional[str]:
|
86
|
+
"""
|
87
|
+
The state of the ResourcePrincipalConfiguration.
|
88
|
+
"""
|
89
|
+
return pulumi.get(self, "state")
|
90
|
+
|
91
|
+
|
92
|
+
class AwaitableGetBdsInstanceResourcePrincipalConfigurationsResult(GetBdsInstanceResourcePrincipalConfigurationsResult):
|
93
|
+
# pylint: disable=using-constant-test
|
94
|
+
def __await__(self):
|
95
|
+
if False:
|
96
|
+
yield self
|
97
|
+
return GetBdsInstanceResourcePrincipalConfigurationsResult(
|
98
|
+
bds_instance_id=self.bds_instance_id,
|
99
|
+
display_name=self.display_name,
|
100
|
+
filters=self.filters,
|
101
|
+
id=self.id,
|
102
|
+
resource_principal_configurations=self.resource_principal_configurations,
|
103
|
+
state=self.state)
|
104
|
+
|
105
|
+
|
106
|
+
def get_bds_instance_resource_principal_configurations(bds_instance_id: Optional[str] = None,
|
107
|
+
display_name: Optional[str] = None,
|
108
|
+
filters: Optional[Sequence[Union['GetBdsInstanceResourcePrincipalConfigurationsFilterArgs', 'GetBdsInstanceResourcePrincipalConfigurationsFilterArgsDict']]] = None,
|
109
|
+
state: Optional[str] = None,
|
110
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBdsInstanceResourcePrincipalConfigurationsResult:
|
111
|
+
"""
|
112
|
+
This data source provides the list of Bds Instance Resource Principal Configurations in Oracle Cloud Infrastructure Big Data Service service.
|
113
|
+
|
114
|
+
Returns information about the ResourcePrincipalConfiguration.
|
115
|
+
|
116
|
+
## Example Usage
|
117
|
+
|
118
|
+
```python
|
119
|
+
import pulumi
|
120
|
+
import pulumi_oci as oci
|
121
|
+
|
122
|
+
test_bds_instance_resource_principal_configurations = oci.BigDataService.get_bds_instance_resource_principal_configurations(bds_instance_id=test_bds_instance["id"],
|
123
|
+
display_name=bds_instance_resource_principal_configuration_display_name,
|
124
|
+
state=bds_instance_resource_principal_configuration_state)
|
125
|
+
```
|
126
|
+
|
127
|
+
|
128
|
+
:param str bds_instance_id: The OCID of the cluster.
|
129
|
+
:param str display_name: A filter to return only resources that match the entire display name given.
|
130
|
+
:param str state: The state of the ResourcePrincipalConfiguration.
|
131
|
+
"""
|
132
|
+
__args__ = dict()
|
133
|
+
__args__['bdsInstanceId'] = bds_instance_id
|
134
|
+
__args__['displayName'] = display_name
|
135
|
+
__args__['filters'] = filters
|
136
|
+
__args__['state'] = state
|
137
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
138
|
+
__ret__ = pulumi.runtime.invoke('oci:BigDataService/getBdsInstanceResourcePrincipalConfigurations:getBdsInstanceResourcePrincipalConfigurations', __args__, opts=opts, typ=GetBdsInstanceResourcePrincipalConfigurationsResult).value
|
139
|
+
|
140
|
+
return AwaitableGetBdsInstanceResourcePrincipalConfigurationsResult(
|
141
|
+
bds_instance_id=pulumi.get(__ret__, 'bds_instance_id'),
|
142
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
143
|
+
filters=pulumi.get(__ret__, 'filters'),
|
144
|
+
id=pulumi.get(__ret__, 'id'),
|
145
|
+
resource_principal_configurations=pulumi.get(__ret__, 'resource_principal_configurations'),
|
146
|
+
state=pulumi.get(__ret__, 'state'))
|
147
|
+
|
148
|
+
|
149
|
+
@_utilities.lift_output_func(get_bds_instance_resource_principal_configurations)
|
150
|
+
def get_bds_instance_resource_principal_configurations_output(bds_instance_id: Optional[pulumi.Input[str]] = None,
|
151
|
+
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
152
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetBdsInstanceResourcePrincipalConfigurationsFilterArgs', 'GetBdsInstanceResourcePrincipalConfigurationsFilterArgsDict']]]]] = None,
|
153
|
+
state: Optional[pulumi.Input[Optional[str]]] = None,
|
154
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBdsInstanceResourcePrincipalConfigurationsResult]:
|
155
|
+
"""
|
156
|
+
This data source provides the list of Bds Instance Resource Principal Configurations in Oracle Cloud Infrastructure Big Data Service service.
|
157
|
+
|
158
|
+
Returns information about the ResourcePrincipalConfiguration.
|
159
|
+
|
160
|
+
## Example Usage
|
161
|
+
|
162
|
+
```python
|
163
|
+
import pulumi
|
164
|
+
import pulumi_oci as oci
|
165
|
+
|
166
|
+
test_bds_instance_resource_principal_configurations = oci.BigDataService.get_bds_instance_resource_principal_configurations(bds_instance_id=test_bds_instance["id"],
|
167
|
+
display_name=bds_instance_resource_principal_configuration_display_name,
|
168
|
+
state=bds_instance_resource_principal_configuration_state)
|
169
|
+
```
|
170
|
+
|
171
|
+
|
172
|
+
:param str bds_instance_id: The OCID of the cluster.
|
173
|
+
:param str display_name: A filter to return only resources that match the entire display name given.
|
174
|
+
:param str state: The state of the ResourcePrincipalConfiguration.
|
175
|
+
"""
|
176
|
+
...
|
@@ -120,6 +120,8 @@ __all__ = [
|
|
120
120
|
'GetBdsInstancePatchHistoriesPatchHistoryResult',
|
121
121
|
'GetBdsInstancePatchesFilterResult',
|
122
122
|
'GetBdsInstancePatchesPatchResult',
|
123
|
+
'GetBdsInstanceResourcePrincipalConfigurationsFilterResult',
|
124
|
+
'GetBdsInstanceResourcePrincipalConfigurationsResourcePrincipalConfigurationResult',
|
123
125
|
'GetBdsInstanceUtilNodeResult',
|
124
126
|
'GetBdsInstanceUtilNodeShapeConfigResult',
|
125
127
|
'GetBdsInstanceWorkerNodeResult',
|
@@ -2894,6 +2896,14 @@ class BdsInstanceOsPatchActionPatchingConfig(dict):
|
|
2894
2896
|
tolerance_threshold_per_domain: Optional[int] = None,
|
2895
2897
|
wait_time_between_batch_in_seconds: Optional[int] = None,
|
2896
2898
|
wait_time_between_domain_in_seconds: Optional[int] = None):
|
2899
|
+
"""
|
2900
|
+
:param str patching_config_strategy: Type of strategy used for detailed patching configuration
|
2901
|
+
:param int batch_size: How many nodes to be patched in each iteration.
|
2902
|
+
:param int tolerance_threshold_per_batch: Acceptable number of failed-to-be-patched nodes in each batch. The maximum number of failed-to-patch nodes cannot exceed 20% of the number of nodes.
|
2903
|
+
:param int tolerance_threshold_per_domain: Acceptable number of failed-to-be-patched nodes in each domain. The maximum number of failed-to-patch nodes cannot exceed 20% of the number of nodes.
|
2904
|
+
:param int wait_time_between_batch_in_seconds: The wait time between batches in seconds.
|
2905
|
+
:param int wait_time_between_domain_in_seconds: The wait time between AD/FD in seconds.
|
2906
|
+
"""
|
2897
2907
|
pulumi.set(__self__, "patching_config_strategy", patching_config_strategy)
|
2898
2908
|
if batch_size is not None:
|
2899
2909
|
pulumi.set(__self__, "batch_size", batch_size)
|
@@ -2909,31 +2919,49 @@ class BdsInstanceOsPatchActionPatchingConfig(dict):
|
|
2909
2919
|
@property
|
2910
2920
|
@pulumi.getter(name="patchingConfigStrategy")
|
2911
2921
|
def patching_config_strategy(self) -> str:
|
2922
|
+
"""
|
2923
|
+
Type of strategy used for detailed patching configuration
|
2924
|
+
"""
|
2912
2925
|
return pulumi.get(self, "patching_config_strategy")
|
2913
2926
|
|
2914
2927
|
@property
|
2915
2928
|
@pulumi.getter(name="batchSize")
|
2916
2929
|
def batch_size(self) -> Optional[int]:
|
2930
|
+
"""
|
2931
|
+
How many nodes to be patched in each iteration.
|
2932
|
+
"""
|
2917
2933
|
return pulumi.get(self, "batch_size")
|
2918
2934
|
|
2919
2935
|
@property
|
2920
2936
|
@pulumi.getter(name="toleranceThresholdPerBatch")
|
2921
2937
|
def tolerance_threshold_per_batch(self) -> Optional[int]:
|
2938
|
+
"""
|
2939
|
+
Acceptable number of failed-to-be-patched nodes in each batch. The maximum number of failed-to-patch nodes cannot exceed 20% of the number of nodes.
|
2940
|
+
"""
|
2922
2941
|
return pulumi.get(self, "tolerance_threshold_per_batch")
|
2923
2942
|
|
2924
2943
|
@property
|
2925
2944
|
@pulumi.getter(name="toleranceThresholdPerDomain")
|
2926
2945
|
def tolerance_threshold_per_domain(self) -> Optional[int]:
|
2946
|
+
"""
|
2947
|
+
Acceptable number of failed-to-be-patched nodes in each domain. The maximum number of failed-to-patch nodes cannot exceed 20% of the number of nodes.
|
2948
|
+
"""
|
2927
2949
|
return pulumi.get(self, "tolerance_threshold_per_domain")
|
2928
2950
|
|
2929
2951
|
@property
|
2930
2952
|
@pulumi.getter(name="waitTimeBetweenBatchInSeconds")
|
2931
2953
|
def wait_time_between_batch_in_seconds(self) -> Optional[int]:
|
2954
|
+
"""
|
2955
|
+
The wait time between batches in seconds.
|
2956
|
+
"""
|
2932
2957
|
return pulumi.get(self, "wait_time_between_batch_in_seconds")
|
2933
2958
|
|
2934
2959
|
@property
|
2935
2960
|
@pulumi.getter(name="waitTimeBetweenDomainInSeconds")
|
2936
2961
|
def wait_time_between_domain_in_seconds(self) -> Optional[int]:
|
2962
|
+
"""
|
2963
|
+
The wait time between AD/FD in seconds.
|
2964
|
+
"""
|
2937
2965
|
return pulumi.get(self, "wait_time_between_domain_in_seconds")
|
2938
2966
|
|
2939
2967
|
|
@@ -6351,6 +6379,153 @@ class GetBdsInstancePatchesPatchResult(dict):
|
|
6351
6379
|
return pulumi.get(self, "version")
|
6352
6380
|
|
6353
6381
|
|
6382
|
+
@pulumi.output_type
|
6383
|
+
class GetBdsInstanceResourcePrincipalConfigurationsFilterResult(dict):
|
6384
|
+
def __init__(__self__, *,
|
6385
|
+
name: str,
|
6386
|
+
values: Sequence[str],
|
6387
|
+
regex: Optional[bool] = None):
|
6388
|
+
pulumi.set(__self__, "name", name)
|
6389
|
+
pulumi.set(__self__, "values", values)
|
6390
|
+
if regex is not None:
|
6391
|
+
pulumi.set(__self__, "regex", regex)
|
6392
|
+
|
6393
|
+
@property
|
6394
|
+
@pulumi.getter
|
6395
|
+
def name(self) -> str:
|
6396
|
+
return pulumi.get(self, "name")
|
6397
|
+
|
6398
|
+
@property
|
6399
|
+
@pulumi.getter
|
6400
|
+
def values(self) -> Sequence[str]:
|
6401
|
+
return pulumi.get(self, "values")
|
6402
|
+
|
6403
|
+
@property
|
6404
|
+
@pulumi.getter
|
6405
|
+
def regex(self) -> Optional[bool]:
|
6406
|
+
return pulumi.get(self, "regex")
|
6407
|
+
|
6408
|
+
|
6409
|
+
@pulumi.output_type
|
6410
|
+
class GetBdsInstanceResourcePrincipalConfigurationsResourcePrincipalConfigurationResult(dict):
|
6411
|
+
def __init__(__self__, *,
|
6412
|
+
bds_instance_id: str,
|
6413
|
+
cluster_admin_password: str,
|
6414
|
+
display_name: str,
|
6415
|
+
force_refresh_resource_principal_trigger: int,
|
6416
|
+
id: str,
|
6417
|
+
session_token_life_span_duration_in_hours: int,
|
6418
|
+
state: str,
|
6419
|
+
time_created: str,
|
6420
|
+
time_token_expiry: str,
|
6421
|
+
time_token_refreshed: str,
|
6422
|
+
time_updated: str):
|
6423
|
+
"""
|
6424
|
+
:param str bds_instance_id: The OCID of the cluster.
|
6425
|
+
:param str display_name: A filter to return only resources that match the entire display name given.
|
6426
|
+
:param str id: The id of the ResourcePrincipalConfiguration.
|
6427
|
+
:param int session_token_life_span_duration_in_hours: Life span in hours of each resource principal session token.
|
6428
|
+
:param str state: The state of the ResourcePrincipalConfiguration.
|
6429
|
+
:param str time_created: The time the ResourcePrincipalConfiguration was created, shown as an RFC 3339 formatted datetime string.
|
6430
|
+
:param str time_token_expiry: the time the resource principal session token will expired, shown as an rfc 3339 formatted datetime string.
|
6431
|
+
:param str time_token_refreshed: the time the resource principal session token was refreshed, shown as an rfc 3339 formatted datetime string.
|
6432
|
+
:param str time_updated: The time the ResourcePrincipalConfiguration was updated, shown as an RFC 3339 formatted datetime string.
|
6433
|
+
"""
|
6434
|
+
pulumi.set(__self__, "bds_instance_id", bds_instance_id)
|
6435
|
+
pulumi.set(__self__, "cluster_admin_password", cluster_admin_password)
|
6436
|
+
pulumi.set(__self__, "display_name", display_name)
|
6437
|
+
pulumi.set(__self__, "force_refresh_resource_principal_trigger", force_refresh_resource_principal_trigger)
|
6438
|
+
pulumi.set(__self__, "id", id)
|
6439
|
+
pulumi.set(__self__, "session_token_life_span_duration_in_hours", session_token_life_span_duration_in_hours)
|
6440
|
+
pulumi.set(__self__, "state", state)
|
6441
|
+
pulumi.set(__self__, "time_created", time_created)
|
6442
|
+
pulumi.set(__self__, "time_token_expiry", time_token_expiry)
|
6443
|
+
pulumi.set(__self__, "time_token_refreshed", time_token_refreshed)
|
6444
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
6445
|
+
|
6446
|
+
@property
|
6447
|
+
@pulumi.getter(name="bdsInstanceId")
|
6448
|
+
def bds_instance_id(self) -> str:
|
6449
|
+
"""
|
6450
|
+
The OCID of the cluster.
|
6451
|
+
"""
|
6452
|
+
return pulumi.get(self, "bds_instance_id")
|
6453
|
+
|
6454
|
+
@property
|
6455
|
+
@pulumi.getter(name="clusterAdminPassword")
|
6456
|
+
def cluster_admin_password(self) -> str:
|
6457
|
+
return pulumi.get(self, "cluster_admin_password")
|
6458
|
+
|
6459
|
+
@property
|
6460
|
+
@pulumi.getter(name="displayName")
|
6461
|
+
def display_name(self) -> str:
|
6462
|
+
"""
|
6463
|
+
A filter to return only resources that match the entire display name given.
|
6464
|
+
"""
|
6465
|
+
return pulumi.get(self, "display_name")
|
6466
|
+
|
6467
|
+
@property
|
6468
|
+
@pulumi.getter(name="forceRefreshResourcePrincipalTrigger")
|
6469
|
+
def force_refresh_resource_principal_trigger(self) -> int:
|
6470
|
+
return pulumi.get(self, "force_refresh_resource_principal_trigger")
|
6471
|
+
|
6472
|
+
@property
|
6473
|
+
@pulumi.getter
|
6474
|
+
def id(self) -> str:
|
6475
|
+
"""
|
6476
|
+
The id of the ResourcePrincipalConfiguration.
|
6477
|
+
"""
|
6478
|
+
return pulumi.get(self, "id")
|
6479
|
+
|
6480
|
+
@property
|
6481
|
+
@pulumi.getter(name="sessionTokenLifeSpanDurationInHours")
|
6482
|
+
def session_token_life_span_duration_in_hours(self) -> int:
|
6483
|
+
"""
|
6484
|
+
Life span in hours of each resource principal session token.
|
6485
|
+
"""
|
6486
|
+
return pulumi.get(self, "session_token_life_span_duration_in_hours")
|
6487
|
+
|
6488
|
+
@property
|
6489
|
+
@pulumi.getter
|
6490
|
+
def state(self) -> str:
|
6491
|
+
"""
|
6492
|
+
The state of the ResourcePrincipalConfiguration.
|
6493
|
+
"""
|
6494
|
+
return pulumi.get(self, "state")
|
6495
|
+
|
6496
|
+
@property
|
6497
|
+
@pulumi.getter(name="timeCreated")
|
6498
|
+
def time_created(self) -> str:
|
6499
|
+
"""
|
6500
|
+
The time the ResourcePrincipalConfiguration was created, shown as an RFC 3339 formatted datetime string.
|
6501
|
+
"""
|
6502
|
+
return pulumi.get(self, "time_created")
|
6503
|
+
|
6504
|
+
@property
|
6505
|
+
@pulumi.getter(name="timeTokenExpiry")
|
6506
|
+
def time_token_expiry(self) -> str:
|
6507
|
+
"""
|
6508
|
+
the time the resource principal session token will expired, shown as an rfc 3339 formatted datetime string.
|
6509
|
+
"""
|
6510
|
+
return pulumi.get(self, "time_token_expiry")
|
6511
|
+
|
6512
|
+
@property
|
6513
|
+
@pulumi.getter(name="timeTokenRefreshed")
|
6514
|
+
def time_token_refreshed(self) -> str:
|
6515
|
+
"""
|
6516
|
+
the time the resource principal session token was refreshed, shown as an rfc 3339 formatted datetime string.
|
6517
|
+
"""
|
6518
|
+
return pulumi.get(self, "time_token_refreshed")
|
6519
|
+
|
6520
|
+
@property
|
6521
|
+
@pulumi.getter(name="timeUpdated")
|
6522
|
+
def time_updated(self) -> str:
|
6523
|
+
"""
|
6524
|
+
The time the ResourcePrincipalConfiguration was updated, shown as an RFC 3339 formatted datetime string.
|
6525
|
+
"""
|
6526
|
+
return pulumi.get(self, "time_updated")
|
6527
|
+
|
6528
|
+
|
6354
6529
|
@pulumi.output_type
|
6355
6530
|
class GetBdsInstanceUtilNodeResult(dict):
|
6356
6531
|
def __init__(__self__, *,
|
@@ -5,7 +5,11 @@
|
|
5
5
|
from .. import _utilities
|
6
6
|
import typing
|
7
7
|
# Export this package's modules as members:
|
8
|
+
from .get_internal_namespace_occ_overviews import *
|
8
9
|
from .get_internal_occ_availability_catalogs import *
|
10
|
+
from .get_internal_occ_handover_resource_block_details import *
|
11
|
+
from .get_internal_occ_handover_resource_blocks import *
|
12
|
+
from .get_namespace_occ_overviews import *
|
9
13
|
from .get_occ_availability_catalog import *
|
10
14
|
from .get_occ_availability_catalog_content import *
|
11
15
|
from .get_occ_availability_catalog_occ_availabilities import *
|
@@ -14,7 +18,11 @@ from .get_occ_capacity_request import *
|
|
14
18
|
from .get_occ_capacity_requests import *
|
15
19
|
from .get_occ_customer_group import *
|
16
20
|
from .get_occ_customer_groups import *
|
21
|
+
from .get_occ_handover_resource_block_details import *
|
22
|
+
from .get_occ_handover_resource_blocks import *
|
17
23
|
from .occ_availability_catalog import *
|
18
24
|
from .occ_capacity_request import *
|
25
|
+
from .occ_customer_group import *
|
26
|
+
from .occ_customer_group_occ_customer import *
|
19
27
|
from ._inputs import *
|
20
28
|
from . import outputs
|