pulumi-oci 2.9.0a1724479778__py3-none-any.whl → 2.10.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 (123) 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 +64 -24
  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 +195 -66
  19. pulumi_oci/database/vm_cluster_network.py +7 -20
  20. pulumi_oci/databasemanagement/__init__.py +1 -0
  21. pulumi_oci/databasemanagement/_inputs.py +873 -10
  22. pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
  23. pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
  24. pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
  25. pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
  26. pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
  27. pulumi_oci/databasemanagement/get_managed_database.py +47 -3
  28. pulumi_oci/databasemanagement/managed_database.py +56 -0
  29. pulumi_oci/databasemanagement/outputs.py +3331 -1397
  30. pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
  31. pulumi_oci/datasafe/__init__.py +6 -0
  32. pulumi_oci/datasafe/_inputs.py +18 -0
  33. pulumi_oci/datasafe/database_security_config_management.py +244 -2
  34. pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
  35. pulumi_oci/datasafe/masking_report_management.py +693 -0
  36. pulumi_oci/datasafe/outputs.py +18 -0
  37. pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
  38. pulumi_oci/datasafe/security_policy_management.py +172 -2
  39. pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
  40. pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
  41. pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
  42. pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
  43. pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
  44. pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
  45. pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
  46. pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
  47. pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
  48. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
  49. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
  50. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
  51. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
  52. pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
  53. pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
  54. pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
  55. pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
  56. pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
  57. pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
  58. pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
  59. pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
  60. pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
  61. pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
  62. pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
  63. pulumi_oci/desktops/_inputs.py +483 -0
  64. pulumi_oci/desktops/desktop_pool.py +1348 -0
  65. pulumi_oci/desktops/get_desktop.py +223 -0
  66. pulumi_oci/desktops/get_desktop_pool.py +418 -0
  67. pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
  68. pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
  69. pulumi_oci/desktops/get_desktop_pools.py +203 -0
  70. pulumi_oci/desktops/get_desktops.py +214 -0
  71. pulumi_oci/desktops/outputs.py +1738 -0
  72. pulumi_oci/filestorage/mount_target.py +143 -38
  73. pulumi_oci/filestorage/outputs.py +44 -0
  74. pulumi_oci/identity/domains_group.py +34 -0
  75. pulumi_oci/identity/domains_user.py +34 -0
  76. pulumi_oci/identity/get_domains_group.py +11 -1
  77. pulumi_oci/identity/get_domains_user.py +11 -1
  78. pulumi_oci/identity/outputs.py +14 -0
  79. pulumi_oci/kms/_inputs.py +10 -10
  80. pulumi_oci/kms/get_vault.py +14 -1
  81. pulumi_oci/kms/outputs.py +41 -30
  82. pulumi_oci/kms/vault.py +28 -0
  83. pulumi_oci/loadbalancer/load_balancer.py +224 -0
  84. pulumi_oci/loadbalancer/outputs.py +22 -0
  85. pulumi_oci/managementagent/_inputs.py +44 -0
  86. pulumi_oci/managementagent/management_agent.py +45 -21
  87. pulumi_oci/managementagent/outputs.py +44 -0
  88. pulumi_oci/mysql/_inputs.py +23 -0
  89. pulumi_oci/mysql/get_mysql_db_system.py +15 -2
  90. pulumi_oci/mysql/mysql_db_system.py +53 -0
  91. pulumi_oci/mysql/outputs.py +74 -6
  92. pulumi_oci/ocvp/get_cluster.py +2 -2
  93. pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
  94. pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
  95. pulumi_oci/ocvp/outputs.py +2 -2
  96. pulumi_oci/pulumi-plugin.json +1 -1
  97. pulumi_oci/recoverymod/_inputs.py +0 -8
  98. pulumi_oci/recoverymod/get_protected_database.py +14 -1
  99. pulumi_oci/recoverymod/get_protection_policy.py +14 -1
  100. pulumi_oci/recoverymod/outputs.py +22 -8
  101. pulumi_oci/recoverymod/protected_database.py +80 -3
  102. pulumi_oci/recoverymod/protection_policy.py +49 -0
  103. pulumi_oci/waf/_inputs.py +29 -16
  104. pulumi_oci/waf/outputs.py +33 -10
  105. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/METADATA +1 -1
  106. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/RECORD +108 -90
  107. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/WHEEL +1 -1
  108. pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
  109. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
  110. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
  111. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
  112. pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
  113. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
  114. pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
  115. pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
  116. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  117. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
  118. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
  119. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
  120. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
  121. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
  122. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
  123. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,176 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+ from . import outputs
