pulumi-oci 2.8.0a1724220787__py3-none-any.whl → 2.9.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 +86 -38
- pulumi_oci/analytics/_inputs.py +4 -4
- pulumi_oci/analytics/analytics_instance.py +199 -25
- pulumi_oci/analytics/get_analytics_instance.py +51 -2
- pulumi_oci/analytics/get_analytics_instances.py +1 -1
- pulumi_oci/analytics/outputs.py +52 -12
- 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/get_maintenance_run.py +14 -1
- pulumi_oci/database/maintenance_run.py +56 -7
- pulumi_oci/database/outputs.py +196 -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/disasterrecovery/_inputs.py +66 -2
- pulumi_oci/disasterrecovery/dr_protection_group.py +8 -0
- pulumi_oci/disasterrecovery/get_dr_plan_executions.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +150 -10
- 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/integration/get_integration_instance.py +25 -2
- pulumi_oci/integration/integration_instance.py +88 -0
- pulumi_oci/integration/outputs.py +24 -6
- 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 +225 -2
- pulumi_oci/mysql/get_mysql_backup.py +1 -1
- pulumi_oci/mysql/get_mysql_db_system.py +27 -1
- pulumi_oci/mysql/mysql_backup.py +4 -4
- pulumi_oci/mysql/mysql_db_system.py +108 -0
- pulumi_oci/mysql/outputs.py +569 -8
- 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/redis/__init__.py +1 -0
- pulumi_oci/redis/_inputs.py +40 -0
- pulumi_oci/redis/get_redis_cluster.py +47 -21
- pulumi_oci/redis/get_redis_cluster_nodes.py +156 -0
- pulumi_oci/redis/get_redis_clusters.py +8 -8
- pulumi_oci/redis/outputs.py +160 -28
- pulumi_oci/redis/redis_cluster.py +177 -79
- pulumi_oci/waf/_inputs.py +29 -16
- pulumi_oci/waf/outputs.py +33 -10
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/RECORD +127 -108
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.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.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,213 @@
|
|
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
|
+
'GetDelegationControlsResult',
|
16
|
+
'AwaitableGetDelegationControlsResult',
|
17
|
+
'get_delegation_controls',
|
18
|
+
'get_delegation_controls_output',
|
19
|
+
]
|
20
|
+
|
21
|
+
@pulumi.output_type
|
22
|
+
class GetDelegationControlsResult:
|
23
|
+
"""
|
24
|
+
A collection of values returned by getDelegationControls.
|
25
|
+
"""
|
26
|
+
def __init__(__self__, compartment_id=None, delegation_control_summary_collections=None, display_name=None, filters=None, id=None, resource_id=None, resource_type=None, state=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 delegation_control_summary_collections and not isinstance(delegation_control_summary_collections, list):
|
31
|
+
raise TypeError("Expected argument 'delegation_control_summary_collections' to be a list")
|
32
|
+
pulumi.set(__self__, "delegation_control_summary_collections", delegation_control_summary_collections)
|
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 id and not isinstance(id, str):
|
40
|
+
raise TypeError("Expected argument 'id' to be a str")
|
41
|
+
pulumi.set(__self__, "id", id)
|
42
|
+
if resource_id and not isinstance(resource_id, str):
|
43
|
+
raise TypeError("Expected argument 'resource_id' to be a str")
|
44
|
+
pulumi.set(__self__, "resource_id", resource_id)
|
45
|
+
if resource_type and not isinstance(resource_type, str):
|
46
|
+
raise TypeError("Expected argument 'resource_type' to be a str")
|
47
|
+
pulumi.set(__self__, "resource_type", resource_type)
|
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
|
+
|
52
|
+
@property
|
53
|
+
@pulumi.getter(name="compartmentId")
|
54
|
+
def compartment_id(self) -> str:
|
55
|
+
"""
|
56
|
+
The OCID of the compartment that contains the Delegation Control.
|
57
|
+
"""
|
58
|
+
return pulumi.get(self, "compartment_id")
|
59
|
+
|
60
|
+
@property
|
61
|
+
@pulumi.getter(name="delegationControlSummaryCollections")
|
62
|
+
def delegation_control_summary_collections(self) -> Sequence['outputs.GetDelegationControlsDelegationControlSummaryCollectionResult']:
|
63
|
+
"""
|
64
|
+
The list of delegation_control_summary_collection.
|
65
|
+
"""
|
66
|
+
return pulumi.get(self, "delegation_control_summary_collections")
|
67
|
+
|
68
|
+
@property
|
69
|
+
@pulumi.getter(name="displayName")
|
70
|
+
def display_name(self) -> Optional[str]:
|
71
|
+
"""
|
72
|
+
Name of the Delegation Control. The name does not need to be unique.
|
73
|
+
"""
|
74
|
+
return pulumi.get(self, "display_name")
|
75
|
+
|
76
|
+
@property
|
77
|
+
@pulumi.getter
|
78
|
+
def filters(self) -> Optional[Sequence['outputs.GetDelegationControlsFilterResult']]:
|
79
|
+
return pulumi.get(self, "filters")
|
80
|
+
|
81
|
+
@property
|
82
|
+
@pulumi.getter
|
83
|
+
def id(self) -> str:
|
84
|
+
"""
|
85
|
+
The provider-assigned unique ID for this managed resource.
|
86
|
+
"""
|
87
|
+
return pulumi.get(self, "id")
|
88
|
+
|
89
|
+
@property
|
90
|
+
@pulumi.getter(name="resourceId")
|
91
|
+
def resource_id(self) -> Optional[str]:
|
92
|
+
return pulumi.get(self, "resource_id")
|
93
|
+
|
94
|
+
@property
|
95
|
+
@pulumi.getter(name="resourceType")
|
96
|
+
def resource_type(self) -> Optional[str]:
|
97
|
+
"""
|
98
|
+
Resource type for which the Delegation Control is applicable to.
|
99
|
+
"""
|
100
|
+
return pulumi.get(self, "resource_type")
|
101
|
+
|
102
|
+
@property
|
103
|
+
@pulumi.getter
|
104
|
+
def state(self) -> Optional[str]:
|
105
|
+
"""
|
106
|
+
The current lifecycle state of the Delegation Control.
|
107
|
+
"""
|
108
|
+
return pulumi.get(self, "state")
|
109
|
+
|
110
|
+
|
111
|
+
class AwaitableGetDelegationControlsResult(GetDelegationControlsResult):
|
112
|
+
# pylint: disable=using-constant-test
|
113
|
+
def __await__(self):
|
114
|
+
if False:
|
115
|
+
yield self
|
116
|
+
return GetDelegationControlsResult(
|
117
|
+
compartment_id=self.compartment_id,
|
118
|
+
delegation_control_summary_collections=self.delegation_control_summary_collections,
|
119
|
+
display_name=self.display_name,
|
120
|
+
filters=self.filters,
|
121
|
+
id=self.id,
|
122
|
+
resource_id=self.resource_id,
|
123
|
+
resource_type=self.resource_type,
|
124
|
+
state=self.state)
|
125
|
+
|
126
|
+
|
127
|
+
def get_delegation_controls(compartment_id: Optional[str] = None,
|
128
|
+
display_name: Optional[str] = None,
|
129
|
+
filters: Optional[Sequence[Union['GetDelegationControlsFilterArgs', 'GetDelegationControlsFilterArgsDict']]] = None,
|
130
|
+
resource_id: Optional[str] = None,
|
131
|
+
resource_type: Optional[str] = None,
|
132
|
+
state: Optional[str] = None,
|
133
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDelegationControlsResult:
|
134
|
+
"""
|
135
|
+
This data source provides the list of Delegation Controls in Oracle Cloud Infrastructure Delegate Access Control service.
|
136
|
+
|
137
|
+
Lists the Delegation Controls in the compartment.
|
138
|
+
|
139
|
+
## Example Usage
|
140
|
+
|
141
|
+
```python
|
142
|
+
import pulumi
|
143
|
+
import pulumi_oci as oci
|
144
|
+
|
145
|
+
test_delegation_controls = oci.DelegateAccessControl.get_delegation_controls(compartment_id=compartment_id,
|
146
|
+
display_name=delegation_control_display_name,
|
147
|
+
resource_id=test_resource["id"],
|
148
|
+
resource_type=delegation_control_resource_type,
|
149
|
+
state=delegation_control_state)
|
150
|
+
```
|
151
|
+
|
152
|
+
|
153
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
154
|
+
:param str display_name: A filter to return Delegation Control resources that match the given display name.
|
155
|
+
:param str resource_id: A filter to return Delegation Control resources that match the given resource ID.
|
156
|
+
:param str resource_type: A filter to return only resources that match the given resource type.
|
157
|
+
:param str state: A filter to return only Delegation Control resources whose lifecycleState matches the given Delegation Control lifecycle state.
|
158
|
+
"""
|
159
|
+
__args__ = dict()
|
160
|
+
__args__['compartmentId'] = compartment_id
|
161
|
+
__args__['displayName'] = display_name
|
162
|
+
__args__['filters'] = filters
|
163
|
+
__args__['resourceId'] = resource_id
|
164
|
+
__args__['resourceType'] = resource_type
|
165
|
+
__args__['state'] = state
|
166
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
167
|
+
__ret__ = pulumi.runtime.invoke('oci:DelegateAccessControl/getDelegationControls:getDelegationControls', __args__, opts=opts, typ=GetDelegationControlsResult).value
|
168
|
+
|
169
|
+
return AwaitableGetDelegationControlsResult(
|
170
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
171
|
+
delegation_control_summary_collections=pulumi.get(__ret__, 'delegation_control_summary_collections'),
|
172
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
173
|
+
filters=pulumi.get(__ret__, 'filters'),
|
174
|
+
id=pulumi.get(__ret__, 'id'),
|
175
|
+
resource_id=pulumi.get(__ret__, 'resource_id'),
|
176
|
+
resource_type=pulumi.get(__ret__, 'resource_type'),
|
177
|
+
state=pulumi.get(__ret__, 'state'))
|
178
|
+
|
179
|
+
|
180
|
+
@_utilities.lift_output_func(get_delegation_controls)
|
181
|
+
def get_delegation_controls_output(compartment_id: Optional[pulumi.Input[str]] = None,
|
182
|
+
display_name: Optional[pulumi.Input[Optional[str]]] = None,
|
183
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetDelegationControlsFilterArgs', 'GetDelegationControlsFilterArgsDict']]]]] = None,
|
184
|
+
resource_id: Optional[pulumi.Input[Optional[str]]] = None,
|
185
|
+
resource_type: Optional[pulumi.Input[Optional[str]]] = None,
|
186
|
+
state: Optional[pulumi.Input[Optional[str]]] = None,
|
187
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDelegationControlsResult]:
|
188
|
+
"""
|
189
|
+
This data source provides the list of Delegation Controls in Oracle Cloud Infrastructure Delegate Access Control service.
|
190
|
+
|
191
|
+
Lists the Delegation Controls in the compartment.
|
192
|
+
|
193
|
+
## Example Usage
|
194
|
+
|
195
|
+
```python
|
196
|
+
import pulumi
|
197
|
+
import pulumi_oci as oci
|
198
|
+
|
199
|
+
test_delegation_controls = oci.DelegateAccessControl.get_delegation_controls(compartment_id=compartment_id,
|
200
|
+
display_name=delegation_control_display_name,
|
201
|
+
resource_id=test_resource["id"],
|
202
|
+
resource_type=delegation_control_resource_type,
|
203
|
+
state=delegation_control_state)
|
204
|
+
```
|
205
|
+
|
206
|
+
|
207
|
+
:param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
208
|
+
:param str display_name: A filter to return Delegation Control resources that match the given display name.
|
209
|
+
:param str resource_id: A filter to return Delegation Control resources that match the given resource ID.
|
210
|
+
:param str resource_type: A filter to return only resources that match the given resource type.
|
211
|
+
:param str state: A filter to return only Delegation Control resources whose lifecycleState matches the given Delegation Control lifecycle state.
|
212
|
+
"""
|
213
|
+
...
|
@@ -10,24 +10,27 @@ from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
10
|
from .. import _utilities
|
11
11
|
|
12
12
|
__all__ = [
|
13
|
-
'
|
14
|
-
'
|
15
|
-
'
|
16
|
-
'
|
13
|
+
'GetDelegationSubscriptionResult',
|
14
|
+
'AwaitableGetDelegationSubscriptionResult',
|
15
|
+
'get_delegation_subscription',
|
16
|
+
'get_delegation_subscription_output',
|
17
17
|
]
|
18
18
|
|
19
19
|
@pulumi.output_type
|
20
|
-
class
|
20
|
+
class GetDelegationSubscriptionResult:
|
21
21
|
"""
|
22
|
-
A collection of values returned by
|
22
|
+
A collection of values returned by getDelegationSubscription.
|
23
23
|
"""
|
24
|
-
def __init__(__self__, compartment_id=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, lifecycle_state_details=None,
|
24
|
+
def __init__(__self__, compartment_id=None, defined_tags=None, delegation_subscription_id=None, description=None, display_name=None, freeform_tags=None, id=None, lifecycle_state_details=None, service_provider_id=None, state=None, subscribed_service_type=None, system_tags=None, time_created=None, time_updated=None):
|
25
25
|
if compartment_id and not isinstance(compartment_id, str):
|
26
26
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
27
27
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
28
28
|
if defined_tags and not isinstance(defined_tags, dict):
|
29
29
|
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
30
30
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
31
|
+
if delegation_subscription_id and not isinstance(delegation_subscription_id, str):
|
32
|
+
raise TypeError("Expected argument 'delegation_subscription_id' to be a str")
|
33
|
+
pulumi.set(__self__, "delegation_subscription_id", delegation_subscription_id)
|
31
34
|
if description and not isinstance(description, str):
|
32
35
|
raise TypeError("Expected argument 'description' to be a str")
|
33
36
|
pulumi.set(__self__, "description", description)
|
@@ -43,24 +46,15 @@ class GetPrivateEndpointResult:
|
|
43
46
|
if lifecycle_state_details and not isinstance(lifecycle_state_details, str):
|
44
47
|
raise TypeError("Expected argument 'lifecycle_state_details' to be a str")
|
45
48
|
pulumi.set(__self__, "lifecycle_state_details", lifecycle_state_details)
|
46
|
-
if
|
47
|
-
raise TypeError("Expected argument '
|
48
|
-
pulumi.set(__self__, "
|
49
|
-
if private_endpoint_id and not isinstance(private_endpoint_id, str):
|
50
|
-
raise TypeError("Expected argument 'private_endpoint_id' to be a str")
|
51
|
-
pulumi.set(__self__, "private_endpoint_id", private_endpoint_id)
|
52
|
-
if private_ip and not isinstance(private_ip, str):
|
53
|
-
raise TypeError("Expected argument 'private_ip' to be a str")
|
54
|
-
pulumi.set(__self__, "private_ip", private_ip)
|
55
|
-
if sharded_databases and not isinstance(sharded_databases, list):
|
56
|
-
raise TypeError("Expected argument 'sharded_databases' to be a list")
|
57
|
-
pulumi.set(__self__, "sharded_databases", sharded_databases)
|
49
|
+
if service_provider_id and not isinstance(service_provider_id, str):
|
50
|
+
raise TypeError("Expected argument 'service_provider_id' to be a str")
|
51
|
+
pulumi.set(__self__, "service_provider_id", service_provider_id)
|
58
52
|
if state and not isinstance(state, str):
|
59
53
|
raise TypeError("Expected argument 'state' to be a str")
|
60
54
|
pulumi.set(__self__, "state", state)
|
61
|
-
if
|
62
|
-
raise TypeError("Expected argument '
|
63
|
-
pulumi.set(__self__, "
|
55
|
+
if subscribed_service_type and not isinstance(subscribed_service_type, str):
|
56
|
+
raise TypeError("Expected argument 'subscribed_service_type' to be a str")
|
57
|
+
pulumi.set(__self__, "subscribed_service_type", subscribed_service_type)
|
64
58
|
if system_tags and not isinstance(system_tags, dict):
|
65
59
|
raise TypeError("Expected argument 'system_tags' to be a dict")
|
66
60
|
pulumi.set(__self__, "system_tags", system_tags)
|
@@ -70,15 +64,12 @@ class GetPrivateEndpointResult:
|
|
70
64
|
if time_updated and not isinstance(time_updated, str):
|
71
65
|
raise TypeError("Expected argument 'time_updated' to be a str")
|
72
66
|
pulumi.set(__self__, "time_updated", time_updated)
|
73
|
-
if vcn_id and not isinstance(vcn_id, str):
|
74
|
-
raise TypeError("Expected argument 'vcn_id' to be a str")
|
75
|
-
pulumi.set(__self__, "vcn_id", vcn_id)
|
76
67
|
|
77
68
|
@property
|
78
69
|
@pulumi.getter(name="compartmentId")
|
79
70
|
def compartment_id(self) -> str:
|
80
71
|
"""
|
81
|
-
|
72
|
+
The OCID of the compartment that contains the Delegation Subscription.
|
82
73
|
"""
|
83
74
|
return pulumi.get(self, "compartment_id")
|
84
75
|
|
@@ -86,15 +77,20 @@ class GetPrivateEndpointResult:
|
|
86
77
|
@pulumi.getter(name="definedTags")
|
87
78
|
def defined_tags(self) -> Mapping[str, str]:
|
88
79
|
"""
|
89
|
-
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"
|
80
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
90
81
|
"""
|
91
82
|
return pulumi.get(self, "defined_tags")
|
92
83
|
|
84
|
+
@property
|
85
|
+
@pulumi.getter(name="delegationSubscriptionId")
|
86
|
+
def delegation_subscription_id(self) -> str:
|
87
|
+
return pulumi.get(self, "delegation_subscription_id")
|
88
|
+
|
93
89
|
@property
|
94
90
|
@pulumi.getter
|
95
91
|
def description(self) -> str:
|
96
92
|
"""
|
97
|
-
|
93
|
+
Description of the Delegation Subscription.
|
98
94
|
"""
|
99
95
|
return pulumi.get(self, "description")
|
100
96
|
|
@@ -102,7 +98,7 @@ class GetPrivateEndpointResult:
|
|
102
98
|
@pulumi.getter(name="displayName")
|
103
99
|
def display_name(self) -> str:
|
104
100
|
"""
|
105
|
-
|
101
|
+
Display name
|
106
102
|
"""
|
107
103
|
return pulumi.get(self, "display_name")
|
108
104
|
|
@@ -110,7 +106,7 @@ class GetPrivateEndpointResult:
|
|
110
106
|
@pulumi.getter(name="freeformTags")
|
111
107
|
def freeform_tags(self) -> Mapping[str, str]:
|
112
108
|
"""
|
113
|
-
|
109
|
+
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
114
110
|
"""
|
115
111
|
return pulumi.get(self, "freeform_tags")
|
116
112
|
|
@@ -118,7 +114,7 @@ class GetPrivateEndpointResult:
|
|
118
114
|
@pulumi.getter
|
119
115
|
def id(self) -> str:
|
120
116
|
"""
|
121
|
-
|
117
|
+
Unique identifier for the Delegation Subscription.
|
122
118
|
"""
|
123
119
|
return pulumi.get(self, "id")
|
124
120
|
|
@@ -126,60 +122,39 @@ class GetPrivateEndpointResult:
|
|
126
122
|
@pulumi.getter(name="lifecycleStateDetails")
|
127
123
|
def lifecycle_state_details(self) -> str:
|
128
124
|
"""
|
129
|
-
|
125
|
+
Description of the current lifecycle state in more detail.
|
130
126
|
"""
|
131
127
|
return pulumi.get(self, "lifecycle_state_details")
|
132
128
|
|
133
129
|
@property
|
134
|
-
@pulumi.getter(name="
|
135
|
-
def
|
136
|
-
"""
|
137
|
-
The OCIDs of the network security groups that the private endpoint belongs to.
|
138
|
-
"""
|
139
|
-
return pulumi.get(self, "nsg_ids")
|
140
|
-
|
141
|
-
@property
|
142
|
-
@pulumi.getter(name="privateEndpointId")
|
143
|
-
def private_endpoint_id(self) -> str:
|
144
|
-
return pulumi.get(self, "private_endpoint_id")
|
145
|
-
|
146
|
-
@property
|
147
|
-
@pulumi.getter(name="privateIp")
|
148
|
-
def private_ip(self) -> str:
|
130
|
+
@pulumi.getter(name="serviceProviderId")
|
131
|
+
def service_provider_id(self) -> str:
|
149
132
|
"""
|
150
|
-
|
133
|
+
Unique identifier of the Service Provider.
|
151
134
|
"""
|
152
|
-
return pulumi.get(self, "
|
153
|
-
|
154
|
-
@property
|
155
|
-
@pulumi.getter(name="shardedDatabases")
|
156
|
-
def sharded_databases(self) -> Sequence[str]:
|
157
|
-
"""
|
158
|
-
The OCIDs of sharded databases that consumes the given private endpoint.
|
159
|
-
"""
|
160
|
-
return pulumi.get(self, "sharded_databases")
|
135
|
+
return pulumi.get(self, "service_provider_id")
|
161
136
|
|
162
137
|
@property
|
163
138
|
@pulumi.getter
|
164
139
|
def state(self) -> str:
|
165
140
|
"""
|
166
|
-
|
141
|
+
The current lifecycle state of the Service Provider.
|
167
142
|
"""
|
168
143
|
return pulumi.get(self, "state")
|
169
144
|
|
170
145
|
@property
|
171
|
-
@pulumi.getter(name="
|
172
|
-
def
|
146
|
+
@pulumi.getter(name="subscribedServiceType")
|
147
|
+
def subscribed_service_type(self) -> str:
|
173
148
|
"""
|
174
|
-
|
149
|
+
Subscribed Service Provider Service Type.
|
175
150
|
"""
|
176
|
-
return pulumi.get(self, "
|
151
|
+
return pulumi.get(self, "subscribed_service_type")
|
177
152
|
|
178
153
|
@property
|
179
154
|
@pulumi.getter(name="systemTags")
|
180
155
|
def system_tags(self) -> Mapping[str, str]:
|
181
156
|
"""
|
182
|
-
|
157
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
183
158
|
"""
|
184
159
|
return pulumi.get(self, "system_tags")
|
185
160
|
|
@@ -187,7 +162,7 @@ class GetPrivateEndpointResult:
|
|
187
162
|
@pulumi.getter(name="timeCreated")
|
188
163
|
def time_created(self) -> str:
|
189
164
|
"""
|
190
|
-
|
165
|
+
Time when the Service Provider was created expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
|
191
166
|
"""
|
192
167
|
return pulumi.get(self, "time_created")
|
193
168
|
|
@@ -195,50 +170,39 @@ class GetPrivateEndpointResult:
|
|
195
170
|
@pulumi.getter(name="timeUpdated")
|
196
171
|
def time_updated(self) -> str:
|
197
172
|
"""
|
198
|
-
|
173
|
+
Time when the Service Provider was last modified expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
|
199
174
|
"""
|
200
175
|
return pulumi.get(self, "time_updated")
|
201
176
|
|
202
|
-
@property
|
203
|
-
@pulumi.getter(name="vcnId")
|
204
|
-
def vcn_id(self) -> str:
|
205
|
-
"""
|
206
|
-
Identifier of the VCN in which subnet exists.
|
207
|
-
"""
|
208
|
-
return pulumi.get(self, "vcn_id")
|
209
|
-
|
210
177
|
|
211
|
-
class
|
178
|
+
class AwaitableGetDelegationSubscriptionResult(GetDelegationSubscriptionResult):
|
212
179
|
# pylint: disable=using-constant-test
|
213
180
|
def __await__(self):
|
214
181
|
if False:
|
215
182
|
yield self
|
216
|
-
return
|
183
|
+
return GetDelegationSubscriptionResult(
|
217
184
|
compartment_id=self.compartment_id,
|
218
185
|
defined_tags=self.defined_tags,
|
186
|
+
delegation_subscription_id=self.delegation_subscription_id,
|
219
187
|
description=self.description,
|
220
188
|
display_name=self.display_name,
|
221
189
|
freeform_tags=self.freeform_tags,
|
222
190
|
id=self.id,
|
223
191
|
lifecycle_state_details=self.lifecycle_state_details,
|
224
|
-
|
225
|
-
private_endpoint_id=self.private_endpoint_id,
|
226
|
-
private_ip=self.private_ip,
|
227
|
-
sharded_databases=self.sharded_databases,
|
192
|
+
service_provider_id=self.service_provider_id,
|
228
193
|
state=self.state,
|
229
|
-
|
194
|
+
subscribed_service_type=self.subscribed_service_type,
|
230
195
|
system_tags=self.system_tags,
|
231
196
|
time_created=self.time_created,
|
232
|
-
time_updated=self.time_updated
|
233
|
-
vcn_id=self.vcn_id)
|
197
|
+
time_updated=self.time_updated)
|
234
198
|
|
235
199
|
|
236
|
-
def
|
237
|
-
|
200
|
+
def get_delegation_subscription(delegation_subscription_id: Optional[str] = None,
|
201
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDelegationSubscriptionResult:
|
238
202
|
"""
|
239
|
-
This data source provides details about a specific
|
203
|
+
This data source provides details about a specific Delegation Subscription resource in Oracle Cloud Infrastructure Delegate Access Control service.
|
240
204
|
|
241
|
-
|
205
|
+
Gets a DelegationSubscription by identifier
|
242
206
|
|
243
207
|
## Example Usage
|
244
208
|
|
@@ -246,44 +210,41 @@ def get_private_endpoint(private_endpoint_id: Optional[str] = None,
|
|
246
210
|
import pulumi
|
247
211
|
import pulumi_oci as oci
|
248
212
|
|
249
|
-
|
213
|
+
test_delegation_subscription = oci.DelegateAccessControl.get_delegation_subscription(delegation_subscription_id=test_delegation_subscription_oci_delegate_access_control_delegation_subscription["id"])
|
250
214
|
```
|
251
215
|
|
252
216
|
|
253
|
-
:param str
|
217
|
+
:param str delegation_subscription_id: unique Delegation Subscription identifier
|
254
218
|
"""
|
255
219
|
__args__ = dict()
|
256
|
-
__args__['
|
220
|
+
__args__['delegationSubscriptionId'] = delegation_subscription_id
|
257
221
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
258
|
-
__ret__ = pulumi.runtime.invoke('oci:
|
222
|
+
__ret__ = pulumi.runtime.invoke('oci:DelegateAccessControl/getDelegationSubscription:getDelegationSubscription', __args__, opts=opts, typ=GetDelegationSubscriptionResult).value
|
259
223
|
|
260
|
-
return
|
224
|
+
return AwaitableGetDelegationSubscriptionResult(
|
261
225
|
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
262
226
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
227
|
+
delegation_subscription_id=pulumi.get(__ret__, 'delegation_subscription_id'),
|
263
228
|
description=pulumi.get(__ret__, 'description'),
|
264
229
|
display_name=pulumi.get(__ret__, 'display_name'),
|
265
230
|
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
266
231
|
id=pulumi.get(__ret__, 'id'),
|
267
232
|
lifecycle_state_details=pulumi.get(__ret__, 'lifecycle_state_details'),
|
268
|
-
|
269
|
-
private_endpoint_id=pulumi.get(__ret__, 'private_endpoint_id'),
|
270
|
-
private_ip=pulumi.get(__ret__, 'private_ip'),
|
271
|
-
sharded_databases=pulumi.get(__ret__, 'sharded_databases'),
|
233
|
+
service_provider_id=pulumi.get(__ret__, 'service_provider_id'),
|
272
234
|
state=pulumi.get(__ret__, 'state'),
|
273
|
-
|
235
|
+
subscribed_service_type=pulumi.get(__ret__, 'subscribed_service_type'),
|
274
236
|
system_tags=pulumi.get(__ret__, 'system_tags'),
|
275
237
|
time_created=pulumi.get(__ret__, 'time_created'),
|
276
|
-
time_updated=pulumi.get(__ret__, 'time_updated')
|
277
|
-
vcn_id=pulumi.get(__ret__, 'vcn_id'))
|
238
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
278
239
|
|
279
240
|
|
280
|
-
@_utilities.lift_output_func(
|
281
|
-
def
|
282
|
-
|
241
|
+
@_utilities.lift_output_func(get_delegation_subscription)
|
242
|
+
def get_delegation_subscription_output(delegation_subscription_id: Optional[pulumi.Input[str]] = None,
|
243
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDelegationSubscriptionResult]:
|
283
244
|
"""
|
284
|
-
This data source provides details about a specific
|
245
|
+
This data source provides details about a specific Delegation Subscription resource in Oracle Cloud Infrastructure Delegate Access Control service.
|
285
246
|
|
286
|
-
|
247
|
+
Gets a DelegationSubscription by identifier
|
287
248
|
|
288
249
|
## Example Usage
|
289
250
|
|
@@ -291,10 +252,10 @@ def get_private_endpoint_output(private_endpoint_id: Optional[pulumi.Input[str]]
|
|
291
252
|
import pulumi
|
292
253
|
import pulumi_oci as oci
|
293
254
|
|
294
|
-
|
255
|
+
test_delegation_subscription = oci.DelegateAccessControl.get_delegation_subscription(delegation_subscription_id=test_delegation_subscription_oci_delegate_access_control_delegation_subscription["id"])
|
295
256
|
```
|
296
257
|
|
297
258
|
|
298
|
-
:param str
|
259
|
+
:param str delegation_subscription_id: unique Delegation Subscription identifier
|
299
260
|
"""
|
300
261
|
...
|