pulumi-oci 1.17.0a1702406535__py3-none-any.whl → 1.18.0a1702447417__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 (82) hide show
  1. pulumi_oci/__init__.py +48 -0
  2. pulumi_oci/core/instance.py +7 -7
  3. pulumi_oci/database/__init__.py +1 -0
  4. pulumi_oci/database/autonomous_database.py +20 -1
  5. pulumi_oci/database/autonomous_database_saas_admin_user.py +479 -0
  6. pulumi_oci/datacatalog/_inputs.py +216 -0
  7. pulumi_oci/datacatalog/catalog.py +58 -0
  8. pulumi_oci/datacatalog/catalog_private_endpoint.py +58 -0
  9. pulumi_oci/datacatalog/get_catalog.py +28 -1
  10. pulumi_oci/datacatalog/get_catalog_private_endpoint.py +28 -1
  11. pulumi_oci/datacatalog/get_metastore.py +28 -1
  12. pulumi_oci/datacatalog/metastore.py +58 -0
  13. pulumi_oci/datacatalog/outputs.py +603 -0
  14. pulumi_oci/datasafe/_inputs.py +32 -0
  15. pulumi_oci/datasafe/database_security_config.py +7 -7
  16. pulumi_oci/datasafe/get_audit_events.py +1 -1
  17. pulumi_oci/datasafe/get_discovery_analytics.py +38 -1
  18. pulumi_oci/datasafe/get_report.py +1 -1
  19. pulumi_oci/datasafe/get_report_content.py +2 -2
  20. pulumi_oci/datasafe/get_report_definition.py +4 -4
  21. pulumi_oci/datasafe/get_sdm_masking_policy_difference.py +2 -2
  22. pulumi_oci/datasafe/get_sdm_masking_policy_differences.py +1 -1
  23. pulumi_oci/datasafe/get_security_assessment_findings.py +1 -1
  24. pulumi_oci/datasafe/get_sensitive_type.py +14 -1
  25. pulumi_oci/datasafe/get_sensitive_types.py +21 -1
  26. pulumi_oci/datasafe/get_user_assessment_profile_analytics.py +2 -2
  27. pulumi_oci/datasafe/get_user_assessment_user_analytics.py +2 -2
  28. pulumi_oci/datasafe/masking_policies_masking_column.py +2 -0
  29. pulumi_oci/datasafe/outputs.py +114 -24
  30. pulumi_oci/datasafe/report_definition.py +16 -16
  31. pulumi_oci/datasafe/sensitive_type.py +28 -0
  32. pulumi_oci/datasafe/sql_firewall_policy.py +103 -103
  33. pulumi_oci/goldengate/_inputs.py +28 -2
  34. pulumi_oci/goldengate/connection.py +77 -21
  35. pulumi_oci/goldengate/database_registration.py +7 -7
  36. pulumi_oci/goldengate/deployment.py +110 -7
  37. pulumi_oci/goldengate/get_connection.py +16 -2
  38. pulumi_oci/goldengate/get_database_registration.py +1 -1
  39. pulumi_oci/goldengate/get_deployment.py +41 -2
  40. pulumi_oci/goldengate/outputs.py +138 -11
  41. pulumi_oci/identity/__init__.py +3 -0
  42. pulumi_oci/identity/_inputs.py +862 -6
  43. pulumi_oci/identity/domains_identity_propagation_trust.py +3489 -0
  44. pulumi_oci/identity/domains_user.py +40 -41
  45. pulumi_oci/identity/get_domains_identity_propagation_trust.py +581 -0
  46. pulumi_oci/identity/get_domains_identity_propagation_trusts.py +310 -0
  47. pulumi_oci/identity/outputs.py +2625 -821
  48. pulumi_oci/logging/_inputs.py +17 -1
  49. pulumi_oci/logging/log.py +2 -0
  50. pulumi_oci/logging/outputs.py +35 -1
  51. pulumi_oci/meteringcomputation/__init__.py +7 -0
  52. pulumi_oci/meteringcomputation/_inputs.py +787 -0
  53. pulumi_oci/meteringcomputation/get_average_carbon_emission.py +121 -0
  54. pulumi_oci/meteringcomputation/get_clean_energy_usage.py +116 -0
  55. pulumi_oci/meteringcomputation/get_schedule.py +2 -2
  56. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_config.py +119 -0
  57. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_queries.py +136 -0
  58. pulumi_oci/meteringcomputation/get_usage_carbon_emissions_query.py +132 -0
  59. pulumi_oci/meteringcomputation/outputs.py +2410 -1149
  60. pulumi_oci/meteringcomputation/schedule.py +14 -14
  61. pulumi_oci/meteringcomputation/usage_carbon_emission.py +597 -0
  62. pulumi_oci/meteringcomputation/usage_carbon_emissions_query.py +282 -0
  63. pulumi_oci/opsi/__init__.py +4 -0
  64. pulumi_oci/opsi/_inputs.py +46 -0
  65. pulumi_oci/opsi/awr_hub.py +49 -22
  66. pulumi_oci/opsi/awr_hub_source.py +957 -0
  67. pulumi_oci/opsi/awr_hub_source_awrhubsources_management.py +248 -0
  68. pulumi_oci/opsi/get_awr_hub.py +14 -1
  69. pulumi_oci/opsi/get_awr_hub_source.py +391 -0
  70. pulumi_oci/opsi/get_awr_hub_sources.py +250 -0
  71. pulumi_oci/opsi/operations_insights_warehouse.py +7 -7
  72. pulumi_oci/opsi/outputs.py +319 -0
  73. pulumi_oci/optimizer/get_histories.py +18 -1
  74. pulumi_oci/optimizer/get_profile.py +11 -1
  75. pulumi_oci/optimizer/get_resource_action.py +22 -5
  76. pulumi_oci/optimizer/get_resource_actions.py +18 -1
  77. pulumi_oci/optimizer/outputs.py +7 -0
  78. pulumi_oci/optimizer/profile.py +20 -0
  79. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/METADATA +1 -1
  80. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/RECORD +82 -67
  81. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/WHEEL +0 -0
  82. {pulumi_oci-1.17.0a1702406535.dist-info → pulumi_oci-1.18.0a1702447417.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,581 @@
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
+ 'GetDomainsIdentityPropagationTrustResult',
15
+ 'AwaitableGetDomainsIdentityPropagationTrustResult',
16
+ 'get_domains_identity_propagation_trust',
17
+ 'get_domains_identity_propagation_trust_output',
18
+ ]
19
+
20
+ @pulumi.output_type
21
+ class GetDomainsIdentityPropagationTrustResult:
22
+ """
23
+ A collection of values returned by getDomainsIdentityPropagationTrust.
24
+ """
25
+ def __init__(__self__, account_id=None, active=None, allow_impersonation=None, attribute_sets=None, attributes=None, authorization=None, client_claim_name=None, client_claim_values=None, clock_skew_seconds=None, compartment_ocid=None, delete_in_progress=None, description=None, domain_ocid=None, id=None, idcs_created_bies=None, idcs_endpoint=None, idcs_last_modified_bies=None, idcs_last_upgraded_in_release=None, idcs_prevented_operations=None, identity_propagation_trust_id=None, impersonation_service_users=None, issuer=None, keytabs=None, metas=None, name=None, oauth_clients=None, ocid=None, public_certificate=None, public_key_endpoint=None, resource_type_schema_version=None, schemas=None, subject_claim_name=None, subject_mapping_attribute=None, subject_type=None, tags=None, tenancy_ocid=None, type=None):
26
+ if account_id and not isinstance(account_id, str):
27
+ raise TypeError("Expected argument 'account_id' to be a str")
28
+ pulumi.set(__self__, "account_id", account_id)
29
+ if active and not isinstance(active, bool):
30
+ raise TypeError("Expected argument 'active' to be a bool")
31
+ pulumi.set(__self__, "active", active)
32
+ if allow_impersonation and not isinstance(allow_impersonation, bool):
33
+ raise TypeError("Expected argument 'allow_impersonation' to be a bool")
34
+ pulumi.set(__self__, "allow_impersonation", allow_impersonation)
35
+ if attribute_sets and not isinstance(attribute_sets, list):
36
+ raise TypeError("Expected argument 'attribute_sets' to be a list")
37
+ pulumi.set(__self__, "attribute_sets", attribute_sets)
38
+ if attributes and not isinstance(attributes, str):
39
+ raise TypeError("Expected argument 'attributes' to be a str")
40
+ pulumi.set(__self__, "attributes", attributes)
41
+ if authorization and not isinstance(authorization, str):
42
+ raise TypeError("Expected argument 'authorization' to be a str")
43
+ pulumi.set(__self__, "authorization", authorization)
44
+ if client_claim_name and not isinstance(client_claim_name, str):
45
+ raise TypeError("Expected argument 'client_claim_name' to be a str")
46
+ pulumi.set(__self__, "client_claim_name", client_claim_name)
47
+ if client_claim_values and not isinstance(client_claim_values, list):
48
+ raise TypeError("Expected argument 'client_claim_values' to be a list")
49
+ pulumi.set(__self__, "client_claim_values", client_claim_values)
50
+ if clock_skew_seconds and not isinstance(clock_skew_seconds, int):
51
+ raise TypeError("Expected argument 'clock_skew_seconds' to be a int")
52
+ pulumi.set(__self__, "clock_skew_seconds", clock_skew_seconds)
53
+ if compartment_ocid and not isinstance(compartment_ocid, str):
54
+ raise TypeError("Expected argument 'compartment_ocid' to be a str")
55
+ pulumi.set(__self__, "compartment_ocid", compartment_ocid)
56
+ if delete_in_progress and not isinstance(delete_in_progress, bool):
57
+ raise TypeError("Expected argument 'delete_in_progress' to be a bool")
58
+ pulumi.set(__self__, "delete_in_progress", delete_in_progress)
59
+ if description and not isinstance(description, str):
60
+ raise TypeError("Expected argument 'description' to be a str")
61
+ pulumi.set(__self__, "description", description)
62
+ if domain_ocid and not isinstance(domain_ocid, str):
63
+ raise TypeError("Expected argument 'domain_ocid' to be a str")
64
+ pulumi.set(__self__, "domain_ocid", domain_ocid)
65
+ if id and not isinstance(id, str):
66
+ raise TypeError("Expected argument 'id' to be a str")
67
+ pulumi.set(__self__, "id", id)
68
+ if idcs_created_bies and not isinstance(idcs_created_bies, list):
69
+ raise TypeError("Expected argument 'idcs_created_bies' to be a list")
70
+ pulumi.set(__self__, "idcs_created_bies", idcs_created_bies)
71
+ if idcs_endpoint and not isinstance(idcs_endpoint, str):
72
+ raise TypeError("Expected argument 'idcs_endpoint' to be a str")
73
+ pulumi.set(__self__, "idcs_endpoint", idcs_endpoint)
74
+ if idcs_last_modified_bies and not isinstance(idcs_last_modified_bies, list):
75
+ raise TypeError("Expected argument 'idcs_last_modified_bies' to be a list")
76
+ pulumi.set(__self__, "idcs_last_modified_bies", idcs_last_modified_bies)
77
+ if idcs_last_upgraded_in_release and not isinstance(idcs_last_upgraded_in_release, str):
78
+ raise TypeError("Expected argument 'idcs_last_upgraded_in_release' to be a str")
79
+ pulumi.set(__self__, "idcs_last_upgraded_in_release", idcs_last_upgraded_in_release)
80
+ if idcs_prevented_operations and not isinstance(idcs_prevented_operations, list):
81
+ raise TypeError("Expected argument 'idcs_prevented_operations' to be a list")
82
+ pulumi.set(__self__, "idcs_prevented_operations", idcs_prevented_operations)
83
+ if identity_propagation_trust_id and not isinstance(identity_propagation_trust_id, str):
84
+ raise TypeError("Expected argument 'identity_propagation_trust_id' to be a str")
85
+ pulumi.set(__self__, "identity_propagation_trust_id", identity_propagation_trust_id)
86
+ if impersonation_service_users and not isinstance(impersonation_service_users, list):
87
+ raise TypeError("Expected argument 'impersonation_service_users' to be a list")
88
+ pulumi.set(__self__, "impersonation_service_users", impersonation_service_users)
89
+ if issuer and not isinstance(issuer, str):
90
+ raise TypeError("Expected argument 'issuer' to be a str")
91
+ pulumi.set(__self__, "issuer", issuer)
92
+ if keytabs and not isinstance(keytabs, list):
93
+ raise TypeError("Expected argument 'keytabs' to be a list")
94
+ pulumi.set(__self__, "keytabs", keytabs)
95
+ if metas and not isinstance(metas, list):
96
+ raise TypeError("Expected argument 'metas' to be a list")
97
+ pulumi.set(__self__, "metas", metas)
98
+ if name and not isinstance(name, str):
99
+ raise TypeError("Expected argument 'name' to be a str")
100
+ pulumi.set(__self__, "name", name)
101
+ if oauth_clients and not isinstance(oauth_clients, list):
102
+ raise TypeError("Expected argument 'oauth_clients' to be a list")
103
+ pulumi.set(__self__, "oauth_clients", oauth_clients)
104
+ if ocid and not isinstance(ocid, str):
105
+ raise TypeError("Expected argument 'ocid' to be a str")
106
+ pulumi.set(__self__, "ocid", ocid)
107
+ if public_certificate and not isinstance(public_certificate, str):
108
+ raise TypeError("Expected argument 'public_certificate' to be a str")
109
+ pulumi.set(__self__, "public_certificate", public_certificate)
110
+ if public_key_endpoint and not isinstance(public_key_endpoint, str):
111
+ raise TypeError("Expected argument 'public_key_endpoint' to be a str")
112
+ pulumi.set(__self__, "public_key_endpoint", public_key_endpoint)
113
+ if resource_type_schema_version and not isinstance(resource_type_schema_version, str):
114
+ raise TypeError("Expected argument 'resource_type_schema_version' to be a str")
115
+ pulumi.set(__self__, "resource_type_schema_version", resource_type_schema_version)
116
+ if schemas and not isinstance(schemas, list):
117
+ raise TypeError("Expected argument 'schemas' to be a list")
118
+ pulumi.set(__self__, "schemas", schemas)
119
+ if subject_claim_name and not isinstance(subject_claim_name, str):
120
+ raise TypeError("Expected argument 'subject_claim_name' to be a str")
121
+ pulumi.set(__self__, "subject_claim_name", subject_claim_name)
122
+ if subject_mapping_attribute and not isinstance(subject_mapping_attribute, str):
123
+ raise TypeError("Expected argument 'subject_mapping_attribute' to be a str")
124
+ pulumi.set(__self__, "subject_mapping_attribute", subject_mapping_attribute)
125
+ if subject_type and not isinstance(subject_type, str):
126
+ raise TypeError("Expected argument 'subject_type' to be a str")
127
+ pulumi.set(__self__, "subject_type", subject_type)
128
+ if tags and not isinstance(tags, list):
129
+ raise TypeError("Expected argument 'tags' to be a list")
130
+ pulumi.set(__self__, "tags", tags)
131
+ if tenancy_ocid and not isinstance(tenancy_ocid, str):
132
+ raise TypeError("Expected argument 'tenancy_ocid' to be a str")
133
+ pulumi.set(__self__, "tenancy_ocid", tenancy_ocid)
134
+ if type and not isinstance(type, str):
135
+ raise TypeError("Expected argument 'type' to be a str")
136
+ pulumi.set(__self__, "type", type)
137
+
138
+ @property
139
+ @pulumi.getter(name="accountId")
140
+ def account_id(self) -> str:
141
+ """
142
+ The Identity cloud provider service identifier, for example, the Azure Tenancy ID, AWS Account ID, or GCP Project ID.
143
+ """
144
+ return pulumi.get(self, "account_id")
145
+
146
+ @property
147
+ @pulumi.getter
148
+ def active(self) -> bool:
149
+ """
150
+ If true, specifies that this Identity Propagation Trust is in an enabled state. The default value is false.
151
+ """
152
+ return pulumi.get(self, "active")
153
+
154
+ @property
155
+ @pulumi.getter(name="allowImpersonation")
156
+ def allow_impersonation(self) -> bool:
157
+ """
158
+ Allow customers to define whether the resulting token should contain the authenticated user as the subject or whether the token should impersonate another Application Principal in IAM.
159
+ """
160
+ return pulumi.get(self, "allow_impersonation")
161
+
162
+ @property
163
+ @pulumi.getter(name="attributeSets")
164
+ def attribute_sets(self) -> Optional[Sequence[str]]:
165
+ return pulumi.get(self, "attribute_sets")
166
+
167
+ @property
168
+ @pulumi.getter
169
+ def attributes(self) -> Optional[str]:
170
+ return pulumi.get(self, "attributes")
171
+
172
+ @property
173
+ @pulumi.getter
174
+ def authorization(self) -> Optional[str]:
175
+ return pulumi.get(self, "authorization")
176
+
177
+ @property
178
+ @pulumi.getter(name="clientClaimName")
179
+ def client_claim_name(self) -> str:
180
+ """
181
+ The claim name that identifies to whom the JWT/SAML token is issued. If AWS, then \\"aud\\" or \\"client_id\\". If Azure, then \\"appid\\". If GCP, then \\"aud\\".
182
+ """
183
+ return pulumi.get(self, "client_claim_name")
184
+
185
+ @property
186
+ @pulumi.getter(name="clientClaimValues")
187
+ def client_claim_values(self) -> Sequence[str]:
188
+ """
189
+ The value that corresponds to the client claim name used to identify to whom the token is issued.
190
+ """
191
+ return pulumi.get(self, "client_claim_values")
192
+
193
+ @property
194
+ @pulumi.getter(name="clockSkewSeconds")
195
+ def clock_skew_seconds(self) -> int:
196
+ """
197
+ The clock skew (in secs) that's allowed for the token issue and expiry time.
198
+ """
199
+ return pulumi.get(self, "clock_skew_seconds")
200
+
201
+ @property
202
+ @pulumi.getter(name="compartmentOcid")
203
+ def compartment_ocid(self) -> str:
204
+ """
205
+ Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
206
+ """
207
+ return pulumi.get(self, "compartment_ocid")
208
+
209
+ @property
210
+ @pulumi.getter(name="deleteInProgress")
211
+ def delete_in_progress(self) -> bool:
212
+ """
213
+ A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
214
+ """
215
+ return pulumi.get(self, "delete_in_progress")
216
+
217
+ @property
218
+ @pulumi.getter
219
+ def description(self) -> str:
220
+ """
221
+ The description of the Identity Propagation Trust.
222
+ """
223
+ return pulumi.get(self, "description")
224
+
225
+ @property
226
+ @pulumi.getter(name="domainOcid")
227
+ def domain_ocid(self) -> str:
228
+ """
229
+ Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
230
+ """
231
+ return pulumi.get(self, "domain_ocid")
232
+
233
+ @property
234
+ @pulumi.getter
235
+ def id(self) -> str:
236
+ """
237
+ Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
238
+ """
239
+ return pulumi.get(self, "id")
240
+
241
+ @property
242
+ @pulumi.getter(name="idcsCreatedBies")
243
+ def idcs_created_bies(self) -> Sequence['outputs.GetDomainsIdentityPropagationTrustIdcsCreatedByResult']:
244
+ """
245
+ The User or App who created the Resource
246
+ """
247
+ return pulumi.get(self, "idcs_created_bies")
248
+
249
+ @property
250
+ @pulumi.getter(name="idcsEndpoint")
251
+ def idcs_endpoint(self) -> str:
252
+ return pulumi.get(self, "idcs_endpoint")
253
+
254
+ @property
255
+ @pulumi.getter(name="idcsLastModifiedBies")
256
+ def idcs_last_modified_bies(self) -> Sequence['outputs.GetDomainsIdentityPropagationTrustIdcsLastModifiedByResult']:
257
+ """
258
+ The User or App who modified the Resource
259
+ """
260
+ return pulumi.get(self, "idcs_last_modified_bies")
261
+
262
+ @property
263
+ @pulumi.getter(name="idcsLastUpgradedInRelease")
264
+ def idcs_last_upgraded_in_release(self) -> str:
265
+ """
266
+ The release number when the resource was upgraded.
267
+ """
268
+ return pulumi.get(self, "idcs_last_upgraded_in_release")
269
+
270
+ @property
271
+ @pulumi.getter(name="idcsPreventedOperations")
272
+ def idcs_prevented_operations(self) -> Sequence[str]:
273
+ """
274
+ Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
275
+ """
276
+ return pulumi.get(self, "idcs_prevented_operations")
277
+
278
+ @property
279
+ @pulumi.getter(name="identityPropagationTrustId")
280
+ def identity_propagation_trust_id(self) -> str:
281
+ return pulumi.get(self, "identity_propagation_trust_id")
282
+
283
+ @property
284
+ @pulumi.getter(name="impersonationServiceUsers")
285
+ def impersonation_service_users(self) -> Sequence['outputs.GetDomainsIdentityPropagationTrustImpersonationServiceUserResult']:
286
+ """
287
+ The Impersonating Principal.
288
+ """
289
+ return pulumi.get(self, "impersonation_service_users")
290
+
291
+ @property
292
+ @pulumi.getter
293
+ def issuer(self) -> str:
294
+ """
295
+ The issuer claim of the Identity provider.
296
+ """
297
+ return pulumi.get(self, "issuer")
298
+
299
+ @property
300
+ @pulumi.getter
301
+ def keytabs(self) -> Sequence['outputs.GetDomainsIdentityPropagationTrustKeytabResult']:
302
+ """
303
+ The keytab stored in the tenancy's Vault. This is required if the identity propagation type is 'SPNEGO'.
304
+ """
305
+ return pulumi.get(self, "keytabs")
306
+
307
+ @property
308
+ @pulumi.getter
309
+ def metas(self) -> Sequence['outputs.GetDomainsIdentityPropagationTrustMetaResult']:
310
+ """
311
+ A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
312
+ """
313
+ return pulumi.get(self, "metas")
314
+
315
+ @property
316
+ @pulumi.getter
317
+ def name(self) -> str:
318
+ """
319
+ The name of the the Identity Propagation Trust.
320
+ """
321
+ return pulumi.get(self, "name")
322
+
323
+ @property
324
+ @pulumi.getter(name="oauthClients")
325
+ def oauth_clients(self) -> Sequence[str]:
326
+ """
327
+ The value of all the authorized OAuth Clients.
328
+ """
329
+ return pulumi.get(self, "oauth_clients")
330
+
331
+ @property
332
+ @pulumi.getter
333
+ def ocid(self) -> str:
334
+ """
335
+ Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
336
+ """
337
+ return pulumi.get(self, "ocid")
338
+
339
+ @property
340
+ @pulumi.getter(name="publicCertificate")
341
+ def public_certificate(self) -> str:
342
+ """
343
+ Store the public key if public key cert.
344
+ """
345
+ return pulumi.get(self, "public_certificate")
346
+
347
+ @property
348
+ @pulumi.getter(name="publicKeyEndpoint")
349
+ def public_key_endpoint(self) -> str:
350
+ """
351
+ The cloud provider's public key API of SAML and OIDC providers for signature validation.
352
+ """
353
+ return pulumi.get(self, "public_key_endpoint")
354
+
355
+ @property
356
+ @pulumi.getter(name="resourceTypeSchemaVersion")
357
+ def resource_type_schema_version(self) -> Optional[str]:
358
+ return pulumi.get(self, "resource_type_schema_version")
359
+
360
+ @property
361
+ @pulumi.getter
362
+ def schemas(self) -> Sequence[str]:
363
+ """
364
+ REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard \\"enterprise\\" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.
365
+ """
366
+ return pulumi.get(self, "schemas")
367
+
368
+ @property
369
+ @pulumi.getter(name="subjectClaimName")
370
+ def subject_claim_name(self) -> str:
371
+ """
372
+ Used for locating the subject claim from the incoming token.
373
+ """
374
+ return pulumi.get(self, "subject_claim_name")
375
+
376
+ @property
377
+ @pulumi.getter(name="subjectMappingAttribute")
378
+ def subject_mapping_attribute(self) -> str:
379
+ """
380
+ Subject Mapping Attribute to which the value from subject claim name value would be used for identity lookup.
381
+ """
382
+ return pulumi.get(self, "subject_mapping_attribute")
383
+
384
+ @property
385
+ @pulumi.getter(name="subjectType")
386
+ def subject_type(self) -> str:
387
+ """
388
+ The type of the resource against which lookup will be made in the identity domain in IAM for the incoming subject claim value.
389
+ """
390
+ return pulumi.get(self, "subject_type")
391
+
392
+ @property
393
+ @pulumi.getter
394
+ def tags(self) -> Sequence['outputs.GetDomainsIdentityPropagationTrustTagResult']:
395
+ """
396
+ A list of tags on this resource.
397
+ """
398
+ return pulumi.get(self, "tags")
399
+
400
+ @property
401
+ @pulumi.getter(name="tenancyOcid")
402
+ def tenancy_ocid(self) -> str:
403
+ """
404
+ Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
405
+ """
406
+ return pulumi.get(self, "tenancy_ocid")
407
+
408
+ @property
409
+ @pulumi.getter
410
+ def type(self) -> str:
411
+ """
412
+ The type of the inbound token from the Identity cloud provider.
413
+ """
414
+ return pulumi.get(self, "type")
415
+
416
+
417
+ class AwaitableGetDomainsIdentityPropagationTrustResult(GetDomainsIdentityPropagationTrustResult):
418
+ # pylint: disable=using-constant-test
419
+ def __await__(self):
420
+ if False:
421
+ yield self
422
+ return GetDomainsIdentityPropagationTrustResult(
423
+ account_id=self.account_id,
424
+ active=self.active,
425
+ allow_impersonation=self.allow_impersonation,
426
+ attribute_sets=self.attribute_sets,
427
+ attributes=self.attributes,
428
+ authorization=self.authorization,
429
+ client_claim_name=self.client_claim_name,
430
+ client_claim_values=self.client_claim_values,
431
+ clock_skew_seconds=self.clock_skew_seconds,
432
+ compartment_ocid=self.compartment_ocid,
433
+ delete_in_progress=self.delete_in_progress,
434
+ description=self.description,
435
+ domain_ocid=self.domain_ocid,
436
+ id=self.id,
437
+ idcs_created_bies=self.idcs_created_bies,
438
+ idcs_endpoint=self.idcs_endpoint,
439
+ idcs_last_modified_bies=self.idcs_last_modified_bies,
440
+ idcs_last_upgraded_in_release=self.idcs_last_upgraded_in_release,
441
+ idcs_prevented_operations=self.idcs_prevented_operations,
442
+ identity_propagation_trust_id=self.identity_propagation_trust_id,
443
+ impersonation_service_users=self.impersonation_service_users,
444
+ issuer=self.issuer,
445
+ keytabs=self.keytabs,
446
+ metas=self.metas,
447
+ name=self.name,
448
+ oauth_clients=self.oauth_clients,
449
+ ocid=self.ocid,
450
+ public_certificate=self.public_certificate,
451
+ public_key_endpoint=self.public_key_endpoint,
452
+ resource_type_schema_version=self.resource_type_schema_version,
453
+ schemas=self.schemas,
454
+ subject_claim_name=self.subject_claim_name,
455
+ subject_mapping_attribute=self.subject_mapping_attribute,
456
+ subject_type=self.subject_type,
457
+ tags=self.tags,
458
+ tenancy_ocid=self.tenancy_ocid,
459
+ type=self.type)
460
+
461
+
462
+ def get_domains_identity_propagation_trust(attribute_sets: Optional[Sequence[str]] = None,
463
+ attributes: Optional[str] = None,
464
+ authorization: Optional[str] = None,
465
+ idcs_endpoint: Optional[str] = None,
466
+ identity_propagation_trust_id: Optional[str] = None,
467
+ resource_type_schema_version: Optional[str] = None,
468
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetDomainsIdentityPropagationTrustResult:
469
+ """
470
+ This data source provides details about a specific Identity Propagation Trust resource in Oracle Cloud Infrastructure Identity Domains service.
471
+
472
+ Get an existing Identity Propagation Trust configuration.
473
+
474
+ ## Example Usage
475
+
476
+ ```python
477
+ import pulumi
478
+ import pulumi_oci as oci
479
+
480
+ test_identity_propagation_trust = oci.Identity.get_domains_identity_propagation_trust(idcs_endpoint=data["oci_identity_domain"]["test_domain"]["url"],
481
+ identity_propagation_trust_id=oci_identity_domains_identity_propagation_trust["test_identity_propagation_trust"]["id"],
482
+ attribute_sets=["all"],
483
+ attributes="",
484
+ authorization=var["identity_propagation_trust_authorization"],
485
+ resource_type_schema_version=var["identity_propagation_trust_resource_type_schema_version"])
486
+ ```
487
+
488
+
489
+ :param Sequence[str] attribute_sets: A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
490
+ :param str attributes: A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
491
+ :param str authorization: The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
492
+ :param str idcs_endpoint: The basic endpoint for the identity domain
493
+ :param str identity_propagation_trust_id: ID of the resource
494
+ :param str resource_type_schema_version: An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
495
+ """
496
+ __args__ = dict()
497
+ __args__['attributeSets'] = attribute_sets
498
+ __args__['attributes'] = attributes
499
+ __args__['authorization'] = authorization
500
+ __args__['idcsEndpoint'] = idcs_endpoint
501
+ __args__['identityPropagationTrustId'] = identity_propagation_trust_id
502
+ __args__['resourceTypeSchemaVersion'] = resource_type_schema_version
503
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
504
+ __ret__ = pulumi.runtime.invoke('oci:Identity/getDomainsIdentityPropagationTrust:getDomainsIdentityPropagationTrust', __args__, opts=opts, typ=GetDomainsIdentityPropagationTrustResult).value
505
+
506
+ return AwaitableGetDomainsIdentityPropagationTrustResult(
507
+ account_id=pulumi.get(__ret__, 'account_id'),
508
+ active=pulumi.get(__ret__, 'active'),
509
+ allow_impersonation=pulumi.get(__ret__, 'allow_impersonation'),
510
+ attribute_sets=pulumi.get(__ret__, 'attribute_sets'),
511
+ attributes=pulumi.get(__ret__, 'attributes'),
512
+ authorization=pulumi.get(__ret__, 'authorization'),
513
+ client_claim_name=pulumi.get(__ret__, 'client_claim_name'),
514
+ client_claim_values=pulumi.get(__ret__, 'client_claim_values'),
515
+ clock_skew_seconds=pulumi.get(__ret__, 'clock_skew_seconds'),
516
+ compartment_ocid=pulumi.get(__ret__, 'compartment_ocid'),
517
+ delete_in_progress=pulumi.get(__ret__, 'delete_in_progress'),
518
+ description=pulumi.get(__ret__, 'description'),
519
+ domain_ocid=pulumi.get(__ret__, 'domain_ocid'),
520
+ id=pulumi.get(__ret__, 'id'),
521
+ idcs_created_bies=pulumi.get(__ret__, 'idcs_created_bies'),
522
+ idcs_endpoint=pulumi.get(__ret__, 'idcs_endpoint'),
523
+ idcs_last_modified_bies=pulumi.get(__ret__, 'idcs_last_modified_bies'),
524
+ idcs_last_upgraded_in_release=pulumi.get(__ret__, 'idcs_last_upgraded_in_release'),
525
+ idcs_prevented_operations=pulumi.get(__ret__, 'idcs_prevented_operations'),
526
+ identity_propagation_trust_id=pulumi.get(__ret__, 'identity_propagation_trust_id'),
527
+ impersonation_service_users=pulumi.get(__ret__, 'impersonation_service_users'),
528
+ issuer=pulumi.get(__ret__, 'issuer'),
529
+ keytabs=pulumi.get(__ret__, 'keytabs'),
530
+ metas=pulumi.get(__ret__, 'metas'),
531
+ name=pulumi.get(__ret__, 'name'),
532
+ oauth_clients=pulumi.get(__ret__, 'oauth_clients'),
533
+ ocid=pulumi.get(__ret__, 'ocid'),
534
+ public_certificate=pulumi.get(__ret__, 'public_certificate'),
535
+ public_key_endpoint=pulumi.get(__ret__, 'public_key_endpoint'),
536
+ resource_type_schema_version=pulumi.get(__ret__, 'resource_type_schema_version'),
537
+ schemas=pulumi.get(__ret__, 'schemas'),
538
+ subject_claim_name=pulumi.get(__ret__, 'subject_claim_name'),
539
+ subject_mapping_attribute=pulumi.get(__ret__, 'subject_mapping_attribute'),
540
+ subject_type=pulumi.get(__ret__, 'subject_type'),
541
+ tags=pulumi.get(__ret__, 'tags'),
542
+ tenancy_ocid=pulumi.get(__ret__, 'tenancy_ocid'),
543
+ type=pulumi.get(__ret__, 'type'))
544
+
545
+
546
+ @_utilities.lift_output_func(get_domains_identity_propagation_trust)
547
+ def get_domains_identity_propagation_trust_output(attribute_sets: Optional[pulumi.Input[Optional[Sequence[str]]]] = None,
548
+ attributes: Optional[pulumi.Input[Optional[str]]] = None,
549
+ authorization: Optional[pulumi.Input[Optional[str]]] = None,
550
+ idcs_endpoint: Optional[pulumi.Input[str]] = None,
551
+ identity_propagation_trust_id: Optional[pulumi.Input[str]] = None,
552
+ resource_type_schema_version: Optional[pulumi.Input[Optional[str]]] = None,
553
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetDomainsIdentityPropagationTrustResult]:
554
+ """
555
+ This data source provides details about a specific Identity Propagation Trust resource in Oracle Cloud Infrastructure Identity Domains service.
556
+
557
+ Get an existing Identity Propagation Trust configuration.
558
+
559
+ ## Example Usage
560
+
561
+ ```python
562
+ import pulumi
563
+ import pulumi_oci as oci
564
+
565
+ test_identity_propagation_trust = oci.Identity.get_domains_identity_propagation_trust(idcs_endpoint=data["oci_identity_domain"]["test_domain"]["url"],
566
+ identity_propagation_trust_id=oci_identity_domains_identity_propagation_trust["test_identity_propagation_trust"]["id"],
567
+ attribute_sets=["all"],
568
+ attributes="",
569
+ authorization=var["identity_propagation_trust_authorization"],
570
+ resource_type_schema_version=var["identity_propagation_trust_resource_type_schema_version"])
571
+ ```
572
+
573
+
574
+ :param Sequence[str] attribute_sets: A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
575
+ :param str attributes: A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
576
+ :param str authorization: The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
577
+ :param str idcs_endpoint: The basic endpoint for the identity domain
578
+ :param str identity_propagation_trust_id: ID of the resource
579
+ :param str resource_type_schema_version: An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
580
+ """
581
+ ...