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
@@ -9,49 +9,45 @@ import pulumi.runtime
|
|
9
9
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
10
10
|
from .. import _utilities
|
11
11
|
|
12
|
-
__all__ = ['
|
12
|
+
__all__ = ['DelegationSubscriptionArgs', 'DelegationSubscription']
|
13
13
|
|
14
14
|
@pulumi.input_type
|
15
|
-
class
|
15
|
+
class DelegationSubscriptionArgs:
|
16
16
|
def __init__(__self__, *,
|
17
17
|
compartment_id: pulumi.Input[str],
|
18
|
-
|
19
|
-
|
18
|
+
service_provider_id: pulumi.Input[str],
|
19
|
+
subscribed_service_type: pulumi.Input[str],
|
20
20
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
21
21
|
description: Optional[pulumi.Input[str]] = None,
|
22
|
-
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None
|
23
|
-
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
22
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
24
23
|
"""
|
25
|
-
The set of arguments for constructing a
|
26
|
-
:param pulumi.Input[str] compartment_id: (Updatable)
|
27
|
-
:param pulumi.Input[str]
|
28
|
-
:param pulumi.Input[str]
|
24
|
+
The set of arguments for constructing a DelegationSubscription resource.
|
25
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the Delegation Control.
|
26
|
+
:param pulumi.Input[str] service_provider_id: Unique identifier of the Service Provider.
|
27
|
+
:param pulumi.Input[str] subscribed_service_type: Subscribed Service Provider Service Type.
|
29
28
|
|
30
29
|
|
31
30
|
** IMPORTANT **
|
32
31
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
33
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"
|
34
|
-
:param pulumi.Input[str] description: (Updatable)
|
35
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable)
|
36
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] nsg_ids: (Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
|
32
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
33
|
+
:param pulumi.Input[str] description: (Updatable) Description of the Delegation Subscription.
|
34
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
|
37
35
|
"""
|
38
36
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
39
|
-
pulumi.set(__self__, "
|
40
|
-
pulumi.set(__self__, "
|
37
|
+
pulumi.set(__self__, "service_provider_id", service_provider_id)
|
38
|
+
pulumi.set(__self__, "subscribed_service_type", subscribed_service_type)
|
41
39
|
if defined_tags is not None:
|
42
40
|
pulumi.set(__self__, "defined_tags", defined_tags)
|
43
41
|
if description is not None:
|
44
42
|
pulumi.set(__self__, "description", description)
|
45
43
|
if freeform_tags is not None:
|
46
44
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
47
|
-
if nsg_ids is not None:
|
48
|
-
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
49
45
|
|
50
46
|
@property
|
51
47
|
@pulumi.getter(name="compartmentId")
|
52
48
|
def compartment_id(self) -> pulumi.Input[str]:
|
53
49
|
"""
|
54
|
-
(Updatable)
|
50
|
+
(Updatable) The OCID of the compartment that contains the Delegation Control.
|
55
51
|
"""
|
56
52
|
return pulumi.get(self, "compartment_id")
|
57
53
|
|
@@ -60,38 +56,38 @@ class PrivateEndpointArgs:
|
|
60
56
|
pulumi.set(self, "compartment_id", value)
|
61
57
|
|
62
58
|
@property
|
63
|
-
@pulumi.getter(name="
|
64
|
-
def
|
59
|
+
@pulumi.getter(name="serviceProviderId")
|
60
|
+
def service_provider_id(self) -> pulumi.Input[str]:
|
65
61
|
"""
|
66
|
-
|
62
|
+
Unique identifier of the Service Provider.
|
67
63
|
"""
|
68
|
-
return pulumi.get(self, "
|
64
|
+
return pulumi.get(self, "service_provider_id")
|
69
65
|
|
70
|
-
@
|
71
|
-
def
|
72
|
-
pulumi.set(self, "
|
66
|
+
@service_provider_id.setter
|
67
|
+
def service_provider_id(self, value: pulumi.Input[str]):
|
68
|
+
pulumi.set(self, "service_provider_id", value)
|
73
69
|
|
74
70
|
@property
|
75
|
-
@pulumi.getter(name="
|
76
|
-
def
|
71
|
+
@pulumi.getter(name="subscribedServiceType")
|
72
|
+
def subscribed_service_type(self) -> pulumi.Input[str]:
|
77
73
|
"""
|
78
|
-
|
74
|
+
Subscribed Service Provider Service Type.
|
79
75
|
|
80
76
|
|
81
77
|
** IMPORTANT **
|
82
78
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
83
79
|
"""
|
84
|
-
return pulumi.get(self, "
|
80
|
+
return pulumi.get(self, "subscribed_service_type")
|
85
81
|
|
86
|
-
@
|
87
|
-
def
|
88
|
-
pulumi.set(self, "
|
82
|
+
@subscribed_service_type.setter
|
83
|
+
def subscribed_service_type(self, value: pulumi.Input[str]):
|
84
|
+
pulumi.set(self, "subscribed_service_type", value)
|
89
85
|
|
90
86
|
@property
|
91
87
|
@pulumi.getter(name="definedTags")
|
92
88
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
93
89
|
"""
|
94
|
-
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"
|
90
|
+
(Updatable) 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"}`
|
95
91
|
"""
|
96
92
|
return pulumi.get(self, "defined_tags")
|
97
93
|
|
@@ -103,7 +99,7 @@ class PrivateEndpointArgs:
|
|
103
99
|
@pulumi.getter
|
104
100
|
def description(self) -> Optional[pulumi.Input[str]]:
|
105
101
|
"""
|
106
|
-
(Updatable)
|
102
|
+
(Updatable) Description of the Delegation Subscription.
|
107
103
|
"""
|
108
104
|
return pulumi.get(self, "description")
|
109
105
|
|
@@ -115,7 +111,7 @@ class PrivateEndpointArgs:
|
|
115
111
|
@pulumi.getter(name="freeformTags")
|
116
112
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
117
113
|
"""
|
118
|
-
(Updatable)
|
114
|
+
(Updatable) 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"}`
|
119
115
|
"""
|
120
116
|
return pulumi.get(self, "freeform_tags")
|
121
117
|
|
@@ -123,21 +119,9 @@ class PrivateEndpointArgs:
|
|
123
119
|
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
124
120
|
pulumi.set(self, "freeform_tags", value)
|
125
121
|
|
126
|
-
@property
|
127
|
-
@pulumi.getter(name="nsgIds")
|
128
|
-
def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
129
|
-
"""
|
130
|
-
(Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
|
131
|
-
"""
|
132
|
-
return pulumi.get(self, "nsg_ids")
|
133
|
-
|
134
|
-
@nsg_ids.setter
|
135
|
-
def nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
136
|
-
pulumi.set(self, "nsg_ids", value)
|
137
|
-
|
138
122
|
|
139
123
|
@pulumi.input_type
|
140
|
-
class
|
124
|
+
class _DelegationSubscriptionState:
|
141
125
|
def __init__(__self__, *,
|
142
126
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
143
127
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -145,36 +129,30 @@ class _PrivateEndpointState:
|
|
145
129
|
display_name: Optional[pulumi.Input[str]] = None,
|
146
130
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
147
131
|
lifecycle_state_details: Optional[pulumi.Input[str]] = None,
|
148
|
-
|
149
|
-
private_ip: Optional[pulumi.Input[str]] = None,
|
150
|
-
sharded_databases: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
132
|
+
service_provider_id: Optional[pulumi.Input[str]] = None,
|
151
133
|
state: Optional[pulumi.Input[str]] = None,
|
152
|
-
|
134
|
+
subscribed_service_type: Optional[pulumi.Input[str]] = None,
|
153
135
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
154
136
|
time_created: Optional[pulumi.Input[str]] = None,
|
155
|
-
time_updated: Optional[pulumi.Input[str]] = None
|
156
|
-
|
157
|
-
|
158
|
-
Input
|
159
|
-
:param pulumi.Input[str]
|
160
|
-
:param pulumi.Input[
|
161
|
-
:param pulumi.Input[str]
|
162
|
-
:param pulumi.Input[str]
|
163
|
-
:param pulumi.Input[
|
164
|
-
:param pulumi.Input[str]
|
165
|
-
:param pulumi.Input[
|
166
|
-
:param pulumi.Input[str]
|
167
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] sharded_databases: The OCIDs of sharded databases that consumes the given private endpoint.
|
168
|
-
:param pulumi.Input[str] state: Lifecycle states for private endpoint.
|
169
|
-
:param pulumi.Input[str] subnet_id: Identifier of the customer subnet against which private endpoint is to be created.
|
137
|
+
time_updated: Optional[pulumi.Input[str]] = None):
|
138
|
+
"""
|
139
|
+
Input properties used for looking up and filtering DelegationSubscription resources.
|
140
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the Delegation Control.
|
141
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
142
|
+
:param pulumi.Input[str] description: (Updatable) Description of the Delegation Subscription.
|
143
|
+
:param pulumi.Input[str] display_name: Display name
|
144
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
|
145
|
+
:param pulumi.Input[str] lifecycle_state_details: Description of the current lifecycle state in more detail.
|
146
|
+
:param pulumi.Input[str] service_provider_id: Unique identifier of the Service Provider.
|
147
|
+
:param pulumi.Input[str] state: The current lifecycle state of the Service Provider.
|
148
|
+
:param pulumi.Input[str] subscribed_service_type: Subscribed Service Provider Service Type.
|
170
149
|
|
171
150
|
|
172
151
|
** IMPORTANT **
|
173
152
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
174
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags:
|
175
|
-
:param pulumi.Input[str] time_created:
|
176
|
-
:param pulumi.Input[str] time_updated:
|
177
|
-
:param pulumi.Input[str] vcn_id: Identifier of the VCN in which subnet exists.
|
153
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
154
|
+
:param pulumi.Input[str] time_created: 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'
|
155
|
+
:param pulumi.Input[str] time_updated: 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'
|
178
156
|
"""
|
179
157
|
if compartment_id is not None:
|
180
158
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -188,30 +166,24 @@ class _PrivateEndpointState:
|
|
188
166
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
189
167
|
if lifecycle_state_details is not None:
|
190
168
|
pulumi.set(__self__, "lifecycle_state_details", lifecycle_state_details)
|
191
|
-
if
|
192
|
-
pulumi.set(__self__, "
|
193
|
-
if private_ip is not None:
|
194
|
-
pulumi.set(__self__, "private_ip", private_ip)
|
195
|
-
if sharded_databases is not None:
|
196
|
-
pulumi.set(__self__, "sharded_databases", sharded_databases)
|
169
|
+
if service_provider_id is not None:
|
170
|
+
pulumi.set(__self__, "service_provider_id", service_provider_id)
|
197
171
|
if state is not None:
|
198
172
|
pulumi.set(__self__, "state", state)
|
199
|
-
if
|
200
|
-
pulumi.set(__self__, "
|
173
|
+
if subscribed_service_type is not None:
|
174
|
+
pulumi.set(__self__, "subscribed_service_type", subscribed_service_type)
|
201
175
|
if system_tags is not None:
|
202
176
|
pulumi.set(__self__, "system_tags", system_tags)
|
203
177
|
if time_created is not None:
|
204
178
|
pulumi.set(__self__, "time_created", time_created)
|
205
179
|
if time_updated is not None:
|
206
180
|
pulumi.set(__self__, "time_updated", time_updated)
|
207
|
-
if vcn_id is not None:
|
208
|
-
pulumi.set(__self__, "vcn_id", vcn_id)
|
209
181
|
|
210
182
|
@property
|
211
183
|
@pulumi.getter(name="compartmentId")
|
212
184
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
213
185
|
"""
|
214
|
-
(Updatable)
|
186
|
+
(Updatable) The OCID of the compartment that contains the Delegation Control.
|
215
187
|
"""
|
216
188
|
return pulumi.get(self, "compartment_id")
|
217
189
|
|
@@ -223,7 +195,7 @@ class _PrivateEndpointState:
|
|
223
195
|
@pulumi.getter(name="definedTags")
|
224
196
|
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
225
197
|
"""
|
226
|
-
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"
|
198
|
+
(Updatable) 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"}`
|
227
199
|
"""
|
228
200
|
return pulumi.get(self, "defined_tags")
|
229
201
|
|
@@ -235,7 +207,7 @@ class _PrivateEndpointState:
|
|
235
207
|
@pulumi.getter
|
236
208
|
def description(self) -> Optional[pulumi.Input[str]]:
|
237
209
|
"""
|
238
|
-
(Updatable)
|
210
|
+
(Updatable) Description of the Delegation Subscription.
|
239
211
|
"""
|
240
212
|
return pulumi.get(self, "description")
|
241
213
|
|
@@ -247,7 +219,7 @@ class _PrivateEndpointState:
|
|
247
219
|
@pulumi.getter(name="displayName")
|
248
220
|
def display_name(self) -> Optional[pulumi.Input[str]]:
|
249
221
|
"""
|
250
|
-
|
222
|
+
Display name
|
251
223
|
"""
|
252
224
|
return pulumi.get(self, "display_name")
|
253
225
|
|
@@ -259,7 +231,7 @@ class _PrivateEndpointState:
|
|
259
231
|
@pulumi.getter(name="freeformTags")
|
260
232
|
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
261
233
|
"""
|
262
|
-
(Updatable)
|
234
|
+
(Updatable) 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"}`
|
263
235
|
"""
|
264
236
|
return pulumi.get(self, "freeform_tags")
|
265
237
|
|
@@ -271,7 +243,7 @@ class _PrivateEndpointState:
|
|
271
243
|
@pulumi.getter(name="lifecycleStateDetails")
|
272
244
|
def lifecycle_state_details(self) -> Optional[pulumi.Input[str]]:
|
273
245
|
"""
|
274
|
-
|
246
|
+
Description of the current lifecycle state in more detail.
|
275
247
|
"""
|
276
248
|
return pulumi.get(self, "lifecycle_state_details")
|
277
249
|
|
@@ -280,46 +252,22 @@ class _PrivateEndpointState:
|
|
280
252
|
pulumi.set(self, "lifecycle_state_details", value)
|
281
253
|
|
282
254
|
@property
|
283
|
-
@pulumi.getter(name="
|
284
|
-
def
|
255
|
+
@pulumi.getter(name="serviceProviderId")
|
256
|
+
def service_provider_id(self) -> Optional[pulumi.Input[str]]:
|
285
257
|
"""
|
286
|
-
|
258
|
+
Unique identifier of the Service Provider.
|
287
259
|
"""
|
288
|
-
return pulumi.get(self, "
|
260
|
+
return pulumi.get(self, "service_provider_id")
|
289
261
|
|
290
|
-
@
|
291
|
-
def
|
292
|
-
pulumi.set(self, "
|
293
|
-
|
294
|
-
@property
|
295
|
-
@pulumi.getter(name="privateIp")
|
296
|
-
def private_ip(self) -> Optional[pulumi.Input[str]]:
|
297
|
-
"""
|
298
|
-
IP address of the Private Endpoint.
|
299
|
-
"""
|
300
|
-
return pulumi.get(self, "private_ip")
|
301
|
-
|
302
|
-
@private_ip.setter
|
303
|
-
def private_ip(self, value: Optional[pulumi.Input[str]]):
|
304
|
-
pulumi.set(self, "private_ip", value)
|
305
|
-
|
306
|
-
@property
|
307
|
-
@pulumi.getter(name="shardedDatabases")
|
308
|
-
def sharded_databases(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
309
|
-
"""
|
310
|
-
The OCIDs of sharded databases that consumes the given private endpoint.
|
311
|
-
"""
|
312
|
-
return pulumi.get(self, "sharded_databases")
|
313
|
-
|
314
|
-
@sharded_databases.setter
|
315
|
-
def sharded_databases(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
316
|
-
pulumi.set(self, "sharded_databases", value)
|
262
|
+
@service_provider_id.setter
|
263
|
+
def service_provider_id(self, value: Optional[pulumi.Input[str]]):
|
264
|
+
pulumi.set(self, "service_provider_id", value)
|
317
265
|
|
318
266
|
@property
|
319
267
|
@pulumi.getter
|
320
268
|
def state(self) -> Optional[pulumi.Input[str]]:
|
321
269
|
"""
|
322
|
-
|
270
|
+
The current lifecycle state of the Service Provider.
|
323
271
|
"""
|
324
272
|
return pulumi.get(self, "state")
|
325
273
|
|
@@ -328,26 +276,26 @@ class _PrivateEndpointState:
|
|
328
276
|
pulumi.set(self, "state", value)
|
329
277
|
|
330
278
|
@property
|
331
|
-
@pulumi.getter(name="
|
332
|
-
def
|
279
|
+
@pulumi.getter(name="subscribedServiceType")
|
280
|
+
def subscribed_service_type(self) -> Optional[pulumi.Input[str]]:
|
333
281
|
"""
|
334
|
-
|
282
|
+
Subscribed Service Provider Service Type.
|
335
283
|
|
336
284
|
|
337
285
|
** IMPORTANT **
|
338
286
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
339
287
|
"""
|
340
|
-
return pulumi.get(self, "
|
288
|
+
return pulumi.get(self, "subscribed_service_type")
|
341
289
|
|
342
|
-
@
|
343
|
-
def
|
344
|
-
pulumi.set(self, "
|
290
|
+
@subscribed_service_type.setter
|
291
|
+
def subscribed_service_type(self, value: Optional[pulumi.Input[str]]):
|
292
|
+
pulumi.set(self, "subscribed_service_type", value)
|
345
293
|
|
346
294
|
@property
|
347
295
|
@pulumi.getter(name="systemTags")
|
348
296
|
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
349
297
|
"""
|
350
|
-
|
298
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
351
299
|
"""
|
352
300
|
return pulumi.get(self, "system_tags")
|
353
301
|
|
@@ -359,7 +307,7 @@ class _PrivateEndpointState:
|
|
359
307
|
@pulumi.getter(name="timeCreated")
|
360
308
|
def time_created(self) -> Optional[pulumi.Input[str]]:
|
361
309
|
"""
|
362
|
-
|
310
|
+
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'
|
363
311
|
"""
|
364
312
|
return pulumi.get(self, "time_created")
|
365
313
|
|
@@ -371,7 +319,7 @@ class _PrivateEndpointState:
|
|
371
319
|
@pulumi.getter(name="timeUpdated")
|
372
320
|
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
373
321
|
"""
|
374
|
-
|
322
|
+
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'
|
375
323
|
"""
|
376
324
|
return pulumi.get(self, "time_updated")
|
377
325
|
|
@@ -379,20 +327,8 @@ class _PrivateEndpointState:
|
|
379
327
|
def time_updated(self, value: Optional[pulumi.Input[str]]):
|
380
328
|
pulumi.set(self, "time_updated", value)
|
381
329
|
|
382
|
-
@property
|
383
|
-
@pulumi.getter(name="vcnId")
|
384
|
-
def vcn_id(self) -> Optional[pulumi.Input[str]]:
|
385
|
-
"""
|
386
|
-
Identifier of the VCN in which subnet exists.
|
387
|
-
"""
|
388
|
-
return pulumi.get(self, "vcn_id")
|
389
|
-
|
390
|
-
@vcn_id.setter
|
391
|
-
def vcn_id(self, value: Optional[pulumi.Input[str]]):
|
392
|
-
pulumi.set(self, "vcn_id", value)
|
393
330
|
|
394
|
-
|
395
|
-
class PrivateEndpoint(pulumi.CustomResource):
|
331
|
+
class DelegationSubscription(pulumi.CustomResource):
|
396
332
|
@overload
|
397
333
|
def __init__(__self__,
|
398
334
|
resource_name: str,
|
@@ -400,15 +336,14 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
400
336
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
401
337
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
402
338
|
description: Optional[pulumi.Input[str]] = None,
|
403
|
-
display_name: Optional[pulumi.Input[str]] = None,
|
404
339
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
405
|
-
|
406
|
-
|
340
|
+
service_provider_id: Optional[pulumi.Input[str]] = None,
|
341
|
+
subscribed_service_type: Optional[pulumi.Input[str]] = None,
|
407
342
|
__props__=None):
|
408
343
|
"""
|
409
|
-
This resource provides the
|
344
|
+
This resource provides the Delegation Subscription resource in Oracle Cloud Infrastructure Delegate Access Control service.
|
410
345
|
|
411
|
-
Creates
|
346
|
+
Creates Delegation Subscription in Delegation Control.
|
412
347
|
|
413
348
|
## Example Usage
|
414
349
|
|
@@ -416,37 +351,35 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
416
351
|
import pulumi
|
417
352
|
import pulumi_oci as oci
|
418
353
|
|
419
|
-
|
354
|
+
test_delegation_subscription = oci.delegate_access_control.DelegationSubscription("test_delegation_subscription",
|
420
355
|
compartment_id=compartment_id,
|
421
|
-
|
422
|
-
|
356
|
+
service_provider_id=test_service_provider["id"],
|
357
|
+
subscribed_service_type=delegation_subscription_subscribed_service_type,
|
423
358
|
defined_tags={
|
424
|
-
"
|
359
|
+
"Operations.CostCenter": "42",
|
425
360
|
},
|
426
|
-
description=
|
361
|
+
description=delegation_subscription_description,
|
427
362
|
freeform_tags={
|
428
|
-
"
|
429
|
-
}
|
430
|
-
nsg_ids=private_endpoint_nsg_ids)
|
363
|
+
"Department": "Finance",
|
364
|
+
})
|
431
365
|
```
|
432
366
|
|
433
367
|
## Import
|
434
368
|
|
435
|
-
|
369
|
+
DelegationSubscriptions can be imported using the `id`, e.g.
|
436
370
|
|
437
371
|
```sh
|
438
|
-
$ pulumi import oci:
|
372
|
+
$ pulumi import oci:DelegateAccessControl/delegationSubscription:DelegationSubscription test_delegation_subscription "id"
|
439
373
|
```
|
440
374
|
|
441
375
|
:param str resource_name: The name of the resource.
|
442
376
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
443
|
-
:param pulumi.Input[str] compartment_id: (Updatable)
|
444
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"
|
445
|
-
:param pulumi.Input[str] description: (Updatable)
|
446
|
-
:param pulumi.Input[str]
|
447
|
-
:param pulumi.Input[
|
448
|
-
:param pulumi.Input[
|
449
|
-
:param pulumi.Input[str] subnet_id: Identifier of the customer subnet against which private endpoint is to be created.
|
377
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the Delegation Control.
|
378
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
379
|
+
:param pulumi.Input[str] description: (Updatable) Description of the Delegation Subscription.
|
380
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
|
381
|
+
:param pulumi.Input[str] service_provider_id: Unique identifier of the Service Provider.
|
382
|
+
:param pulumi.Input[str] subscribed_service_type: Subscribed Service Provider Service Type.
|
450
383
|
|
451
384
|
|
452
385
|
** IMPORTANT **
|
@@ -456,12 +389,12 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
456
389
|
@overload
|
457
390
|
def __init__(__self__,
|
458
391
|
resource_name: str,
|
459
|
-
args:
|
392
|
+
args: DelegationSubscriptionArgs,
|
460
393
|
opts: Optional[pulumi.ResourceOptions] = None):
|
461
394
|
"""
|
462
|
-
This resource provides the
|
395
|
+
This resource provides the Delegation Subscription resource in Oracle Cloud Infrastructure Delegate Access Control service.
|
463
396
|
|
464
|
-
Creates
|
397
|
+
Creates Delegation Subscription in Delegation Control.
|
465
398
|
|
466
399
|
## Example Usage
|
467
400
|
|
@@ -469,35 +402,34 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
469
402
|
import pulumi
|
470
403
|
import pulumi_oci as oci
|
471
404
|
|
472
|
-
|
405
|
+
test_delegation_subscription = oci.delegate_access_control.DelegationSubscription("test_delegation_subscription",
|
473
406
|
compartment_id=compartment_id,
|
474
|
-
|
475
|
-
|
407
|
+
service_provider_id=test_service_provider["id"],
|
408
|
+
subscribed_service_type=delegation_subscription_subscribed_service_type,
|
476
409
|
defined_tags={
|
477
|
-
"
|
410
|
+
"Operations.CostCenter": "42",
|
478
411
|
},
|
479
|
-
description=
|
412
|
+
description=delegation_subscription_description,
|
480
413
|
freeform_tags={
|
481
|
-
"
|
482
|
-
}
|
483
|
-
nsg_ids=private_endpoint_nsg_ids)
|
414
|
+
"Department": "Finance",
|
415
|
+
})
|
484
416
|
```
|
485
417
|
|
486
418
|
## Import
|
487
419
|
|
488
|
-
|
420
|
+
DelegationSubscriptions can be imported using the `id`, e.g.
|
489
421
|
|
490
422
|
```sh
|
491
|
-
$ pulumi import oci:
|
423
|
+
$ pulumi import oci:DelegateAccessControl/delegationSubscription:DelegationSubscription test_delegation_subscription "id"
|
492
424
|
```
|
493
425
|
|
494
426
|
:param str resource_name: The name of the resource.
|
495
|
-
:param
|
427
|
+
:param DelegationSubscriptionArgs args: The arguments to use to populate this resource's properties.
|
496
428
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
497
429
|
"""
|
498
430
|
...
|
499
431
|
def __init__(__self__, resource_name: str, *args, **kwargs):
|
500
|
-
resource_args, opts = _utilities.get_resource_args_opts(
|
432
|
+
resource_args, opts = _utilities.get_resource_args_opts(DelegationSubscriptionArgs, pulumi.ResourceOptions, *args, **kwargs)
|
501
433
|
if resource_args is not None:
|
502
434
|
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
503
435
|
else:
|
@@ -509,10 +441,9 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
509
441
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
510
442
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
511
443
|
description: Optional[pulumi.Input[str]] = None,
|
512
|
-
display_name: Optional[pulumi.Input[str]] = None,
|
513
444
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
514
|
-
|
515
|
-
|
445
|
+
service_provider_id: Optional[pulumi.Input[str]] = None,
|
446
|
+
subscribed_service_type: Optional[pulumi.Input[str]] = None,
|
516
447
|
__props__=None):
|
517
448
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
518
449
|
if not isinstance(opts, pulumi.ResourceOptions):
|
@@ -520,31 +451,28 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
520
451
|
if opts.id is None:
|
521
452
|
if __props__ is not None:
|
522
453
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
523
|
-
__props__ =
|
454
|
+
__props__ = DelegationSubscriptionArgs.__new__(DelegationSubscriptionArgs)
|
524
455
|
|
525
456
|
if compartment_id is None and not opts.urn:
|
526
457
|
raise TypeError("Missing required property 'compartment_id'")
|
527
458
|
__props__.__dict__["compartment_id"] = compartment_id
|
528
459
|
__props__.__dict__["defined_tags"] = defined_tags
|
529
460
|
__props__.__dict__["description"] = description
|
530
|
-
if display_name is None and not opts.urn:
|
531
|
-
raise TypeError("Missing required property 'display_name'")
|
532
|
-
__props__.__dict__["display_name"] = display_name
|
533
461
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
534
|
-
|
535
|
-
|
536
|
-
|
537
|
-
|
462
|
+
if service_provider_id is None and not opts.urn:
|
463
|
+
raise TypeError("Missing required property 'service_provider_id'")
|
464
|
+
__props__.__dict__["service_provider_id"] = service_provider_id
|
465
|
+
if subscribed_service_type is None and not opts.urn:
|
466
|
+
raise TypeError("Missing required property 'subscribed_service_type'")
|
467
|
+
__props__.__dict__["subscribed_service_type"] = subscribed_service_type
|
468
|
+
__props__.__dict__["display_name"] = None
|
538
469
|
__props__.__dict__["lifecycle_state_details"] = None
|
539
|
-
__props__.__dict__["private_ip"] = None
|
540
|
-
__props__.__dict__["sharded_databases"] = None
|
541
470
|
__props__.__dict__["state"] = None
|
542
471
|
__props__.__dict__["system_tags"] = None
|
543
472
|
__props__.__dict__["time_created"] = None
|
544
473
|
__props__.__dict__["time_updated"] = None
|
545
|
-
|
546
|
-
|
547
|
-
'oci:GloballyDistributedDatabase/privateEndpoint:PrivateEndpoint',
|
474
|
+
super(DelegationSubscription, __self__).__init__(
|
475
|
+
'oci:DelegateAccessControl/delegationSubscription:DelegationSubscription',
|
548
476
|
resource_name,
|
549
477
|
__props__,
|
550
478
|
opts)
|
@@ -559,45 +487,39 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
559
487
|
display_name: Optional[pulumi.Input[str]] = None,
|
560
488
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
561
489
|
lifecycle_state_details: Optional[pulumi.Input[str]] = None,
|
562
|
-
|
563
|
-
private_ip: Optional[pulumi.Input[str]] = None,
|
564
|
-
sharded_databases: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
490
|
+
service_provider_id: Optional[pulumi.Input[str]] = None,
|
565
491
|
state: Optional[pulumi.Input[str]] = None,
|
566
|
-
|
492
|
+
subscribed_service_type: Optional[pulumi.Input[str]] = None,
|
567
493
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
568
494
|
time_created: Optional[pulumi.Input[str]] = None,
|
569
|
-
time_updated: Optional[pulumi.Input[str]] = None
|
570
|
-
vcn_id: Optional[pulumi.Input[str]] = None) -> 'PrivateEndpoint':
|
495
|
+
time_updated: Optional[pulumi.Input[str]] = None) -> 'DelegationSubscription':
|
571
496
|
"""
|
572
|
-
Get an existing
|
497
|
+
Get an existing DelegationSubscription resource's state with the given name, id, and optional extra
|
573
498
|
properties used to qualify the lookup.
|
574
499
|
|
575
500
|
:param str resource_name: The unique name of the resulting resource.
|
576
501
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
577
502
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
578
|
-
:param pulumi.Input[str] compartment_id: (Updatable)
|
579
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"
|
580
|
-
:param pulumi.Input[str] description: (Updatable)
|
581
|
-
:param pulumi.Input[str] display_name:
|
582
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable)
|
583
|
-
:param pulumi.Input[str] lifecycle_state_details:
|
584
|
-
:param pulumi.Input[
|
585
|
-
:param pulumi.Input[str]
|
586
|
-
:param pulumi.Input[
|
587
|
-
:param pulumi.Input[str] state: Lifecycle states for private endpoint.
|
588
|
-
:param pulumi.Input[str] subnet_id: Identifier of the customer subnet against which private endpoint is to be created.
|
503
|
+
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment that contains the Delegation Control.
|
504
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
505
|
+
:param pulumi.Input[str] description: (Updatable) Description of the Delegation Subscription.
|
506
|
+
:param pulumi.Input[str] display_name: Display name
|
507
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: (Updatable) 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"}`
|
508
|
+
:param pulumi.Input[str] lifecycle_state_details: Description of the current lifecycle state in more detail.
|
509
|
+
:param pulumi.Input[str] service_provider_id: Unique identifier of the Service Provider.
|
510
|
+
:param pulumi.Input[str] state: The current lifecycle state of the Service Provider.
|
511
|
+
:param pulumi.Input[str] subscribed_service_type: Subscribed Service Provider Service Type.
|
589
512
|
|
590
513
|
|
591
514
|
** IMPORTANT **
|
592
515
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
593
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags:
|
594
|
-
:param pulumi.Input[str] time_created:
|
595
|
-
:param pulumi.Input[str] time_updated:
|
596
|
-
:param pulumi.Input[str] vcn_id: Identifier of the VCN in which subnet exists.
|
516
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
517
|
+
:param pulumi.Input[str] time_created: 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'
|
518
|
+
:param pulumi.Input[str] time_updated: 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'
|
597
519
|
"""
|
598
520
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
599
521
|
|
600
|
-
__props__ =
|
522
|
+
__props__ = _DelegationSubscriptionState.__new__(_DelegationSubscriptionState)
|
601
523
|
|
602
524
|
__props__.__dict__["compartment_id"] = compartment_id
|
603
525
|
__props__.__dict__["defined_tags"] = defined_tags
|
@@ -605,22 +527,19 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
605
527
|
__props__.__dict__["display_name"] = display_name
|
606
528
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
607
529
|
__props__.__dict__["lifecycle_state_details"] = lifecycle_state_details
|
608
|
-
__props__.__dict__["
|
609
|
-
__props__.__dict__["private_ip"] = private_ip
|
610
|
-
__props__.__dict__["sharded_databases"] = sharded_databases
|
530
|
+
__props__.__dict__["service_provider_id"] = service_provider_id
|
611
531
|
__props__.__dict__["state"] = state
|
612
|
-
__props__.__dict__["
|
532
|
+
__props__.__dict__["subscribed_service_type"] = subscribed_service_type
|
613
533
|
__props__.__dict__["system_tags"] = system_tags
|
614
534
|
__props__.__dict__["time_created"] = time_created
|
615
535
|
__props__.__dict__["time_updated"] = time_updated
|
616
|
-
|
617
|
-
return PrivateEndpoint(resource_name, opts=opts, __props__=__props__)
|
536
|
+
return DelegationSubscription(resource_name, opts=opts, __props__=__props__)
|
618
537
|
|
619
538
|
@property
|
620
539
|
@pulumi.getter(name="compartmentId")
|
621
540
|
def compartment_id(self) -> pulumi.Output[str]:
|
622
541
|
"""
|
623
|
-
(Updatable)
|
542
|
+
(Updatable) The OCID of the compartment that contains the Delegation Control.
|
624
543
|
"""
|
625
544
|
return pulumi.get(self, "compartment_id")
|
626
545
|
|
@@ -628,7 +547,7 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
628
547
|
@pulumi.getter(name="definedTags")
|
629
548
|
def defined_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
630
549
|
"""
|
631
|
-
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"
|
550
|
+
(Updatable) 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"}`
|
632
551
|
"""
|
633
552
|
return pulumi.get(self, "defined_tags")
|
634
553
|
|
@@ -636,7 +555,7 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
636
555
|
@pulumi.getter
|
637
556
|
def description(self) -> pulumi.Output[str]:
|
638
557
|
"""
|
639
|
-
(Updatable)
|
558
|
+
(Updatable) Description of the Delegation Subscription.
|
640
559
|
"""
|
641
560
|
return pulumi.get(self, "description")
|
642
561
|
|
@@ -644,7 +563,7 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
644
563
|
@pulumi.getter(name="displayName")
|
645
564
|
def display_name(self) -> pulumi.Output[str]:
|
646
565
|
"""
|
647
|
-
|
566
|
+
Display name
|
648
567
|
"""
|
649
568
|
return pulumi.get(self, "display_name")
|
650
569
|
|
@@ -652,7 +571,7 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
652
571
|
@pulumi.getter(name="freeformTags")
|
653
572
|
def freeform_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
654
573
|
"""
|
655
|
-
(Updatable)
|
574
|
+
(Updatable) 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"}`
|
656
575
|
"""
|
657
576
|
return pulumi.get(self, "freeform_tags")
|
658
577
|
|
@@ -660,59 +579,43 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
660
579
|
@pulumi.getter(name="lifecycleStateDetails")
|
661
580
|
def lifecycle_state_details(self) -> pulumi.Output[str]:
|
662
581
|
"""
|
663
|
-
|
582
|
+
Description of the current lifecycle state in more detail.
|
664
583
|
"""
|
665
584
|
return pulumi.get(self, "lifecycle_state_details")
|
666
585
|
|
667
586
|
@property
|
668
|
-
@pulumi.getter(name="
|
669
|
-
def
|
670
|
-
"""
|
671
|
-
(Updatable) The OCIDs of the network security groups that the private endpoint belongs to.
|
672
|
-
"""
|
673
|
-
return pulumi.get(self, "nsg_ids")
|
674
|
-
|
675
|
-
@property
|
676
|
-
@pulumi.getter(name="privateIp")
|
677
|
-
def private_ip(self) -> pulumi.Output[str]:
|
678
|
-
"""
|
679
|
-
IP address of the Private Endpoint.
|
680
|
-
"""
|
681
|
-
return pulumi.get(self, "private_ip")
|
682
|
-
|
683
|
-
@property
|
684
|
-
@pulumi.getter(name="shardedDatabases")
|
685
|
-
def sharded_databases(self) -> pulumi.Output[Sequence[str]]:
|
587
|
+
@pulumi.getter(name="serviceProviderId")
|
588
|
+
def service_provider_id(self) -> pulumi.Output[str]:
|
686
589
|
"""
|
687
|
-
|
590
|
+
Unique identifier of the Service Provider.
|
688
591
|
"""
|
689
|
-
return pulumi.get(self, "
|
592
|
+
return pulumi.get(self, "service_provider_id")
|
690
593
|
|
691
594
|
@property
|
692
595
|
@pulumi.getter
|
693
596
|
def state(self) -> pulumi.Output[str]:
|
694
597
|
"""
|
695
|
-
|
598
|
+
The current lifecycle state of the Service Provider.
|
696
599
|
"""
|
697
600
|
return pulumi.get(self, "state")
|
698
601
|
|
699
602
|
@property
|
700
|
-
@pulumi.getter(name="
|
701
|
-
def
|
603
|
+
@pulumi.getter(name="subscribedServiceType")
|
604
|
+
def subscribed_service_type(self) -> pulumi.Output[str]:
|
702
605
|
"""
|
703
|
-
|
606
|
+
Subscribed Service Provider Service Type.
|
704
607
|
|
705
608
|
|
706
609
|
** IMPORTANT **
|
707
610
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
708
611
|
"""
|
709
|
-
return pulumi.get(self, "
|
612
|
+
return pulumi.get(self, "subscribed_service_type")
|
710
613
|
|
711
614
|
@property
|
712
615
|
@pulumi.getter(name="systemTags")
|
713
616
|
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|
714
617
|
"""
|
715
|
-
|
618
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
716
619
|
"""
|
717
620
|
return pulumi.get(self, "system_tags")
|
718
621
|
|
@@ -720,7 +623,7 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
720
623
|
@pulumi.getter(name="timeCreated")
|
721
624
|
def time_created(self) -> pulumi.Output[str]:
|
722
625
|
"""
|
723
|
-
|
626
|
+
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'
|
724
627
|
"""
|
725
628
|
return pulumi.get(self, "time_created")
|
726
629
|
|
@@ -728,15 +631,7 @@ class PrivateEndpoint(pulumi.CustomResource):
|
|
728
631
|
@pulumi.getter(name="timeUpdated")
|
729
632
|
def time_updated(self) -> pulumi.Output[str]:
|
730
633
|
"""
|
731
|
-
|
634
|
+
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'
|
732
635
|
"""
|
733
636
|
return pulumi.get(self, "time_updated")
|
734
637
|
|
735
|
-
@property
|
736
|
-
@pulumi.getter(name="vcnId")
|
737
|
-
def vcn_id(self) -> pulumi.Output[str]:
|
738
|
-
"""
|
739
|
-
Identifier of the VCN in which subnet exists.
|
740
|
-
"""
|
741
|
-
return pulumi.get(self, "vcn_id")
|
742
|
-
|