12
+ from ._inputs import *
13
+
14
+ __all__ = [
15
+ 'GetDelegationSubscriptionsResult',
16
+ 'AwaitableGetDelegationSubscriptionsResult',
17
+ 'get_delegation_subscriptions',
18
+ 'get_delegation_subscriptions_output',
19
+ ]
20
+
21
+ @pulumi.output_type
22
+ class GetDelegationSubscriptionsResult:
23
+ """
24
+ A collection of values returned by getDelegationSubscriptions.
25
+ """
26
+ def __init__(__self__, compartment_id=None, delegation_subscription_summary_collections=None, display_name=None, filters=None, id=None, state=None):
27
+ if compartment_id and not isinstance(compartment_id, str):
28
+ raise TypeError("Expected argument 'compartment_id' to be a str")
29
+ pulumi.set(__self__, "compartment_id", compartment_id)
30
+ if delegation_subscription_summary_collections and not isinstance(delegation_subscription_summary_collections, list):
31
+ raise TypeError("Expected argument 'delegation_subscription_summary_collections' to be a list")
32
+ pulumi.set(__self__, "delegation_subscription_summary_collections", delegation_subscription_summary_collections)
33
+ if display_name and not isinstance(display_name, str):
34
+ raise TypeError("Expected argument 'display_name' to be a str")
35
+ pulumi.set(__self__, "display_name", display_name)
36
+ if filters and not isinstance(filters, list):
37
+ raise TypeError("Expected argument 'filters' to be a list")
38
+ pulumi.set(__self__, "filters", filters)
39
+ if id and not isinstance(id, str):
40
+ raise TypeError("Expected argument 'id' to be a str")
41
+ pulumi.set(__self__, "id", id)
42
+ if state and not isinstance(state, str):
43
+ raise TypeError("Expected argument 'state' to be a str")
44
+ pulumi.set(__self__, "state", state)
45
+
46
+ @property
47
+ @pulumi.getter(name="compartmentId")
48
+ def compartment_id(self) -> str:
49
+ """
50
+ The OCID of the compartment that contains the Delegation Subscription.
51
+ """
52
+ return pulumi.get(self, "compartment_id")
53
+
54
+ @property
55
+ @pulumi.getter(name="delegationSubscriptionSummaryCollections")
56
+ def delegation_subscription_summary_collections(self) -> Sequence['outputs.GetDelegationSubscriptionsDelegationSubscriptionSummaryCollectionResult']:
57
+ """
58
+ The list of delegation_subscription_summary_collection.
59
+ """
60
+ return pulumi.get(self, "delegation_subscription_summary_collections")
61
+
62
+ @property
63
+ @pulumi.getter(name="displayName")
64
+ def display_name(self) -> Optional[str]:
65
+ """
66
+ Display name
67
+ """
68
+ return pulumi.get(self, "display_name")
69
+
70
+ @property
71
+ @pulumi.getter
72
+ def filters(self) -> Optional[Sequence['outputs.GetDelegationSubscriptionsFilterResult']]:
73
+ return pulumi.get(self, "filters")
74
+
75
+ @property
76
+ @pulumi.getter
77
+ def id(self) -> str:
78
+ """
79
+ The provider-assigned unique ID for this managed resource.
80
+ """
81
+ return pulumi.get(self, "id")
82
+
83
+ @property
84
+ @pulumi.getter
85
+ def state(self) -> Optional[str]:
86
+ """
87
+ The current lifecycle state of the Service Provider.
88
+ """
89
+ return pulumi.get(self, "state")
90
+
91
+
92
+ class AwaitableGetDelegationSubscriptionsResult(GetDelegationSubscriptionsResult):
93
+ # pylint: disable=using-constant-test
94
+ def __await__(self):
95
+ if False:
96
+ yield self
97
+ return GetDelegationSubscriptionsResult(
98
+ compartment_id=self.compartment_id,
99
+ delegation_subscription_summary_collections=self.delegation_subscription_summary_collections,
100
+ display_name=self.display_name,
101
+ filters=self.filters,
102
+ id=self.id,
103
+ state=self.state)
104
+
105
+
106
+ def get_delegation_subscriptions(compartment_id: Optional[str] = None,
107
+ display_name: Optional[str] = None,
108
+ filters: Optional[Sequence[Union['GetDelegationSubscriptionsFilterArgs', 'GetDelegationSubscriptionsFilterArgsDict']]] = None,
109
+ state: Optional[str] = None,
110
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDelegationSubscriptionsResult:
111
+ """
112
+ This data source provides the list of Delegation Subscriptions in Oracle Cloud Infrastructure Delegate Access Control service.
113
+
114
+ Lists the Delegation Subscriptions in Delegation Control.
115
+
116
+ ## Example Usage
117
+
118
+ ```python
119
+ import pulumi
120
+ import pulumi_oci as oci
121
+
122
+ test_delegation_subscriptions = oci.DelegateAccessControl.get_delegation_subscriptions(compartment_id=compartment_id,
123
+ display_name=delegation_subscription_display_name,
124
+ state=delegation_subscription_state)
125
+ ```
126
+
127
+
128
+ :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
129
+ :param str display_name: A filter to return Delegation Subscription resources that match the given display name.
130
+ :param str state: A filter to return only Delegation Subscription resources whose lifecycleState matches the given Delegation Subscription lifecycle state.
131
+ """
132
+ __args__ = dict()
133
+ __args__['compartmentId'] = compartment_id
134
+ __args__['displayName'] = display_name
135
+ __args__['filters'] = filters
136
+ __args__['state'] = state
137
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
138
+ __ret__ = pulumi.runtime.invoke('oci:DelegateAccessControl/getDelegationSubscriptions:getDelegationSubscriptions', __args__, opts=opts, typ=GetDelegationSubscriptionsResult).value
139
+
140
+ return AwaitableGetDelegationSubscriptionsResult(
141
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
142
+ delegation_subscription_summary_collections=pulumi.get(__ret__, 'delegation_subscription_summary_collections'),
143
+ display_name=pulumi.get(__ret__, 'display_name'),
144
+ filters=pulumi.get(__ret__, 'filters'),
145
+ id=pulumi.get(__ret__, 'id'),
146
+ state=pulumi.get(__ret__, 'state'))
147
+
148
+
149
+ @_utilities.lift_output_func(get_delegation_subscriptions)
150
+ def get_delegation_subscriptions_output(compartment_id: Optional[pulumi.Input[str]] = None,
151
+ display_name: Optional[pulumi.Input[Optional[str]]] = None,
152
+ filters: Optional[pulumi.Input[Optional[Sequence[Union['GetDelegationSubscriptionsFilterArgs', 'GetDelegationSubscriptionsFilterArgsDict']]]]] = None,
153
+ state: Optional[pulumi.Input[Optional[str]]] = None,
154
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDelegationSubscriptionsResult]:
155
+ """
156
+ This data source provides the list of Delegation Subscriptions in Oracle Cloud Infrastructure Delegate Access Control service.
157
+
158
+ Lists the Delegation Subscriptions in Delegation Control.
159
+
160
+ ## Example Usage
161
+
162
+ ```python
163
+ import pulumi
164
+ import pulumi_oci as oci
165
+
166
+ test_delegation_subscriptions = oci.DelegateAccessControl.get_delegation_subscriptions(compartment_id=compartment_id,
167
+ display_name=delegation_subscription_display_name,
168
+ state=delegation_subscription_state)
169
+ ```
170
+
171
+
172
+ :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
173
+ :param str display_name: A filter to return Delegation Subscription resources that match the given display name.
174
+ :param str state: A filter to return only Delegation Subscription resources whose lifecycleState matches the given Delegation Subscription lifecycle state.
175
+ """
176
+ ...
@@ -0,0 +1,274 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import pulumi
8
+ import pulumi.runtime
9
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
10
+ from .. import _utilities
11
+
12
+ __all__ = [
13
+ 'GetServiceProviderResult',
14
+ 'AwaitableGetServiceProviderResult',
15
+ 'get_service_provider',
16
+ 'get_service_provider_output',
17
+ ]
18
+
19
+ @pulumi.output_type
20
+ class GetServiceProviderResult:
21
+ """
22
+ A collection of values returned by getServiceProvider.
23
+ """
24
+ def __init__(__self__, compartment_id=None, defined_tags=None, description=None, freeform_tags=None, id=None, lifecycle_state_details=None, name=None, service_provider_id=None, service_provider_type=None, service_types=None, state=None, supported_resource_types=None, system_tags=None, time_created=None, time_updated=None):
25
+ if compartment_id and not isinstance(compartment_id, str):
26
+ raise TypeError("Expected argument 'compartment_id' to be a str")
27
+ pulumi.set(__self__, "compartment_id", compartment_id)
28
+ if defined_tags and not isinstance(defined_tags, dict):
29
+ raise TypeError("Expected argument 'defined_tags' to be a dict")
30
+ pulumi.set(__self__, "defined_tags", defined_tags)
31
+ if description and not isinstance(description, str):
32
+ raise TypeError("Expected argument 'description' to be a str")
33
+ pulumi.set(__self__, "description", description)
34
+ if freeform_tags and not isinstance(freeform_tags, dict):
35
+ raise TypeError("Expected argument 'freeform_tags' to be a dict")
36
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
37
+ if id and not isinstance(id, str):
38
+ raise TypeError("Expected argument 'id' to be a str")
39
+ pulumi.set(__self__, "id", id)
40
+ if lifecycle_state_details and not isinstance(lifecycle_state_details, str):
41
+ raise TypeError("Expected argument 'lifecycle_state_details' to be a str")
42
+ pulumi.set(__self__, "lifecycle_state_details", lifecycle_state_details)
43
+ if name and not isinstance(name, str):
44
+ raise TypeError("Expected argument 'name' to be a str")
45
+ pulumi.set(__self__, "name", name)
46
+ if service_provider_id and not isinstance(service_provider_id, str):
47
+ raise TypeError("Expected argument 'service_provider_id' to be a str")
48
+ pulumi.set(__self__, "service_provider_id", service_provider_id)
49
+ if service_provider_type and not isinstance(service_provider_type, str):
50
+ raise TypeError("Expected argument 'service_provider_type' to be a str")
51
+ pulumi.set(__self__, "service_provider_type", service_provider_type)
52
+ if service_types and not isinstance(service_types, list):
53
+ raise TypeError("Expected argument 'service_types' to be a list")
54
+ pulumi.set(__self__, "service_types", service_types)
55
+ if state and not isinstance(state, str):
56
+ raise TypeError("Expected argument 'state' to be a str")
57
+ pulumi.set(__self__, "state", state)
58
+ if supported_resource_types and not isinstance(supported_resource_types, list):
59
+ raise TypeError("Expected argument 'supported_resource_types' to be a list")
60
+ pulumi.set(__self__, "supported_resource_types", supported_resource_types)
61
+ if system_tags and not isinstance(system_tags, dict):
62
+ raise TypeError("Expected argument 'system_tags' to be a dict")
63
+ pulumi.set(__self__, "system_tags", system_tags)
64
+ if time_created and not isinstance(time_created, str):
65
+ raise TypeError("Expected argument 'time_created' to be a str")
66
+ pulumi.set(__self__, "time_created", time_created)
67
+ if time_updated and not isinstance(time_updated, str):
68
+ raise TypeError("Expected argument 'time_updated' to be a str")
69
+ pulumi.set(__self__, "time_updated", time_updated)
70
+
71
+ @property
72
+ @pulumi.getter(name="compartmentId")
73
+ def compartment_id(self) -> str:
74
+ """
75
+ The OCID of the compartment that contains the Delegation Control.
76
+ """
77
+ return pulumi.get(self, "compartment_id")
78
+
79
+ @property
80
+ @pulumi.getter(name="definedTags")
81
+ def defined_tags(self) -> Mapping[str, str]:
82
+ """
83
+ 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"}`
84
+ """
85
+ return pulumi.get(self, "defined_tags")
86
+
87
+ @property
88
+ @pulumi.getter
89
+ def description(self) -> str:
90
+ """
91
+ Description of the Service Provider.
92
+ """
93
+ return pulumi.get(self, "description")
94
+
95
+ @property
96
+ @pulumi.getter(name="freeformTags")
97
+ def freeform_tags(self) -> Mapping[str, str]:
98
+ """
99
+ 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"}`
100
+ """
101
+ return pulumi.get(self, "freeform_tags")
102
+
103
+ @property
104
+ @pulumi.getter
105
+ def id(self) -> str:
106
+ """
107
+ The provider-assigned unique ID for this managed resource.
108
+ """
109
+ return pulumi.get(self, "id")
110
+
111
+ @property
112
+ @pulumi.getter(name="lifecycleStateDetails")
113
+ def lifecycle_state_details(self) -> str:
114
+ """
115
+ Description of the current lifecycle state in more detail.
116
+ """
117
+ return pulumi.get(self, "lifecycle_state_details")
118
+
119
+ @property
120
+ @pulumi.getter
121
+ def name(self) -> str:
122
+ """
123
+ Unique name of the Service Provider.
124
+ """
125
+ return pulumi.get(self, "name")
126
+
127
+ @property
128
+ @pulumi.getter(name="serviceProviderId")
129
+ def service_provider_id(self) -> str:
130
+ return pulumi.get(self, "service_provider_id")
131
+
132
+ @property
133
+ @pulumi.getter(name="serviceProviderType")
134
+ def service_provider_type(self) -> str:
135
+ """
136
+ Service Provider type.
137
+ """
138
+ return pulumi.get(self, "service_provider_type")
139
+
140
+ @property
141
+ @pulumi.getter(name="serviceTypes")
142
+ def service_types(self) -> Sequence[str]:
143
+ """
144
+ Types of services offered by this provider.
145
+ """
146
+ return pulumi.get(self, "service_types")
147
+
148
+ @property
149
+ @pulumi.getter
150
+ def state(self) -> str:
151
+ """
152
+ The current lifecycle state of the Service Provider.
153
+ """
154
+ return pulumi.get(self, "state")
155
+
156
+ @property
157
+ @pulumi.getter(name="supportedResourceTypes")
158
+ def supported_resource_types(self) -> Sequence[str]:
159
+ """
160
+ Resource types for which this provider will provide service. Default to all if not specified.
161
+ """
162
+ return pulumi.get(self, "supported_resource_types")
163
+
164
+ @property
165
+ @pulumi.getter(name="systemTags")
166
+ def system_tags(self) -> Mapping[str, str]:
167
+ """
168
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
169
+ """
170
+ return pulumi.get(self, "system_tags")
171
+
172
+ @property
173
+ @pulumi.getter(name="timeCreated")
174
+ def time_created(self) -> str:
175
+ """
176
+ 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'
177
+ """
178
+ return pulumi.get(self, "time_created")
179
+
180
+ @property
181
+ @pulumi.getter(name="timeUpdated")
182
+ def time_updated(self) -> str:
183
+ """
184
+ 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'
185
+ """
186
+ return pulumi.get(self, "time_updated")
187
+
188
+
189
+ class AwaitableGetServiceProviderResult(GetServiceProviderResult):
190
+ # pylint: disable=using-constant-test
191
+ def __await__(self):
192
+ if False:
193
+ yield self
194
+ return GetServiceProviderResult(
195
+ compartment_id=self.compartment_id,
196
+ defined_tags=self.defined_tags,
197
+ description=self.description,
198
+ freeform_tags=self.freeform_tags,
199
+ id=self.id,
200
+ lifecycle_state_details=self.lifecycle_state_details,
201
+ name=self.name,
202
+ service_provider_id=self.service_provider_id,
203
+ service_provider_type=self.service_provider_type,
204
+ service_types=self.service_types,
205
+ state=self.state,
206
+ supported_resource_types=self.supported_resource_types,
207
+ system_tags=self.system_tags,
208
+ time_created=self.time_created,
209
+ time_updated=self.time_updated)
210
+
211
+
212
+ def get_service_provider(service_provider_id: Optional[str] = None,
213
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetServiceProviderResult:
214
+ """
215
+ This data source provides details about a specific Service Provider resource in Oracle Cloud Infrastructure Delegate Access Control service.
216
+
217
+ Gets a ServiceProvider by identifier
218
+
219
+ ## Example Usage
220
+
221
+ ```python
222
+ import pulumi
223
+ import pulumi_oci as oci
224
+
225
+ test_service_provider = oci.DelegateAccessControl.get_service_provider(service_provider_id=test_service_provider_oci_delegate_access_control_service_provider["id"])
226
+ ```
227
+
228
+
229
+ :param str service_provider_id: unique Service Provider identifier
230
+ """
231
+ __args__ = dict()
232
+ __args__['serviceProviderId'] = service_provider_id
233
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
234
+ __ret__ = pulumi.runtime.invoke('oci:DelegateAccessControl/getServiceProvider:getServiceProvider', __args__, opts=opts, typ=GetServiceProviderResult).value
235
+
236
+ return AwaitableGetServiceProviderResult(
237
+ compartment_id=pulumi.get(__ret__, 'compartment_id'),
238
+ defined_tags=pulumi.get(__ret__, 'defined_tags'),
239
+ description=pulumi.get(__ret__, 'description'),
240
+ freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
241
+ id=pulumi.get(__ret__, 'id'),
242
+ lifecycle_state_details=pulumi.get(__ret__, 'lifecycle_state_details'),
243
+ name=pulumi.get(__ret__, 'name'),
244
+ service_provider_id=pulumi.get(__ret__, 'service_provider_id'),
245
+ service_provider_type=pulumi.get(__ret__, 'service_provider_type'),
246
+ service_types=pulumi.get(__ret__, 'service_types'),
247
+ state=pulumi.get(__ret__, 'state'),
248
+ supported_resource_types=pulumi.get(__ret__, 'supported_resource_types'),
249
+ system_tags=pulumi.get(__ret__, 'system_tags'),
250
+ time_created=pulumi.get(__ret__, 'time_created'),
251
+ time_updated=pulumi.get(__ret__, 'time_updated'))
252
+
253
+
254
+ @_utilities.lift_output_func(get_service_provider)
255
+ def get_service_provider_output(service_provider_id: Optional[pulumi.Input[str]] = None,
256
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetServiceProviderResult]:
257
+ """
258
+ This data source provides details about a specific Service Provider resource in Oracle Cloud Infrastructure Delegate Access Control service.
259
+
260
+ Gets a ServiceProvider by identifier
261
+
262
+ ## Example Usage
263
+
264
+ ```python
265
+ import pulumi
266
+ import pulumi_oci as oci
267
+
268
+ test_service_provider = oci.DelegateAccessControl.get_service_provider(service_provider_id=test_service_provider_oci_delegate_access_control_service_provider["id"])
269
+ ```
270
+
271
+
272
+ :param str service_provider_id: unique Service Provider identifier
273
+ """
274
+ ...
@@ -0,0 +1,210 @@
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
+ 'GetServiceProviderActionResult',
15
+ 'AwaitableGetServiceProviderActionResult',
16
+ 'get_service_provider_action',
17
+ 'get_service_provider_action_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetServiceProviderActionResult:
22
+ """
23
+ A collection of values returned by getServiceProviderAction.
24
+ """
25
+ def __init__(__self__, component=None, customer_display_name=None, description=None, id=None, name=None, properties=None, resource_type=None, service_provider_action_id=None, service_provider_service_types=None, state=None):
26
+ if component and not isinstance(component, str):
27
+ raise TypeError("Expected argument 'component' to be a str")
28
+ pulumi.set(__self__, "component", component)
29
+ if customer_display_name and not isinstance(customer_display_name, str):
30
+ raise TypeError("Expected argument 'customer_display_name' to be a str")
31
+ pulumi.set(__self__, "customer_display_name", customer_display_name)
32
+ if description and not isinstance(description, str):
33
+ raise TypeError("Expected argument 'description' to be a str")
34
+ pulumi.set(__self__, "description", description)
35
+ if id and not isinstance(id, str):
36
+ raise TypeError("Expected argument 'id' to be a str")
37
+ pulumi.set(__self__, "id", id)
38
+ if name and not isinstance(name, str):
39
+ raise TypeError("Expected argument 'name' to be a str")
40
+ pulumi.set(__self__, "name", name)
41
+ if properties and not isinstance(properties, list):
42
+ raise TypeError("Expected argument 'properties' to be a list")
43
+ pulumi.set(__self__, "properties", properties)
44
+ if resource_type and not isinstance(resource_type, str):
45
+ raise TypeError("Expected argument 'resource_type' to be a str")
46
+ pulumi.set(__self__, "resource_type", resource_type)
47
+ if service_provider_action_id and not isinstance(service_provider_action_id, str):
48
+ raise TypeError("Expected argument 'service_provider_action_id' to be a str")
49
+ pulumi.set(__self__, "service_provider_action_id", service_provider_action_id)
50
+ if service_provider_service_types and not isinstance(service_provider_service_types, list):
51
+ raise TypeError("Expected argument 'service_provider_service_types' to be a list")
52
+ pulumi.set(__self__, "service_provider_service_types", service_provider_service_types)
53
+ if state and not isinstance(state, str):
54
+ raise TypeError("Expected argument 'state' to be a str")
55
+ pulumi.set(__self__, "state", state)
56
+
57
+ @property
58
+ @pulumi.getter
59
+ def component(self) -> str:
60
+ """
61
+ Name of the infrastructure layer associated with the Service Provider Action.
62
+ """
63
+ return pulumi.get(self, "component")
64
+
65
+ @property
66
+ @pulumi.getter(name="customerDisplayName")
67
+ def customer_display_name(self) -> str:
68
+ """
69
+ Display Name of the Service Provider Action.
70
+ """
71
+ return pulumi.get(self, "customer_display_name")
72
+
73
+ @property
74
+ @pulumi.getter
75
+ def description(self) -> str:
76
+ """
77
+ 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.
78
+ """
79
+ return pulumi.get(self, "description")
80
+
81
+ @property
82
+ @pulumi.getter
83
+ def id(self) -> str:
84
+ """
85
+ The provider-assigned unique ID for this managed resource.
86
+ """
87
+ return pulumi.get(self, "id")
88
+
89
+ @property
90
+ @pulumi.getter
91
+ def name(self) -> str:
92
+ """
93
+ Name of the property
94
+ """
95
+ return pulumi.get(self, "name")
96
+
97
+ @property
98
+ @pulumi.getter
99
+ def properties(self) -> Sequence['outputs.GetServiceProviderActionPropertyResult']:
100
+ """
101
+ Fine grained properties associated with the Delegation Control.
102
+ """
103
+ return pulumi.get(self, "properties")
104
+
105
+ @property
106
+ @pulumi.getter(name="resourceType")
107
+ def resource_type(self) -> str:
108
+ """
109
+ resourceType for which the ServiceProviderAction is applicable
110
+ """
111
+ return pulumi.get(self, "resource_type")
112
+
113
+ @property
114
+ @pulumi.getter(name="serviceProviderActionId")
115
+ def service_provider_action_id(self) -> str:
116
+ return pulumi.get(self, "service_provider_action_id")
117
+
118
+ @property
119
+ @pulumi.getter(name="serviceProviderServiceTypes")
120
+ def service_provider_service_types(self) -> Sequence[str]:
121
+ """
122
+ List of Service Provider Service Types that this Service Provider Action is applicable to.
123
+ """
124
+ return pulumi.get(self, "service_provider_service_types")
125
+
126
+ @property
127
+ @pulumi.getter
128
+ def state(self) -> str:
129
+ """
130
+ The current lifecycle state of the Service Provider Action.
131
+ """
132
+ return pulumi.get(self, "state")
133
+
134
+
135
+ class AwaitableGetServiceProviderActionResult(GetServiceProviderActionResult):
136
+ # pylint: disable=using-constant-test
137
+ def __await__(self):
138
+ if False:
139
+ yield self
140
+ return GetServiceProviderActionResult(
141
+ component=self.component,
142
+ customer_display_name=self.customer_display_name,
143
+ description=self.description,
144
+ id=self.id,
145
+ name=self.name,
146
+ properties=self.properties,
147
+ resource_type=self.resource_type,
148
+ service_provider_action_id=self.service_provider_action_id,
149
+ service_provider_service_types=self.service_provider_service_types,
150
+ state=self.state)
151
+
152
+
153
+ def get_service_provider_action(service_provider_action_id: Optional[str] = None,
154
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetServiceProviderActionResult:
155
+ """
156
+ This data source provides details about a specific Service Provider Action resource in Oracle Cloud Infrastructure Delegate Access Control service.
157
+
158
+ Gets the Service Provider Action associated with the specified Service Provider Action ID.
159
+
160
+ ## Example Usage
161
+
162
+ ```python
163
+ import pulumi
164
+ import pulumi_oci as oci
165
+
166
+ test_service_provider_action = oci.DelegateAccessControl.get_service_provider_action(service_provider_action_id=test_service_provider_action_oci_delegate_access_control_service_provider_action["id"])
167
+ ```
168
+
169
+
170
+ :param str service_provider_action_id: Unique Oracle supplied identifier associated with the Service Provider Action.
171
+ """
172
+ __args__ = dict()
173
+ __args__['serviceProviderActionId'] = service_provider_action_id
174
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
175
+ __ret__ = pulumi.runtime.invoke('oci:DelegateAccessControl/getServiceProviderAction:getServiceProviderAction', __args__, opts=opts, typ=GetServiceProviderActionResult).value
176
+
177
+ return AwaitableGetServiceProviderActionResult(
178
+ component=pulumi.get(__ret__, 'component'),
179
+ customer_display_name=pulumi.get(__ret__, 'customer_display_name'),
180
+ description=pulumi.get(__ret__, 'description'),
181
+ id=pulumi.get(__ret__, 'id'),
182
+ name=pulumi.get(__ret__, 'name'),
183
+ properties=pulumi.get(__ret__, 'properties'),
184
+ resource_type=pulumi.get(__ret__, 'resource_type'),
185
+ service_provider_action_id=pulumi.get(__ret__, 'service_provider_action_id'),
186
+ service_provider_service_types=pulumi.get(__ret__, 'service_provider_service_types'),
187
+ state=pulumi.get(__ret__, 'state'))
188
+
189
+
190
+ @_utilities.lift_output_func(get_service_provider_action)
191
+ def get_service_provider_action_output(service_provider_action_id: Optional[pulumi.Input[str]] = None,
192
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetServiceProviderActionResult]:
193
+ """
194
+ This data source provides details about a specific Service Provider Action resource in Oracle Cloud Infrastructure Delegate Access Control service.
195
+
196
+ Gets the Service Provider Action associated with the specified Service Provider Action ID.
197
+
198
+ ## Example Usage
199
+
200
+ ```python
201
+ import pulumi
202
+ import pulumi_oci as oci
203
+
204
+ test_service_provider_action = oci.DelegateAccessControl.get_service_provider_action(service_provider_action_id=test_service_provider_action_oci_delegate_access_control_service_provider_action["id"])
205
+ ```
206
+
207
+
208
+ :param str service_provider_action_id: Unique Oracle supplied identifier associated with the Service Provider Action.
209
+ """
210
+ ...