pulumi-oci 2.8.0a1724316519__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.
Files changed (119) hide show
  1. pulumi_oci/__init__.py +86 -38
  2. pulumi_oci/announcementsservice/__init__.py +1 -0
  3. pulumi_oci/announcementsservice/_inputs.py +46 -6
  4. pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
  5. pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
  6. pulumi_oci/announcementsservice/get_services.py +173 -0
  7. pulumi_oci/announcementsservice/outputs.py +195 -18
  8. pulumi_oci/bigdataservice/_inputs.py +1 -49
  9. pulumi_oci/bigdataservice/bds_instance.py +0 -128
  10. pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
  11. pulumi_oci/bigdataservice/outputs.py +3 -132
  12. pulumi_oci/database/_inputs.py +32 -0
  13. pulumi_oci/database/autonomous_database.py +28 -0
  14. pulumi_oci/database/data_guard_association.py +49 -0
  15. pulumi_oci/database/get_autonomous_database.py +14 -1
  16. pulumi_oci/database/get_autonomous_databases.py +32 -95
  17. pulumi_oci/database/get_data_guard_association.py +11 -1
  18. pulumi_oci/database/outputs.py +163 -42
  19. pulumi_oci/databasemanagement/__init__.py +1 -0
  20. pulumi_oci/databasemanagement/_inputs.py +873 -10
  21. pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
  22. pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
  23. pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
  24. pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
  25. pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
  26. pulumi_oci/databasemanagement/get_managed_database.py +47 -3
  27. pulumi_oci/databasemanagement/managed_database.py +56 -0
  28. pulumi_oci/databasemanagement/outputs.py +3331 -1397
  29. pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
  30. pulumi_oci/datasafe/__init__.py +6 -0
  31. pulumi_oci/datasafe/_inputs.py +18 -0
  32. pulumi_oci/datasafe/database_security_config_management.py +244 -2
  33. pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
  34. pulumi_oci/datasafe/masking_report_management.py +693 -0
  35. pulumi_oci/datasafe/outputs.py +18 -0
  36. pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
  37. pulumi_oci/datasafe/security_policy_management.py +172 -2
  38. pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
  39. pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
  40. pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
  41. pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
  42. pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
  43. pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
  44. pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
  45. pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
  46. pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
  47. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
  48. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
  49. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
  50. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
  51. pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
  52. pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
  53. pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
  54. pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
  55. pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
  56. pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
  57. pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
  58. pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
  59. pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
  60. pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
  61. pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
  62. pulumi_oci/desktops/_inputs.py +483 -0
  63. pulumi_oci/desktops/desktop_pool.py +1348 -0
  64. pulumi_oci/desktops/get_desktop.py +223 -0
  65. pulumi_oci/desktops/get_desktop_pool.py +418 -0
  66. pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
  67. pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
  68. pulumi_oci/desktops/get_desktop_pools.py +203 -0
  69. pulumi_oci/desktops/get_desktops.py +214 -0
  70. pulumi_oci/desktops/outputs.py +1738 -0
  71. pulumi_oci/filestorage/mount_target.py +143 -38
  72. pulumi_oci/filestorage/outputs.py +44 -0
  73. pulumi_oci/identity/domains_group.py +34 -0
  74. pulumi_oci/identity/domains_user.py +34 -0
  75. pulumi_oci/identity/get_domains_group.py +11 -1
  76. pulumi_oci/identity/get_domains_user.py +11 -1
  77. pulumi_oci/identity/outputs.py +14 -0
  78. pulumi_oci/kms/_inputs.py +10 -10
  79. pulumi_oci/kms/get_vault.py +14 -1
  80. pulumi_oci/kms/outputs.py +41 -30
  81. pulumi_oci/kms/vault.py +28 -0
  82. pulumi_oci/loadbalancer/load_balancer.py +224 -0
  83. pulumi_oci/loadbalancer/outputs.py +22 -0
  84. pulumi_oci/mysql/_inputs.py +23 -0
  85. pulumi_oci/mysql/get_mysql_db_system.py +15 -2
  86. pulumi_oci/mysql/mysql_db_system.py +53 -0
  87. pulumi_oci/mysql/outputs.py +74 -6
  88. pulumi_oci/ocvp/get_cluster.py +2 -2
  89. pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
  90. pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
  91. pulumi_oci/ocvp/outputs.py +2 -2
  92. pulumi_oci/pulumi-plugin.json +1 -1
  93. pulumi_oci/recoverymod/_inputs.py +0 -8
  94. pulumi_oci/recoverymod/get_protected_database.py +14 -1
  95. pulumi_oci/recoverymod/get_protection_policy.py +14 -1
  96. pulumi_oci/recoverymod/outputs.py +22 -8
  97. pulumi_oci/recoverymod/protected_database.py +80 -3
  98. pulumi_oci/recoverymod/protection_policy.py +49 -0
  99. pulumi_oci/waf/_inputs.py +29 -16
  100. pulumi_oci/waf/outputs.py +33 -10
  101. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/METADATA +1 -1
  102. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/RECORD +104 -86
  103. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/WHEEL +1 -1
  104. pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
  105. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
  106. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
  107. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
  108. pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
  109. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
  110. pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
  111. pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
  112. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  113. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
  114. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
  115. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
  116. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
  117. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
  118. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
  119. {pulumi_oci-2.8.0a1724316519.dist-info → pulumi_oci-2.9.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,1679 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+ from . import outputs
12
+
13
+ __all__ = [
14
+ 'GetDelegatedResourceAccessRequestApprovalInfoResult',
15
+ 'GetDelegatedResourceAccessRequestHistoriesDelegatedResourceAccessRequestHistoryCollectionResult',
16
+ 'GetDelegatedResourceAccessRequestHistoriesDelegatedResourceAccessRequestHistoryCollectionItemResult',
17
+ 'GetDelegatedResourceAccessRequestHistoriesFilterResult',
18
+ 'GetDelegatedResourceAccessRequestsDelegatedResourceAccessRequestSummaryCollectionResult',
19
+ 'GetDelegatedResourceAccessRequestsDelegatedResourceAccessRequestSummaryCollectionItemResult',
20
+ 'GetDelegatedResourceAccessRequestsDelegatedResourceAccessRequestSummaryCollectionItemApprovalInfoResult',
21
+ 'GetDelegatedResourceAccessRequestsFilterResult',
22
+ 'GetDelegationControlResourcesDelegationControlResourceCollectionResult',
23
+ 'GetDelegationControlResourcesDelegationControlResourceCollectionItemResult',
24
+ 'GetDelegationControlResourcesFilterResult',
25
+ 'GetDelegationControlsDelegationControlSummaryCollectionResult',
26
+ 'GetDelegationControlsDelegationControlSummaryCollectionItemResult',
27
+ 'GetDelegationControlsFilterResult',
28
+ 'GetDelegationSubscriptionsDelegationSubscriptionSummaryCollectionResult',
29
+ 'GetDelegationSubscriptionsDelegationSubscriptionSummaryCollectionItemResult',
30
+ 'GetDelegationSubscriptionsFilterResult',
31
+ 'GetServiceProviderActionPropertyResult',
32
+ 'GetServiceProviderActionsFilterResult',
33
+ 'GetServiceProviderActionsServiceProviderActionSummaryCollectionResult',
34
+ 'GetServiceProviderActionsServiceProviderActionSummaryCollectionItemResult',
35
+ 'GetServiceProviderActionsServiceProviderActionSummaryCollectionItemPropertyResult',
36
+ 'GetServiceProvidersFilterResult',
37
+ 'GetServiceProvidersServiceProviderSummaryCollectionResult',
38
+ 'GetServiceProvidersServiceProviderSummaryCollectionItemResult',
39
+ ]
40
+
41
+ @pulumi.output_type
42
+ class GetDelegatedResourceAccessRequestApprovalInfoResult(dict):
43
+ def __init__(__self__, *,
44
+ approval_action: str,
45
+ approval_type: str,
46
+ approver_additional_message: str,
47
+ approver_comment: str,
48
+ approver_id: str,
49
+ time_approved_for_access: str):
50
+ """
51
+ :param str approval_action: Indicated whether the request is approved or rejected.
52
+ :param str approval_type: approval type, initial or extension
53
+ :param str approver_additional_message: Additional message specified by the approver of the request.
54
+ :param str approver_comment: Comment specified by the approver of the request.
55
+ :param str approver_id: User ID of the approver.
56
+ :param str time_approved_for_access: Access start time that is actually approved by the customer in [RFC 3339](https://tools.ietf.org/html/rfc3339)timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
57
+ """
58
+ pulumi.set(__self__, "approval_action", approval_action)
59
+ pulumi.set(__self__, "approval_type", approval_type)
60
+ pulumi.set(__self__, "approver_additional_message", approver_additional_message)
61
+ pulumi.set(__self__, "approver_comment", approver_comment)
62
+ pulumi.set(__self__, "approver_id", approver_id)
63
+ pulumi.set(__self__, "time_approved_for_access", time_approved_for_access)
64
+
65
+ @property
66
+ @pulumi.getter(name="approvalAction")
67
+ def approval_action(self) -> str:
68
+ """
69
+ Indicated whether the request is approved or rejected.
70
+ """
71
+ return pulumi.get(self, "approval_action")
72
+
73
+ @property
74
+ @pulumi.getter(name="approvalType")
75
+ def approval_type(self) -> str:
76
+ """
77
+ approval type, initial or extension
78
+ """
79
+ return pulumi.get(self, "approval_type")
80
+
81
+ @property
82
+ @pulumi.getter(name="approverAdditionalMessage")
83
+ def approver_additional_message(self) -> str:
84
+ """
85
+ Additional message specified by the approver of the request.
86
+ """
87
+ return pulumi.get(self, "approver_additional_message")
88
+
89
+ @property
90
+ @pulumi.getter(name="approverComment")
91
+ def approver_comment(self) -> str:
92
+ """
93
+ Comment specified by the approver of the request.
94
+ """
95
+ return pulumi.get(self, "approver_comment")
96
+
97
+ @property
98
+ @pulumi.getter(name="approverId")
99
+ def approver_id(self) -> str:
100
+ """
101
+ User ID of the approver.
102
+ """
103
+ return pulumi.get(self, "approver_id")
104
+
105
+ @property
106
+ @pulumi.getter(name="timeApprovedForAccess")
107
+ def time_approved_for_access(self) -> str:
108
+ """
109
+ Access start time that is actually approved by the customer in [RFC 3339](https://tools.ietf.org/html/rfc3339)timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
110
+ """
111
+ return pulumi.get(self, "time_approved_for_access")
112
+
113
+
114
+ @pulumi.output_type
115
+ class GetDelegatedResourceAccessRequestHistoriesDelegatedResourceAccessRequestHistoryCollectionResult(dict):
116
+ def __init__(__self__, *,
117
+ items: Sequence['outputs.GetDelegatedResourceAccessRequestHistoriesDelegatedResourceAccessRequestHistoryCollectionItemResult']):
118
+ """
119
+ :param Sequence['GetDelegatedResourceAccessRequestHistoriesDelegatedResourceAccessRequestHistoryCollectionItemArgs'] items: List of DelegatedResourceAccessRequestHistorySummary objects.
120
+ """
121
+ pulumi.set(__self__, "items", items)
122
+
123
+ @property
124
+ @pulumi.getter
125
+ def items(self) -> Sequence['outputs.GetDelegatedResourceAccessRequestHistoriesDelegatedResourceAccessRequestHistoryCollectionItemResult']:
126
+ """
127
+ List of DelegatedResourceAccessRequestHistorySummary objects.
128
+ """
129
+ return pulumi.get(self, "items")
130
+
131
+
132
+ @pulumi.output_type
133
+ class GetDelegatedResourceAccessRequestHistoriesDelegatedResourceAccessRequestHistoryCollectionItemResult(dict):
134
+ def __init__(__self__, *,
135
+ comment: str,
136
+ request_status: str,
137
+ state: str,
138
+ timestamp: str,
139
+ user_id: str):
140
+ """
141
+ :param str comment: Comment about the status change.
142
+ :param str request_status: The current status of the Delegated Resource Access Request.
143
+ :param str state: The current lifecycle state of the Delegated Resource Access Request.
144
+ :param str timestamp: Time when the respective action happened in [RFC 3339](https://tools.ietf.org/html/rfc3339)timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
145
+ :param str user_id: ID of user who modified the Delegated Resource Access Request. For operator, this field is "Operator".
146
+ """
147
+ pulumi.set(__self__, "comment", comment)
148
+ pulumi.set(__self__, "request_status", request_status)
149
+ pulumi.set(__self__, "state", state)
150
+ pulumi.set(__self__, "timestamp", timestamp)
151
+ pulumi.set(__self__, "user_id", user_id)
152
+
153
+ @property
154
+ @pulumi.getter
155
+ def comment(self) -> str:
156
+ """
157
+ Comment about the status change.
158
+ """
159
+ return pulumi.get(self, "comment")
160
+
161
+ @property
162
+ @pulumi.getter(name="requestStatus")
163
+ def request_status(self) -> str:
164
+ """
165
+ The current status of the Delegated Resource Access Request.
166
+ """
167
+ return pulumi.get(self, "request_status")
168
+
169
+ @property
170
+ @pulumi.getter
171
+ def state(self) -> str:
172
+ """
173
+ The current lifecycle state of the Delegated Resource Access Request.
174
+ """
175
+ return pulumi.get(self, "state")
176
+
177
+ @property
178
+ @pulumi.getter
179
+ def timestamp(self) -> str:
180
+ """
181
+ Time when the respective action happened in [RFC 3339](https://tools.ietf.org/html/rfc3339)timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
182
+ """
183
+ return pulumi.get(self, "timestamp")
184
+
185
+ @property
186
+ @pulumi.getter(name="userId")
187
+ def user_id(self) -> str:
188
+ """
189
+ ID of user who modified the Delegated Resource Access Request. For operator, this field is "Operator".
190
+ """
191
+ return pulumi.get(self, "user_id")
192
+
193
+
194
+ @pulumi.output_type
195
+ class GetDelegatedResourceAccessRequestHistoriesFilterResult(dict):
196
+ def __init__(__self__, *,
197
+ name: str,
198
+ values: Sequence[str],
199
+ regex: Optional[bool] = None):
200
+ pulumi.set(__self__, "name", name)
201
+ pulumi.set(__self__, "values", values)
202
+ if regex is not None:
203
+ pulumi.set(__self__, "regex", regex)
204
+
205
+ @property
206
+ @pulumi.getter
207
+ def name(self) -> str:
208
+ return pulumi.get(self, "name")
209
+
210
+ @property
211
+ @pulumi.getter
212
+ def values(self) -> Sequence[str]:
213
+ return pulumi.get(self, "values")
214
+
215
+ @property
216
+ @pulumi.getter
217
+ def regex(self) -> Optional[bool]:
218
+ return pulumi.get(self, "regex")
219
+
220
+
221
+ @pulumi.output_type
222
+ class GetDelegatedResourceAccessRequestsDelegatedResourceAccessRequestSummaryCollectionResult(dict):
223
+ def __init__(__self__, *,
224
+ items: Sequence['outputs.GetDelegatedResourceAccessRequestsDelegatedResourceAccessRequestSummaryCollectionItemResult']):
225
+ pulumi.set(__self__, "items", items)
226
+
227
+ @property
228
+ @pulumi.getter
229
+ def items(self) -> Sequence['outputs.GetDelegatedResourceAccessRequestsDelegatedResourceAccessRequestSummaryCollectionItemResult']:
230
+ return pulumi.get(self, "items")
231
+
232
+
233
+ @pulumi.output_type
234
+ class GetDelegatedResourceAccessRequestsDelegatedResourceAccessRequestSummaryCollectionItemResult(dict):
235
+ def __init__(__self__, *,
236
+ approval_infos: Sequence['outputs.GetDelegatedResourceAccessRequestsDelegatedResourceAccessRequestSummaryCollectionItemApprovalInfoResult'],
237
+ audit_types: Sequence[str],
238
+ closure_comment: str,
239
+ compartment_id: str,
240
+ database_name_lists: Sequence[str],
241
+ defined_tags: Mapping[str, str],
242
+ delegation_control_id: str,
243
+ delegation_subscription_ids: Sequence[str],
244
+ description: str,
245
+ display_name: str,
246
+ duration_in_hours: int,
247
+ extend_duration_in_hours: int,
248
+ freeform_tags: Mapping[str, str],
249
+ id: str,
250
+ is_auto_approved: bool,
251
+ is_pending_more_info: bool,
252
+ lifecycle_state_details: str,
253
+ num_extension_approvals: int,
254
+ num_initial_approvals: int,
255
+ provided_service_types: Sequence[str],
256
+ reason_for_request: str,
257
+ request_status: str,
258
+ requested_action_names: Sequence[str],
259
+ requester_type: str,
260
+ resource_id: str,
261
+ resource_name: str,
262
+ resource_type: str,
263
+ severity: str,
264
+ state: str,
265
+ system_tags: Mapping[str, str],
266
+ ticket_numbers: Sequence[str],
267
+ time_access_requested: str,
268
+ time_created: str,
269
+ time_updated: str):
270
+ """
271
+ :param Sequence['GetDelegatedResourceAccessRequestsDelegatedResourceAccessRequestSummaryCollectionItemApprovalInfoArgs'] approval_infos: In case of single approval, this will have only one item. Else, a list of approvals.
272
+ :param Sequence[str] audit_types: Specifies the type of auditing to be enabled. There are two levels of auditing: command-level and keystroke-level. By default, both command-level and keystroke-level auditing are enabled, i.e. commands and key strokes issued by the support operator are logged.
273
+ :param str closure_comment: The comment entered by the support operator while closing the request.
274
+ :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
275
+ :param Sequence[str] database_name_lists: List of Database unique names for which access is requested. This parameter is required for DLGT_MGMT_SYS_MAINT_ACCESS cage when database access in needed.
276
+ :param Mapping[str, str] defined_tags: 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"}`
277
+ :param str delegation_control_id: unique Delegation Control identifier
278
+ :param Sequence[str] delegation_subscription_ids: List of Delegation Subscription OCID that are associated with this Delegated Resource Access Request based on the service types being requested.
279
+ :param str description: Detailed description of this Delegated Resource Access Request.
280
+ :param str display_name: Display name. This is generated by the system automatically.
281
+ :param int duration_in_hours: Duration in hours for which access is sought on the target resource.
282
+ :param int extend_duration_in_hours: Duration in hours for which extension access is sought on the target resource.
283
+ :param Mapping[str, str] freeform_tags: 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"}`
284
+ :param str id: The OCID of the Delegated Resource Access Request.
285
+ :param bool is_auto_approved: Set to true if the request is approved automatically based on preApprovedServiceProviderActionNames or isAutoApproveDuringMaintenance in the associated Delegation Control.
286
+ :param bool is_pending_more_info: Indicates if the delegated resource access request is waiting on more information from the operator
287
+ :param str lifecycle_state_details: Description of the current lifecycle state in more detail.
288
+ :param int num_extension_approvals: Number of extension approvals that have been obtained so far.
289
+ :param int num_initial_approvals: Number of initial approvals that have been obtained so far.
290
+ :param Sequence[str] provided_service_types: List of Service Provider Service Types being provided by the support operator user.
291
+ :param str reason_for_request: A short description explaining why this Delegated Resource Access Request is needed by the support operator.
292
+ :param str request_status: A filter to return only Delegated Resource Access Requests whose status matches the given Delegated Resource Access Request status.
293
+ :param Sequence[str] requested_action_names: List of Service Provider Action names for which approval is sought by the support operator user. The list of pre-defined Service Provider Actions can be obtained from the ListServiceProviderActions API.
294
+ :param str requester_type: Requester type
295
+ :param str resource_id: A filter to return only Delegated Resource Access Requests for the given resource identifier.
296
+ :param str resource_name: The name of the target resource associated with the Delegated Resource Access Request. The support operator raises a Delegated Resource Access Request to get approval to access the target resource.
297
+ :param str resource_type: Resource type for which the associated Delegation Control is applicable to.
298
+ :param str severity: Priority assigned to the Delegated Resource Access Request by the support operator
299
+ :param str state: A filter to return only Delegated Resource Access Requests whose lifecycleState matches the given Delegated Resource Access Request lifecycleState.
300
+ :param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
301
+ :param Sequence[str] ticket_numbers: A list of ticket numbers related to this Delegated Resource Access Request, e.g. Service Request (SR) number and JIRA ticket number.
302
+ :param str time_access_requested: Requested access start time in UTC.
303
+ :param str time_created: Time when the Delegated Resource Access Request was created in [RFC 3339](https://tools.ietf.org/html/rfc3339)timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
304
+ :param str time_updated: Time when the Delegated Resource Access Request was last modified in [RFC 3339](https://tools.ietf.org/html/rfc3339)timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
305
+ """
306
+ pulumi.set(__self__, "approval_infos", approval_infos)
307
+ pulumi.set(__self__, "audit_types", audit_types)
308
+ pulumi.set(__self__, "closure_comment", closure_comment)
309
+ pulumi.set(__self__, "compartment_id", compartment_id)
310
+ pulumi.set(__self__, "database_name_lists", database_name_lists)
311
+ pulumi.set(__self__, "defined_tags", defined_tags)
312
+ pulumi.set(__self__, "delegation_control_id", delegation_control_id)
313
+ pulumi.set(__self__, "delegation_subscription_ids", delegation_subscription_ids)
314
+ pulumi.set(__self__, "description", description)
315
+ pulumi.set(__self__, "display_name", display_name)
316
+ pulumi.set(__self__, "duration_in_hours", duration_in_hours)
317
+ pulumi.set(__self__, "extend_duration_in_hours", extend_duration_in_hours)
318
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
319
+ pulumi.set(__self__, "id", id)
320
+ pulumi.set(__self__, "is_auto_approved", is_auto_approved)
321
+ pulumi.set(__self__, "is_pending_more_info", is_pending_more_info)
322
+ pulumi.set(__self__, "lifecycle_state_details", lifecycle_state_details)
323
+ pulumi.set(__self__, "num_extension_approvals", num_extension_approvals)
324
+ pulumi.set(__self__, "num_initial_approvals", num_initial_approvals)
325
+ pulumi.set(__self__, "provided_service_types", provided_service_types)
326
+ pulumi.set(__self__, "reason_for_request", reason_for_request)
327
+ pulumi.set(__self__, "request_status", request_status)
328
+ pulumi.set(__self__, "requested_action_names", requested_action_names)
329
+ pulumi.set(__self__, "requester_type", requester_type)
330
+ pulumi.set(__self__, "resource_id", resource_id)
331
+ pulumi.set(__self__, "resource_name", resource_name)
332
+ pulumi.set(__self__, "resource_type", resource_type)
333
+ pulumi.set(__self__, "severity", severity)
334
+ pulumi.set(__self__, "state", state)
335
+ pulumi.set(__self__, "system_tags", system_tags)
336
+ pulumi.set(__self__, "ticket_numbers", ticket_numbers)
337
+ pulumi.set(__self__, "time_access_requested", time_access_requested)
338
+ pulumi.set(__self__, "time_created", time_created)
339
+ pulumi.set(__self__, "time_updated", time_updated)
340
+
341
+ @property
342
+ @pulumi.getter(name="approvalInfos")
343
+ def approval_infos(self) -> Sequence['outputs.GetDelegatedResourceAccessRequestsDelegatedResourceAccessRequestSummaryCollectionItemApprovalInfoResult']:
344
+ """
345
+ In case of single approval, this will have only one item. Else, a list of approvals.
346
+ """
347
+ return pulumi.get(self, "approval_infos")
348
+
349
+ @property
350
+ @pulumi.getter(name="auditTypes")
351
+ def audit_types(self) -> Sequence[str]:
352
+ """
353
+ Specifies the type of auditing to be enabled. There are two levels of auditing: command-level and keystroke-level. By default, both command-level and keystroke-level auditing are enabled, i.e. commands and key strokes issued by the support operator are logged.
354
+ """
355
+ return pulumi.get(self, "audit_types")
356
+
357
+ @property
358
+ @pulumi.getter(name="closureComment")
359
+ def closure_comment(self) -> str:
360
+ """
361
+ The comment entered by the support operator while closing the request.
362
+ """
363
+ return pulumi.get(self, "closure_comment")
364
+
365
+ @property
366
+ @pulumi.getter(name="compartmentId")
367
+ def compartment_id(self) -> str:
368
+ """
369
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
370
+ """
371
+ return pulumi.get(self, "compartment_id")
372
+
373
+ @property
374
+ @pulumi.getter(name="databaseNameLists")
375
+ def database_name_lists(self) -> Sequence[str]:
376
+ """
377
+ List of Database unique names for which access is requested. This parameter is required for DLGT_MGMT_SYS_MAINT_ACCESS cage when database access in needed.
378
+ """
379
+ return pulumi.get(self, "database_name_lists")
380
+
381
+ @property
382
+ @pulumi.getter(name="definedTags")
383
+ def defined_tags(self) -> Mapping[str, str]:
384
+ """
385
+ 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"}`
386
+ """
387
+ return pulumi.get(self, "defined_tags")
388
+
389
+ @property
390
+ @pulumi.getter(name="delegationControlId")
391
+ def delegation_control_id(self) -> str:
392
+ """
393
+ unique Delegation Control identifier
394
+ """
395
+ return pulumi.get(self, "delegation_control_id")
396
+
397
+ @property
398
+ @pulumi.getter(name="delegationSubscriptionIds")
399
+ def delegation_subscription_ids(self) -> Sequence[str]:
400
+ """
401
+ List of Delegation Subscription OCID that are associated with this Delegated Resource Access Request based on the service types being requested.
402
+ """
403
+ return pulumi.get(self, "delegation_subscription_ids")
404
+
405
+ @property
406
+ @pulumi.getter
407
+ def description(self) -> str:
408
+ """
409
+ Detailed description of this Delegated Resource Access Request.
410
+ """
411
+ return pulumi.get(self, "description")
412
+
413
+ @property
414
+ @pulumi.getter(name="displayName")
415
+ def display_name(self) -> str:
416
+ """
417
+ Display name. This is generated by the system automatically.
418
+ """
419
+ return pulumi.get(self, "display_name")
420
+
421
+ @property
422
+ @pulumi.getter(name="durationInHours")
423
+ def duration_in_hours(self) -> int:
424
+ """
425
+ Duration in hours for which access is sought on the target resource.
426
+ """
427
+ return pulumi.get(self, "duration_in_hours")
428
+
429
+ @property
430
+ @pulumi.getter(name="extendDurationInHours")
431
+ def extend_duration_in_hours(self) -> int:
432
+ """
433
+ Duration in hours for which extension access is sought on the target resource.
434
+ """
435
+ return pulumi.get(self, "extend_duration_in_hours")
436
+
437
+ @property
438
+ @pulumi.getter(name="freeformTags")
439
+ def freeform_tags(self) -> Mapping[str, str]:
440
+ """
441
+ 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"}`
442
+ """
443
+ return pulumi.get(self, "freeform_tags")
444
+
445
+ @property
446
+ @pulumi.getter
447
+ def id(self) -> str:
448
+ """
449
+ The OCID of the Delegated Resource Access Request.
450
+ """
451
+ return pulumi.get(self, "id")
452
+
453
+ @property
454
+ @pulumi.getter(name="isAutoApproved")
455
+ def is_auto_approved(self) -> bool:
456
+ """
457
+ Set to true if the request is approved automatically based on preApprovedServiceProviderActionNames or isAutoApproveDuringMaintenance in the associated Delegation Control.
458
+ """
459
+ return pulumi.get(self, "is_auto_approved")
460
+
461
+ @property
462
+ @pulumi.getter(name="isPendingMoreInfo")
463
+ def is_pending_more_info(self) -> bool:
464
+ """
465
+ Indicates if the delegated resource access request is waiting on more information from the operator
466
+ """
467
+ return pulumi.get(self, "is_pending_more_info")
468
+
469
+ @property
470
+ @pulumi.getter(name="lifecycleStateDetails")
471
+ def lifecycle_state_details(self) -> str:
472
+ """
473
+ Description of the current lifecycle state in more detail.
474
+ """
475
+ return pulumi.get(self, "lifecycle_state_details")
476
+
477
+ @property
478
+ @pulumi.getter(name="numExtensionApprovals")
479
+ def num_extension_approvals(self) -> int:
480
+ """
481
+ Number of extension approvals that have been obtained so far.
482
+ """
483
+ return pulumi.get(self, "num_extension_approvals")
484
+
485
+ @property
486
+ @pulumi.getter(name="numInitialApprovals")
487
+ def num_initial_approvals(self) -> int:
488
+ """
489
+ Number of initial approvals that have been obtained so far.
490
+ """
491
+ return pulumi.get(self, "num_initial_approvals")
492
+
493
+ @property
494
+ @pulumi.getter(name="providedServiceTypes")
495
+ def provided_service_types(self) -> Sequence[str]:
496
+ """
497
+ List of Service Provider Service Types being provided by the support operator user.
498
+ """
499
+ return pulumi.get(self, "provided_service_types")
500
+
501
+ @property
502
+ @pulumi.getter(name="reasonForRequest")
503
+ def reason_for_request(self) -> str:
504
+ """
505
+ A short description explaining why this Delegated Resource Access Request is needed by the support operator.
506
+ """
507
+ return pulumi.get(self, "reason_for_request")
508
+
509
+ @property
510
+ @pulumi.getter(name="requestStatus")
511
+ def request_status(self) -> str:
512
+ """
513
+ A filter to return only Delegated Resource Access Requests whose status matches the given Delegated Resource Access Request status.
514
+ """
515
+ return pulumi.get(self, "request_status")
516
+
517
+ @property
518
+ @pulumi.getter(name="requestedActionNames")
519
+ def requested_action_names(self) -> Sequence[str]:
520
+ """
521
+ List of Service Provider Action names for which approval is sought by the support operator user. The list of pre-defined Service Provider Actions can be obtained from the ListServiceProviderActions API.
522
+ """
523
+ return pulumi.get(self, "requested_action_names")
524
+
525
+ @property
526
+ @pulumi.getter(name="requesterType")
527
+ def requester_type(self) -> str:
528
+ """
529
+ Requester type
530
+ """
531
+ return pulumi.get(self, "requester_type")
532
+
533
+ @property
534
+ @pulumi.getter(name="resourceId")
535
+ def resource_id(self) -> str:
536
+ """
537
+ A filter to return only Delegated Resource Access Requests for the given resource identifier.
538
+ """
539
+ return pulumi.get(self, "resource_id")
540
+
541
+ @property
542
+ @pulumi.getter(name="resourceName")
543
+ def resource_name(self) -> str:
544
+ """
545
+ The name of the target resource associated with the Delegated Resource Access Request. The support operator raises a Delegated Resource Access Request to get approval to access the target resource.
546
+ """
547
+ return pulumi.get(self, "resource_name")
548
+
549
+ @property
550
+ @pulumi.getter(name="resourceType")
551
+ def resource_type(self) -> str:
552
+ """
553
+ Resource type for which the associated Delegation Control is applicable to.
554
+ """
555
+ return pulumi.get(self, "resource_type")
556
+
557
+ @property
558
+ @pulumi.getter
559
+ def severity(self) -> str:
560
+ """
561
+ Priority assigned to the Delegated Resource Access Request by the support operator
562
+ """
563
+ return pulumi.get(self, "severity")
564
+
565
+ @property
566
+ @pulumi.getter
567
+ def state(self) -> str:
568
+ """
569
+ A filter to return only Delegated Resource Access Requests whose lifecycleState matches the given Delegated Resource Access Request lifecycleState.
570
+ """
571
+ return pulumi.get(self, "state")
572
+
573
+ @property
574
+ @pulumi.getter(name="systemTags")
575
+ def system_tags(self) -> Mapping[str, str]:
576
+ """
577
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
578
+ """
579
+ return pulumi.get(self, "system_tags")
580
+
581
+ @property
582
+ @pulumi.getter(name="ticketNumbers")
583
+ def ticket_numbers(self) -> Sequence[str]:
584
+ """
585
+ A list of ticket numbers related to this Delegated Resource Access Request, e.g. Service Request (SR) number and JIRA ticket number.
586
+ """
587
+ return pulumi.get(self, "ticket_numbers")
588
+
589
+ @property
590
+ @pulumi.getter(name="timeAccessRequested")
591
+ def time_access_requested(self) -> str:
592
+ """
593
+ Requested access start time in UTC.
594
+ """
595
+ return pulumi.get(self, "time_access_requested")
596
+
597
+ @property
598
+ @pulumi.getter(name="timeCreated")
599
+ def time_created(self) -> str:
600
+ """
601
+ Time when the Delegated Resource Access Request was created in [RFC 3339](https://tools.ietf.org/html/rfc3339)timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
602
+ """
603
+ return pulumi.get(self, "time_created")
604
+
605
+ @property
606
+ @pulumi.getter(name="timeUpdated")
607
+ def time_updated(self) -> str:
608
+ """
609
+ Time when the Delegated Resource Access Request was last modified in [RFC 3339](https://tools.ietf.org/html/rfc3339)timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
610
+ """
611
+ return pulumi.get(self, "time_updated")
612
+
613
+
614
+ @pulumi.output_type
615
+ class GetDelegatedResourceAccessRequestsDelegatedResourceAccessRequestSummaryCollectionItemApprovalInfoResult(dict):
616
+ def __init__(__self__, *,
617
+ approval_action: str,
618
+ approval_type: str,
619
+ approver_additional_message: str,
620
+ approver_comment: str,
621
+ approver_id: str,
622
+ time_approved_for_access: str):
623
+ """
624
+ :param str approval_action: Indicated whether the request is approved or rejected.
625
+ :param str approval_type: approval type, initial or extension
626
+ :param str approver_additional_message: Additional message specified by the approver of the request.
627
+ :param str approver_comment: Comment specified by the approver of the request.
628
+ :param str approver_id: User ID of the approver.
629
+ :param str time_approved_for_access: Access start time that is actually approved by the customer in [RFC 3339](https://tools.ietf.org/html/rfc3339)timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
630
+ """
631
+ pulumi.set(__self__, "approval_action", approval_action)
632
+ pulumi.set(__self__, "approval_type", approval_type)
633
+ pulumi.set(__self__, "approver_additional_message", approver_additional_message)
634
+ pulumi.set(__self__, "approver_comment", approver_comment)
635
+ pulumi.set(__self__, "approver_id", approver_id)
636
+ pulumi.set(__self__, "time_approved_for_access", time_approved_for_access)
637
+
638
+ @property
639
+ @pulumi.getter(name="approvalAction")
640
+ def approval_action(self) -> str:
641
+ """
642
+ Indicated whether the request is approved or rejected.
643
+ """
644
+ return pulumi.get(self, "approval_action")
645
+
646
+ @property
647
+ @pulumi.getter(name="approvalType")
648
+ def approval_type(self) -> str:
649
+ """
650
+ approval type, initial or extension
651
+ """
652
+ return pulumi.get(self, "approval_type")
653
+
654
+ @property
655
+ @pulumi.getter(name="approverAdditionalMessage")
656
+ def approver_additional_message(self) -> str:
657
+ """
658
+ Additional message specified by the approver of the request.
659
+ """
660
+ return pulumi.get(self, "approver_additional_message")
661
+
662
+ @property
663
+ @pulumi.getter(name="approverComment")
664
+ def approver_comment(self) -> str:
665
+ """
666
+ Comment specified by the approver of the request.
667
+ """
668
+ return pulumi.get(self, "approver_comment")
669
+
670
+ @property
671
+ @pulumi.getter(name="approverId")
672
+ def approver_id(self) -> str:
673
+ """
674
+ User ID of the approver.
675
+ """
676
+ return pulumi.get(self, "approver_id")
677
+
678
+ @property
679
+ @pulumi.getter(name="timeApprovedForAccess")
680
+ def time_approved_for_access(self) -> str:
681
+ """
682
+ Access start time that is actually approved by the customer in [RFC 3339](https://tools.ietf.org/html/rfc3339)timestamp format, e.g. '2020-05-22T21:10:29.600Z'.
683
+ """
684
+ return pulumi.get(self, "time_approved_for_access")
685
+
686
+
687
+ @pulumi.output_type
688
+ class GetDelegatedResourceAccessRequestsFilterResult(dict):
689
+ def __init__(__self__, *,
690
+ name: str,
691
+ values: Sequence[str],
692
+ regex: Optional[bool] = None):
693
+ pulumi.set(__self__, "name", name)
694
+ pulumi.set(__self__, "values", values)
695
+ if regex is not None:
696
+ pulumi.set(__self__, "regex", regex)
697
+
698
+ @property
699
+ @pulumi.getter
700
+ def name(self) -> str:
701
+ return pulumi.get(self, "name")
702
+
703
+ @property
704
+ @pulumi.getter
705
+ def values(self) -> Sequence[str]:
706
+ return pulumi.get(self, "values")
707
+
708
+ @property
709
+ @pulumi.getter
710
+ def regex(self) -> Optional[bool]:
711
+ return pulumi.get(self, "regex")
712
+
713
+
714
+ @pulumi.output_type
715
+ class GetDelegationControlResourcesDelegationControlResourceCollectionResult(dict):
716
+ def __init__(__self__, *,
717
+ items: Sequence['outputs.GetDelegationControlResourcesDelegationControlResourceCollectionItemResult']):
718
+ """
719
+ :param Sequence['GetDelegationControlResourcesDelegationControlResourceCollectionItemArgs'] items: List of DelegationControlResourceSummary objects.
720
+ """
721
+ pulumi.set(__self__, "items", items)
722
+
723
+ @property
724
+ @pulumi.getter
725
+ def items(self) -> Sequence['outputs.GetDelegationControlResourcesDelegationControlResourceCollectionItemResult']:
726
+ """
727
+ List of DelegationControlResourceSummary objects.
728
+ """
729
+ return pulumi.get(self, "items")
730
+
731
+
732
+ @pulumi.output_type
733
+ class GetDelegationControlResourcesDelegationControlResourceCollectionItemResult(dict):
734
+ def __init__(__self__, *,
735
+ id: str,
736
+ resource_status: str):
737
+ """
738
+ :param str id: OCID of the resource.
739
+ :param str resource_status: The current status of the resource in Delegation Control.
740
+ """
741
+ pulumi.set(__self__, "id", id)
742
+ pulumi.set(__self__, "resource_status", resource_status)
743
+
744
+ @property
745
+ @pulumi.getter
746
+ def id(self) -> str:
747
+ """
748
+ OCID of the resource.
749
+ """
750
+ return pulumi.get(self, "id")
751
+
752
+ @property
753
+ @pulumi.getter(name="resourceStatus")
754
+ def resource_status(self) -> str:
755
+ """
756
+ The current status of the resource in Delegation Control.
757
+ """
758
+ return pulumi.get(self, "resource_status")
759
+
760
+
761
+ @pulumi.output_type
762
+ class GetDelegationControlResourcesFilterResult(dict):
763
+ def __init__(__self__, *,
764
+ name: str,
765
+ values: Sequence[str],
766
+ regex: Optional[bool] = None):
767
+ pulumi.set(__self__, "name", name)
768
+ pulumi.set(__self__, "values", values)
769
+ if regex is not None:
770
+ pulumi.set(__self__, "regex", regex)
771
+
772
+ @property
773
+ @pulumi.getter
774
+ def name(self) -> str:
775
+ return pulumi.get(self, "name")
776
+
777
+ @property
778
+ @pulumi.getter
779
+ def values(self) -> Sequence[str]:
780
+ return pulumi.get(self, "values")
781
+
782
+ @property
783
+ @pulumi.getter
784
+ def regex(self) -> Optional[bool]:
785
+ return pulumi.get(self, "regex")
786
+
787
+
788
+ @pulumi.output_type
789
+ class GetDelegationControlsDelegationControlSummaryCollectionResult(dict):
790
+ def __init__(__self__, *,
791
+ items: Sequence['outputs.GetDelegationControlsDelegationControlSummaryCollectionItemResult']):
792
+ pulumi.set(__self__, "items", items)
793
+
794
+ @property
795
+ @pulumi.getter
796
+ def items(self) -> Sequence['outputs.GetDelegationControlsDelegationControlSummaryCollectionItemResult']:
797
+ return pulumi.get(self, "items")
798
+
799
+
800
+ @pulumi.output_type
801
+ class GetDelegationControlsDelegationControlSummaryCollectionItemResult(dict):
802
+ def __init__(__self__, *,
803
+ compartment_id: str,
804
+ defined_tags: Mapping[str, str],
805
+ delegation_subscription_ids: Sequence[str],
806
+ description: str,
807
+ display_name: str,
808
+ freeform_tags: Mapping[str, str],
809
+ id: str,
810
+ is_auto_approve_during_maintenance: bool,
811
+ lifecycle_state_details: str,
812
+ notification_message_format: str,
813
+ notification_topic_id: str,
814
+ num_approvals_required: int,
815
+ pre_approved_service_provider_action_names: Sequence[str],
816
+ resource_ids: Sequence[str],
817
+ resource_type: str,
818
+ state: str,
819
+ system_tags: Mapping[str, str],
820
+ time_created: str,
821
+ time_deleted: str,
822
+ time_updated: str,
823
+ vault_id: str,
824
+ vault_key_id: str):
825
+ """
826
+ :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
827
+ :param Mapping[str, str] defined_tags: 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"}`
828
+ :param Sequence[str] delegation_subscription_ids: List of Delegation Subscription OCID that are allowed for this Delegation Control. The allowed subscriptions will determine the available Service Provider Actions. Only support operators for the allowed subscriptions are allowed to create Delegated Resource Access Request.
829
+ :param str description: Description of the Delegation Control.
830
+ :param str display_name: A filter to return Delegation Control resources that match the given display name.
831
+ :param Mapping[str, str] freeform_tags: 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"}`
832
+ :param str id: The OCID of the Delegation Control.
833
+ :param bool is_auto_approve_during_maintenance: Set to true to allow all Delegated Resource Access Request to be approved automatically during maintenance.
834
+ :param str lifecycle_state_details: Description of the current lifecycle state in more detail.
835
+ :param str notification_message_format: The format of the Oracle Cloud Infrastructure Notification messages for this Delegation Control.
836
+ :param str notification_topic_id: The OCID of the Oracle Cloud Infrastructure Notification topic to publish messages related to this Delegation Control.
837
+ :param int num_approvals_required: number of approvals required.
838
+ :param Sequence[str] pre_approved_service_provider_action_names: List of pre-approved Service Provider Action names. The list of pre-defined Service Provider Actions can be obtained from the ListServiceProviderActions API. Delegated Resource Access Requests associated with a resource governed by this Delegation Control will be automatically approved if the Delegated Resource Access Request only contain Service Provider Actions in the pre-approved list.
839
+ :param Sequence[str] resource_ids: The OCID of the selected resources that this Delegation Control is applicable to.
840
+ :param str resource_type: A filter to return only resources that match the given resource type.
841
+ :param str state: A filter to return only Delegation Control resources whose lifecycleState matches the given Delegation Control lifecycle state.
842
+ :param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
843
+ :param str time_created: Time when the Delegation Control was created expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
844
+ :param str time_deleted: Time when the Delegation Control was deleted expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339)timestamp format, e.g. '2020-05-22T21:10:29.600Z'. Note a deleted Delegation Control still stays in the system, so that you can still audit Service Provider Actions associated with Delegated Resource Access Requests raised on target resources governed by the deleted Delegation Control.
845
+ :param str time_updated: Time when the Delegation Control was last modified expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
846
+ :param str vault_id: The OCID of the Oracle Cloud Infrastructure Vault that will store the secrets containing the SSH keys to access the resource governed by this Delegation Control by Delegate Access Control Service. This property is required when resourceType is CLOUDVMCLUSTER. Delegate Access Control Service will generate the SSH keys and store them as secrets in the Oracle Cloud Infrastructure Vault.
847
+ :param str vault_key_id: The OCID of the Master Encryption Key in the Oracle Cloud Infrastructure Vault specified by vaultId. This key will be used to encrypt the SSH keys to access the resource governed by this Delegation Control by Delegate Access Control Service. This property is required when resourceType is CLOUDVMCLUSTER.
848
+ """
849
+ pulumi.set(__self__, "compartment_id", compartment_id)
850
+ pulumi.set(__self__, "defined_tags", defined_tags)
851
+ pulumi.set(__self__, "delegation_subscription_ids", delegation_subscription_ids)
852
+ pulumi.set(__self__, "description", description)
853
+ pulumi.set(__self__, "display_name", display_name)
854
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
855
+ pulumi.set(__self__, "id", id)
856
+ pulumi.set(__self__, "is_auto_approve_during_maintenance", is_auto_approve_during_maintenance)
857
+ pulumi.set(__self__, "lifecycle_state_details", lifecycle_state_details)
858
+ pulumi.set(__self__, "notification_message_format", notification_message_format)
859
+ pulumi.set(__self__, "notification_topic_id", notification_topic_id)
860
+ pulumi.set(__self__, "num_approvals_required", num_approvals_required)
861
+ pulumi.set(__self__, "pre_approved_service_provider_action_names", pre_approved_service_provider_action_names)
862
+ pulumi.set(__self__, "resource_ids", resource_ids)
863
+ pulumi.set(__self__, "resource_type", resource_type)
864
+ pulumi.set(__self__, "state", state)
865
+ pulumi.set(__self__, "system_tags", system_tags)
866
+ pulumi.set(__self__, "time_created", time_created)
867
+ pulumi.set(__self__, "time_deleted", time_deleted)
868
+ pulumi.set(__self__, "time_updated", time_updated)
869
+ pulumi.set(__self__, "vault_id", vault_id)
870
+ pulumi.set(__self__, "vault_key_id", vault_key_id)
871
+
872
+ @property
873
+ @pulumi.getter(name="compartmentId")
874
+ def compartment_id(self) -> str:
875
+ """
876
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
877
+ """
878
+ return pulumi.get(self, "compartment_id")
879
+
880
+ @property
881
+ @pulumi.getter(name="definedTags")
882
+ def defined_tags(self) -> Mapping[str, str]:
883
+ """
884
+ 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"}`
885
+ """
886
+ return pulumi.get(self, "defined_tags")
887
+
888
+ @property
889
+ @pulumi.getter(name="delegationSubscriptionIds")
890
+ def delegation_subscription_ids(self) -> Sequence[str]:
891
+ """
892
+ List of Delegation Subscription OCID that are allowed for this Delegation Control. The allowed subscriptions will determine the available Service Provider Actions. Only support operators for the allowed subscriptions are allowed to create Delegated Resource Access Request.
893
+ """
894
+ return pulumi.get(self, "delegation_subscription_ids")
895
+
896
+ @property
897
+ @pulumi.getter
898
+ def description(self) -> str:
899
+ """
900
+ Description of the Delegation Control.
901
+ """
902
+ return pulumi.get(self, "description")
903
+
904
+ @property
905
+ @pulumi.getter(name="displayName")
906
+ def display_name(self) -> str:
907
+ """
908
+ A filter to return Delegation Control resources that match the given display name.
909
+ """
910
+ return pulumi.get(self, "display_name")
911
+
912
+ @property
913
+ @pulumi.getter(name="freeformTags")
914
+ def freeform_tags(self) -> Mapping[str, str]:
915
+ """
916
+ 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"}`
917
+ """
918
+ return pulumi.get(self, "freeform_tags")
919
+
920
+ @property
921
+ @pulumi.getter
922
+ def id(self) -> str:
923
+ """
924
+ The OCID of the Delegation Control.
925
+ """
926
+ return pulumi.get(self, "id")
927
+
928
+ @property
929
+ @pulumi.getter(name="isAutoApproveDuringMaintenance")
930
+ def is_auto_approve_during_maintenance(self) -> bool:
931
+ """
932
+ Set to true to allow all Delegated Resource Access Request to be approved automatically during maintenance.
933
+ """
934
+ return pulumi.get(self, "is_auto_approve_during_maintenance")
935
+
936
+ @property
937
+ @pulumi.getter(name="lifecycleStateDetails")
938
+ def lifecycle_state_details(self) -> str:
939
+ """
940
+ Description of the current lifecycle state in more detail.
941
+ """
942
+ return pulumi.get(self, "lifecycle_state_details")
943
+
944
+ @property
945
+ @pulumi.getter(name="notificationMessageFormat")
946
+ def notification_message_format(self) -> str:
947
+ """
948
+ The format of the Oracle Cloud Infrastructure Notification messages for this Delegation Control.
949
+ """
950
+ return pulumi.get(self, "notification_message_format")
951
+
952
+ @property
953
+ @pulumi.getter(name="notificationTopicId")
954
+ def notification_topic_id(self) -> str:
955
+ """
956
+ The OCID of the Oracle Cloud Infrastructure Notification topic to publish messages related to this Delegation Control.
957
+ """
958
+ return pulumi.get(self, "notification_topic_id")
959
+
960
+ @property
961
+ @pulumi.getter(name="numApprovalsRequired")
962
+ def num_approvals_required(self) -> int:
963
+ """
964
+ number of approvals required.
965
+ """
966
+ return pulumi.get(self, "num_approvals_required")
967
+
968
+ @property
969
+ @pulumi.getter(name="preApprovedServiceProviderActionNames")
970
+ def pre_approved_service_provider_action_names(self) -> Sequence[str]:
971
+ """
972
+ List of pre-approved Service Provider Action names. The list of pre-defined Service Provider Actions can be obtained from the ListServiceProviderActions API. Delegated Resource Access Requests associated with a resource governed by this Delegation Control will be automatically approved if the Delegated Resource Access Request only contain Service Provider Actions in the pre-approved list.
973
+ """
974
+ return pulumi.get(self, "pre_approved_service_provider_action_names")
975
+
976
+ @property
977
+ @pulumi.getter(name="resourceIds")
978
+ def resource_ids(self) -> Sequence[str]:
979
+ """
980
+ The OCID of the selected resources that this Delegation Control is applicable to.
981
+ """
982
+ return pulumi.get(self, "resource_ids")
983
+
984
+ @property
985
+ @pulumi.getter(name="resourceType")
986
+ def resource_type(self) -> str:
987
+ """
988
+ A filter to return only resources that match the given resource type.
989
+ """
990
+ return pulumi.get(self, "resource_type")
991
+
992
+ @property
993
+ @pulumi.getter
994
+ def state(self) -> str:
995
+ """
996
+ A filter to return only Delegation Control resources whose lifecycleState matches the given Delegation Control lifecycle state.
997
+ """
998
+ return pulumi.get(self, "state")
999
+
1000
+ @property
1001
+ @pulumi.getter(name="systemTags")
1002
+ def system_tags(self) -> Mapping[str, str]:
1003
+ """
1004
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1005
+ """
1006
+ return pulumi.get(self, "system_tags")
1007
+
1008
+ @property
1009
+ @pulumi.getter(name="timeCreated")
1010
+ def time_created(self) -> str:
1011
+ """
1012
+ Time when the Delegation Control was created expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
1013
+ """
1014
+ return pulumi.get(self, "time_created")
1015
+
1016
+ @property
1017
+ @pulumi.getter(name="timeDeleted")
1018
+ def time_deleted(self) -> str:
1019
+ """
1020
+ Time when the Delegation Control was deleted expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339)timestamp format, e.g. '2020-05-22T21:10:29.600Z'. Note a deleted Delegation Control still stays in the system, so that you can still audit Service Provider Actions associated with Delegated Resource Access Requests raised on target resources governed by the deleted Delegation Control.
1021
+ """
1022
+ return pulumi.get(self, "time_deleted")
1023
+
1024
+ @property
1025
+ @pulumi.getter(name="timeUpdated")
1026
+ def time_updated(self) -> str:
1027
+ """
1028
+ Time when the Delegation Control was last modified expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
1029
+ """
1030
+ return pulumi.get(self, "time_updated")
1031
+
1032
+ @property
1033
+ @pulumi.getter(name="vaultId")
1034
+ def vault_id(self) -> str:
1035
+ """
1036
+ The OCID of the Oracle Cloud Infrastructure Vault that will store the secrets containing the SSH keys to access the resource governed by this Delegation Control by Delegate Access Control Service. This property is required when resourceType is CLOUDVMCLUSTER. Delegate Access Control Service will generate the SSH keys and store them as secrets in the Oracle Cloud Infrastructure Vault.
1037
+ """
1038
+ return pulumi.get(self, "vault_id")
1039
+
1040
+ @property
1041
+ @pulumi.getter(name="vaultKeyId")
1042
+ def vault_key_id(self) -> str:
1043
+ """
1044
+ The OCID of the Master Encryption Key in the Oracle Cloud Infrastructure Vault specified by vaultId. This key will be used to encrypt the SSH keys to access the resource governed by this Delegation Control by Delegate Access Control Service. This property is required when resourceType is CLOUDVMCLUSTER.
1045
+ """
1046
+ return pulumi.get(self, "vault_key_id")
1047
+
1048
+
1049
+ @pulumi.output_type
1050
+ class GetDelegationControlsFilterResult(dict):
1051
+ def __init__(__self__, *,
1052
+ name: str,
1053
+ values: Sequence[str],
1054
+ regex: Optional[bool] = None):
1055
+ pulumi.set(__self__, "name", name)
1056
+ pulumi.set(__self__, "values", values)
1057
+ if regex is not None:
1058
+ pulumi.set(__self__, "regex", regex)
1059
+
1060
+ @property
1061
+ @pulumi.getter
1062
+ def name(self) -> str:
1063
+ return pulumi.get(self, "name")
1064
+
1065
+ @property
1066
+ @pulumi.getter
1067
+ def values(self) -> Sequence[str]:
1068
+ return pulumi.get(self, "values")
1069
+
1070
+ @property
1071
+ @pulumi.getter
1072
+ def regex(self) -> Optional[bool]:
1073
+ return pulumi.get(self, "regex")
1074
+
1075
+
1076
+ @pulumi.output_type
1077
+ class GetDelegationSubscriptionsDelegationSubscriptionSummaryCollectionResult(dict):
1078
+ def __init__(__self__, *,
1079
+ items: Sequence['outputs.GetDelegationSubscriptionsDelegationSubscriptionSummaryCollectionItemResult']):
1080
+ pulumi.set(__self__, "items", items)
1081
+
1082
+ @property
1083
+ @pulumi.getter
1084
+ def items(self) -> Sequence['outputs.GetDelegationSubscriptionsDelegationSubscriptionSummaryCollectionItemResult']:
1085
+ return pulumi.get(self, "items")
1086
+
1087
+
1088
+ @pulumi.output_type
1089
+ class GetDelegationSubscriptionsDelegationSubscriptionSummaryCollectionItemResult(dict):
1090
+ def __init__(__self__, *,
1091
+ compartment_id: str,
1092
+ defined_tags: Mapping[str, str],
1093
+ description: str,
1094
+ display_name: str,
1095
+ freeform_tags: Mapping[str, str],
1096
+ id: str,
1097
+ lifecycle_state_details: str,
1098
+ service_provider_id: str,
1099
+ state: str,
1100
+ subscribed_service_type: str,
1101
+ system_tags: Mapping[str, str],
1102
+ time_created: str,
1103
+ time_updated: str):
1104
+ """
1105
+ :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
1106
+ :param Mapping[str, str] defined_tags: 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"}`
1107
+ :param str description: Description of the Delegation Subscription.
1108
+ :param str display_name: A filter to return Delegation Subscription resources that match the given display name.
1109
+ :param Mapping[str, str] freeform_tags: 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"}`
1110
+ :param str id: Unique identifier for the Delegation Subscription.
1111
+ :param str lifecycle_state_details: Description of the current lifecycle state in more detail.
1112
+ :param str service_provider_id: Unique identifier of the Service Provider.
1113
+ :param str state: A filter to return only Delegation Subscription resources whose lifecycleState matches the given Delegation Subscription lifecycle state.
1114
+ :param str subscribed_service_type: Subscribed Service Provider Service Type.
1115
+ :param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1116
+ :param 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'
1117
+ :param 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'
1118
+ """
1119
+ pulumi.set(__self__, "compartment_id", compartment_id)
1120
+ pulumi.set(__self__, "defined_tags", defined_tags)
1121
+ pulumi.set(__self__, "description", description)
1122
+ pulumi.set(__self__, "display_name", display_name)
1123
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
1124
+ pulumi.set(__self__, "id", id)
1125
+ pulumi.set(__self__, "lifecycle_state_details", lifecycle_state_details)
1126
+ pulumi.set(__self__, "service_provider_id", service_provider_id)
1127
+ pulumi.set(__self__, "state", state)
1128
+ pulumi.set(__self__, "subscribed_service_type", subscribed_service_type)
1129
+ pulumi.set(__self__, "system_tags", system_tags)
1130
+ pulumi.set(__self__, "time_created", time_created)
1131
+ pulumi.set(__self__, "time_updated", time_updated)
1132
+
1133
+ @property
1134
+ @pulumi.getter(name="compartmentId")
1135
+ def compartment_id(self) -> str:
1136
+ """
1137
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
1138
+ """
1139
+ return pulumi.get(self, "compartment_id")
1140
+
1141
+ @property
1142
+ @pulumi.getter(name="definedTags")
1143
+ def defined_tags(self) -> Mapping[str, str]:
1144
+ """
1145
+ 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"}`
1146
+ """
1147
+ return pulumi.get(self, "defined_tags")
1148
+
1149
+ @property
1150
+ @pulumi.getter
1151
+ def description(self) -> str:
1152
+ """
1153
+ Description of the Delegation Subscription.
1154
+ """
1155
+ return pulumi.get(self, "description")
1156
+
1157
+ @property
1158
+ @pulumi.getter(name="displayName")
1159
+ def display_name(self) -> str:
1160
+ """
1161
+ A filter to return Delegation Subscription resources that match the given display name.
1162
+ """
1163
+ return pulumi.get(self, "display_name")
1164
+
1165
+ @property
1166
+ @pulumi.getter(name="freeformTags")
1167
+ def freeform_tags(self) -> Mapping[str, str]:
1168
+ """
1169
+ 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"}`
1170
+ """
1171
+ return pulumi.get(self, "freeform_tags")
1172
+
1173
+ @property
1174
+ @pulumi.getter
1175
+ def id(self) -> str:
1176
+ """
1177
+ Unique identifier for the Delegation Subscription.
1178
+ """
1179
+ return pulumi.get(self, "id")
1180
+
1181
+ @property
1182
+ @pulumi.getter(name="lifecycleStateDetails")
1183
+ def lifecycle_state_details(self) -> str:
1184
+ """
1185
+ Description of the current lifecycle state in more detail.
1186
+ """
1187
+ return pulumi.get(self, "lifecycle_state_details")
1188
+
1189
+ @property
1190
+ @pulumi.getter(name="serviceProviderId")
1191
+ def service_provider_id(self) -> str:
1192
+ """
1193
+ Unique identifier of the Service Provider.
1194
+ """
1195
+ return pulumi.get(self, "service_provider_id")
1196
+
1197
+ @property
1198
+ @pulumi.getter
1199
+ def state(self) -> str:
1200
+ """
1201
+ A filter to return only Delegation Subscription resources whose lifecycleState matches the given Delegation Subscription lifecycle state.
1202
+ """
1203
+ return pulumi.get(self, "state")
1204
+
1205
+ @property
1206
+ @pulumi.getter(name="subscribedServiceType")
1207
+ def subscribed_service_type(self) -> str:
1208
+ """
1209
+ Subscribed Service Provider Service Type.
1210
+ """
1211
+ return pulumi.get(self, "subscribed_service_type")
1212
+
1213
+ @property
1214
+ @pulumi.getter(name="systemTags")
1215
+ def system_tags(self) -> Mapping[str, str]:
1216
+ """
1217
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1218
+ """
1219
+ return pulumi.get(self, "system_tags")
1220
+
1221
+ @property
1222
+ @pulumi.getter(name="timeCreated")
1223
+ def time_created(self) -> str:
1224
+ """
1225
+ 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'
1226
+ """
1227
+ return pulumi.get(self, "time_created")
1228
+
1229
+ @property
1230
+ @pulumi.getter(name="timeUpdated")
1231
+ def time_updated(self) -> str:
1232
+ """
1233
+ 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'
1234
+ """
1235
+ return pulumi.get(self, "time_updated")
1236
+
1237
+
1238
+ @pulumi.output_type
1239
+ class GetDelegationSubscriptionsFilterResult(dict):
1240
+ def __init__(__self__, *,
1241
+ name: str,
1242
+ values: Sequence[str],
1243
+ regex: Optional[bool] = None):
1244
+ pulumi.set(__self__, "name", name)
1245
+ pulumi.set(__self__, "values", values)
1246
+ if regex is not None:
1247
+ pulumi.set(__self__, "regex", regex)
1248
+
1249
+ @property
1250
+ @pulumi.getter
1251
+ def name(self) -> str:
1252
+ return pulumi.get(self, "name")
1253
+
1254
+ @property
1255
+ @pulumi.getter
1256
+ def values(self) -> Sequence[str]:
1257
+ return pulumi.get(self, "values")
1258
+
1259
+ @property
1260
+ @pulumi.getter
1261
+ def regex(self) -> Optional[bool]:
1262
+ return pulumi.get(self, "regex")
1263
+
1264
+
1265
+ @pulumi.output_type
1266
+ class GetServiceProviderActionPropertyResult(dict):
1267
+ def __init__(__self__, *,
1268
+ name: str,
1269
+ value: str):
1270
+ """
1271
+ :param str name: Name of the property
1272
+ :param str value: value of the property
1273
+ """
1274
+ pulumi.set(__self__, "name", name)
1275
+ pulumi.set(__self__, "value", value)
1276
+
1277
+ @property
1278
+ @pulumi.getter
1279
+ def name(self) -> str:
1280
+ """
1281
+ Name of the property
1282
+ """
1283
+ return pulumi.get(self, "name")
1284
+
1285
+ @property
1286
+ @pulumi.getter
1287
+ def value(self) -> str:
1288
+ """
1289
+ value of the property
1290
+ """
1291
+ return pulumi.get(self, "value")
1292
+
1293
+
1294
+ @pulumi.output_type
1295
+ class GetServiceProviderActionsFilterResult(dict):
1296
+ def __init__(__self__, *,
1297
+ name: str,
1298
+ values: Sequence[str],
1299
+ regex: Optional[bool] = None):
1300
+ """
1301
+ :param str name: A filter to return only resources that match the entire name given.
1302
+ """
1303
+ pulumi.set(__self__, "name", name)
1304
+ pulumi.set(__self__, "values", values)
1305
+ if regex is not None:
1306
+ pulumi.set(__self__, "regex", regex)
1307
+
1308
+ @property
1309
+ @pulumi.getter
1310
+ def name(self) -> str:
1311
+ """
1312
+ A filter to return only resources that match the entire name given.
1313
+ """
1314
+ return pulumi.get(self, "name")
1315
+
1316
+ @property
1317
+ @pulumi.getter
1318
+ def values(self) -> Sequence[str]:
1319
+ return pulumi.get(self, "values")
1320
+
1321
+ @property
1322
+ @pulumi.getter
1323
+ def regex(self) -> Optional[bool]:
1324
+ return pulumi.get(self, "regex")
1325
+
1326
+
1327
+ @pulumi.output_type
1328
+ class GetServiceProviderActionsServiceProviderActionSummaryCollectionResult(dict):
1329
+ def __init__(__self__, *,
1330
+ items: Sequence['outputs.GetServiceProviderActionsServiceProviderActionSummaryCollectionItemResult']):
1331
+ pulumi.set(__self__, "items", items)
1332
+
1333
+ @property
1334
+ @pulumi.getter
1335
+ def items(self) -> Sequence['outputs.GetServiceProviderActionsServiceProviderActionSummaryCollectionItemResult']:
1336
+ return pulumi.get(self, "items")
1337
+
1338
+
1339
+ @pulumi.output_type
1340
+ class GetServiceProviderActionsServiceProviderActionSummaryCollectionItemResult(dict):
1341
+ def __init__(__self__, *,
1342
+ component: str,
1343
+ customer_display_name: str,
1344
+ description: str,
1345
+ id: str,
1346
+ name: str,
1347
+ properties: Sequence['outputs.GetServiceProviderActionsServiceProviderActionSummaryCollectionItemPropertyResult'],
1348
+ resource_type: str,
1349
+ service_provider_service_types: Sequence[str],
1350
+ state: str):
1351
+ """
1352
+ :param str component: Name of the infrastructure layer associated with the Service Provider Action.
1353
+ :param str customer_display_name: Display Name of the Service Provider Action.
1354
+ :param str description: Description of the Service Provider Action in terms of associated risk profile, and characteristics of the operating system commands made available to the support operator under this Service Provider Action.
1355
+ :param str id: Unique Oracle assigned identifier for the Service Provider Action.
1356
+ :param str name: A filter to return only resources that match the entire name given.
1357
+ :param Sequence['GetServiceProviderActionsServiceProviderActionSummaryCollectionItemPropertyArgs'] properties: Fine grained properties associated with the Delegation Control.
1358
+ :param str resource_type: A filter to return only resources that match the given resource type.
1359
+ :param Sequence[str] service_provider_service_types: List of Service Provider Service Types that this Service Provider Action is applicable to.
1360
+ :param str state: A filter to return only resources whose lifecycleState matches the given Service Provider Action lifecycleState.
1361
+ """
1362
+ pulumi.set(__self__, "component", component)
1363
+ pulumi.set(__self__, "customer_display_name", customer_display_name)
1364
+ pulumi.set(__self__, "description", description)
1365
+ pulumi.set(__self__, "id", id)
1366
+ pulumi.set(__self__, "name", name)
1367
+ pulumi.set(__self__, "properties", properties)
1368
+ pulumi.set(__self__, "resource_type", resource_type)
1369
+ pulumi.set(__self__, "service_provider_service_types", service_provider_service_types)
1370
+ pulumi.set(__self__, "state", state)
1371
+
1372
+ @property
1373
+ @pulumi.getter
1374
+ def component(self) -> str:
1375
+ """
1376
+ Name of the infrastructure layer associated with the Service Provider Action.
1377
+ """
1378
+ return pulumi.get(self, "component")
1379
+
1380
+ @property
1381
+ @pulumi.getter(name="customerDisplayName")
1382
+ def customer_display_name(self) -> str:
1383
+ """
1384
+ Display Name of the Service Provider Action.
1385
+ """
1386
+ return pulumi.get(self, "customer_display_name")
1387
+
1388
+ @property
1389
+ @pulumi.getter
1390
+ def description(self) -> str:
1391
+ """
1392
+ Description of the Service Provider Action in terms of associated risk profile, and characteristics of the operating system commands made available to the support operator under this Service Provider Action.
1393
+ """
1394
+ return pulumi.get(self, "description")
1395
+
1396
+ @property
1397
+ @pulumi.getter
1398
+ def id(self) -> str:
1399
+ """
1400
+ Unique Oracle assigned identifier for the Service Provider Action.
1401
+ """
1402
+ return pulumi.get(self, "id")
1403
+
1404
+ @property
1405
+ @pulumi.getter
1406
+ def name(self) -> str:
1407
+ """
1408
+ A filter to return only resources that match the entire name given.
1409
+ """
1410
+ return pulumi.get(self, "name")
1411
+
1412
+ @property
1413
+ @pulumi.getter
1414
+ def properties(self) -> Sequence['outputs.GetServiceProviderActionsServiceProviderActionSummaryCollectionItemPropertyResult']:
1415
+ """
1416
+ Fine grained properties associated with the Delegation Control.
1417
+ """
1418
+ return pulumi.get(self, "properties")
1419
+
1420
+ @property
1421
+ @pulumi.getter(name="resourceType")
1422
+ def resource_type(self) -> str:
1423
+ """
1424
+ A filter to return only resources that match the given resource type.
1425
+ """
1426
+ return pulumi.get(self, "resource_type")
1427
+
1428
+ @property
1429
+ @pulumi.getter(name="serviceProviderServiceTypes")
1430
+ def service_provider_service_types(self) -> Sequence[str]:
1431
+ """
1432
+ List of Service Provider Service Types that this Service Provider Action is applicable to.
1433
+ """
1434
+ return pulumi.get(self, "service_provider_service_types")
1435
+
1436
+ @property
1437
+ @pulumi.getter
1438
+ def state(self) -> str:
1439
+ """
1440
+ A filter to return only resources whose lifecycleState matches the given Service Provider Action lifecycleState.
1441
+ """
1442
+ return pulumi.get(self, "state")
1443
+
1444
+
1445
+ @pulumi.output_type
1446
+ class GetServiceProviderActionsServiceProviderActionSummaryCollectionItemPropertyResult(dict):
1447
+ def __init__(__self__, *,
1448
+ name: str,
1449
+ value: str):
1450
+ """
1451
+ :param str name: A filter to return only resources that match the entire name given.
1452
+ :param str value: value of the property
1453
+ """
1454
+ pulumi.set(__self__, "name", name)
1455
+ pulumi.set(__self__, "value", value)
1456
+
1457
+ @property
1458
+ @pulumi.getter
1459
+ def name(self) -> str:
1460
+ """
1461
+ A filter to return only resources that match the entire name given.
1462
+ """
1463
+ return pulumi.get(self, "name")
1464
+
1465
+ @property
1466
+ @pulumi.getter
1467
+ def value(self) -> str:
1468
+ """
1469
+ value of the property
1470
+ """
1471
+ return pulumi.get(self, "value")
1472
+
1473
+
1474
+ @pulumi.output_type
1475
+ class GetServiceProvidersFilterResult(dict):
1476
+ def __init__(__self__, *,
1477
+ name: str,
1478
+ values: Sequence[str],
1479
+ regex: Optional[bool] = None):
1480
+ """
1481
+ :param str name: A filter to return Service Provider resources that match the given name.
1482
+ """
1483
+ pulumi.set(__self__, "name", name)
1484
+ pulumi.set(__self__, "values", values)
1485
+ if regex is not None:
1486
+ pulumi.set(__self__, "regex", regex)
1487
+
1488
+ @property
1489
+ @pulumi.getter
1490
+ def name(self) -> str:
1491
+ """
1492
+ A filter to return Service Provider resources that match the given name.
1493
+ """
1494
+ return pulumi.get(self, "name")
1495
+
1496
+ @property
1497
+ @pulumi.getter
1498
+ def values(self) -> Sequence[str]:
1499
+ return pulumi.get(self, "values")
1500
+
1501
+ @property
1502
+ @pulumi.getter
1503
+ def regex(self) -> Optional[bool]:
1504
+ return pulumi.get(self, "regex")
1505
+
1506
+
1507
+ @pulumi.output_type
1508
+ class GetServiceProvidersServiceProviderSummaryCollectionResult(dict):
1509
+ def __init__(__self__, *,
1510
+ items: Sequence['outputs.GetServiceProvidersServiceProviderSummaryCollectionItemResult']):
1511
+ pulumi.set(__self__, "items", items)
1512
+
1513
+ @property
1514
+ @pulumi.getter
1515
+ def items(self) -> Sequence['outputs.GetServiceProvidersServiceProviderSummaryCollectionItemResult']:
1516
+ return pulumi.get(self, "items")
1517
+
1518
+
1519
+ @pulumi.output_type
1520
+ class GetServiceProvidersServiceProviderSummaryCollectionItemResult(dict):
1521
+ def __init__(__self__, *,
1522
+ compartment_id: str,
1523
+ defined_tags: Mapping[str, str],
1524
+ description: str,
1525
+ freeform_tags: Mapping[str, str],
1526
+ id: str,
1527
+ lifecycle_state_details: str,
1528
+ name: str,
1529
+ service_provider_type: str,
1530
+ service_types: Sequence[str],
1531
+ state: str,
1532
+ supported_resource_types: Sequence[str],
1533
+ system_tags: Mapping[str, str],
1534
+ time_created: str,
1535
+ time_updated: str):
1536
+ """
1537
+ :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
1538
+ :param Mapping[str, str] defined_tags: 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"}`
1539
+ :param str description: Description of the Service Provider.
1540
+ :param Mapping[str, str] freeform_tags: 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"}`
1541
+ :param str id: Unique identifier for the Service Provider.
1542
+ :param str lifecycle_state_details: Description of the current lifecycle state in more detail.
1543
+ :param str name: A filter to return Service Provider resources that match the given name.
1544
+ :param str service_provider_type: A filter to return only Service Provider resources whose provider type matches the given provider type.
1545
+ :param Sequence[str] service_types: Types of services offered by this provider.
1546
+ :param str state: A filter to return only Service Provider resources whose lifecycleState matches the given Service Provider lifecycle state.
1547
+ :param Sequence[str] supported_resource_types: Resource types for which this provider will provide service. Default to all if not specified.
1548
+ :param Mapping[str, str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1549
+ :param 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'
1550
+ :param 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'
1551
+ """
1552
+ pulumi.set(__self__, "compartment_id", compartment_id)
1553
+ pulumi.set(__self__, "defined_tags", defined_tags)
1554
+ pulumi.set(__self__, "description", description)
1555
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
1556
+ pulumi.set(__self__, "id", id)
1557
+ pulumi.set(__self__, "lifecycle_state_details", lifecycle_state_details)
1558
+ pulumi.set(__self__, "name", name)
1559
+ pulumi.set(__self__, "service_provider_type", service_provider_type)
1560
+ pulumi.set(__self__, "service_types", service_types)
1561
+ pulumi.set(__self__, "state", state)
1562
+ pulumi.set(__self__, "supported_resource_types", supported_resource_types)
1563
+ pulumi.set(__self__, "system_tags", system_tags)
1564
+ pulumi.set(__self__, "time_created", time_created)
1565
+ pulumi.set(__self__, "time_updated", time_updated)
1566
+
1567
+ @property
1568
+ @pulumi.getter(name="compartmentId")
1569
+ def compartment_id(self) -> str:
1570
+ """
1571
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
1572
+ """
1573
+ return pulumi.get(self, "compartment_id")
1574
+
1575
+ @property
1576
+ @pulumi.getter(name="definedTags")
1577
+ def defined_tags(self) -> Mapping[str, str]:
1578
+ """
1579
+ 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"}`
1580
+ """
1581
+ return pulumi.get(self, "defined_tags")
1582
+
1583
+ @property
1584
+ @pulumi.getter
1585
+ def description(self) -> str:
1586
+ """
1587
+ Description of the Service Provider.
1588
+ """
1589
+ return pulumi.get(self, "description")
1590
+
1591
+ @property
1592
+ @pulumi.getter(name="freeformTags")
1593
+ def freeform_tags(self) -> Mapping[str, str]:
1594
+ """
1595
+ 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"}`
1596
+ """
1597
+ return pulumi.get(self, "freeform_tags")
1598
+
1599
+ @property
1600
+ @pulumi.getter
1601
+ def id(self) -> str:
1602
+ """
1603
+ Unique identifier for the Service Provider.
1604
+ """
1605
+ return pulumi.get(self, "id")
1606
+
1607
+ @property
1608
+ @pulumi.getter(name="lifecycleStateDetails")
1609
+ def lifecycle_state_details(self) -> str:
1610
+ """
1611
+ Description of the current lifecycle state in more detail.
1612
+ """
1613
+ return pulumi.get(self, "lifecycle_state_details")
1614
+
1615
+ @property
1616
+ @pulumi.getter
1617
+ def name(self) -> str:
1618
+ """
1619
+ A filter to return Service Provider resources that match the given name.
1620
+ """
1621
+ return pulumi.get(self, "name")
1622
+
1623
+ @property
1624
+ @pulumi.getter(name="serviceProviderType")
1625
+ def service_provider_type(self) -> str:
1626
+ """
1627
+ A filter to return only Service Provider resources whose provider type matches the given provider type.
1628
+ """
1629
+ return pulumi.get(self, "service_provider_type")
1630
+
1631
+ @property
1632
+ @pulumi.getter(name="serviceTypes")
1633
+ def service_types(self) -> Sequence[str]:
1634
+ """
1635
+ Types of services offered by this provider.
1636
+ """
1637
+ return pulumi.get(self, "service_types")
1638
+
1639
+ @property
1640
+ @pulumi.getter
1641
+ def state(self) -> str:
1642
+ """
1643
+ A filter to return only Service Provider resources whose lifecycleState matches the given Service Provider lifecycle state.
1644
+ """
1645
+ return pulumi.get(self, "state")
1646
+
1647
+ @property
1648
+ @pulumi.getter(name="supportedResourceTypes")
1649
+ def supported_resource_types(self) -> Sequence[str]:
1650
+ """
1651
+ Resource types for which this provider will provide service. Default to all if not specified.
1652
+ """
1653
+ return pulumi.get(self, "supported_resource_types")
1654
+
1655
+ @property
1656
+ @pulumi.getter(name="systemTags")
1657
+ def system_tags(self) -> Mapping[str, str]:
1658
+ """
1659
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
1660
+ """
1661
+ return pulumi.get(self, "system_tags")
1662
+
1663
+ @property
1664
+ @pulumi.getter(name="timeCreated")
1665
+ def time_created(self) -> str:
1666
+ """
1667
+ 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'
1668
+ """
1669
+ return pulumi.get(self, "time_created")
1670
+
1671
+ @property
1672
+ @pulumi.getter(name="timeUpdated")
1673
+ def time_updated(self) -> str:
1674
+ """
1675
+ 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'
1676
+ """
1677
+ return pulumi.get(self, "time_updated")
1678
+
1679
+