pulumi-oci 2.16.0a1731393786__py3-none-any.whl → 2.16.0a1731504509__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +19 -0
- pulumi_oci/database/autonomous_database.py +47 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +105 -0
- pulumi_oci/database/cloud_vm_cluster.py +49 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/db_system.py +47 -0
- pulumi_oci/database/exadb_vm_cluster.py +68 -7
- pulumi_oci/database/get_autonomous_database.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
- pulumi_oci/database/get_data_guard_association.py +12 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +16 -2
- pulumi_oci/database/outputs.py +97 -2
- pulumi_oci/dataflow/get_sql_endpoint.py +1 -15
- pulumi_oci/dataflow/outputs.py +0 -11
- pulumi_oci/dataflow/sql_endpoint.py +88 -85
- pulumi_oci/globallydistributeddatabase/__init__.py +15 -0
- pulumi_oci/globallydistributeddatabase/_inputs.py +1289 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +348 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +191 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +746 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +191 -0
- pulumi_oci/globallydistributeddatabase/outputs.py +2114 -0
- pulumi_oci/globallydistributeddatabase/private_endpoint.py +822 -0
- pulumi_oci/globallydistributeddatabase/sharded_database.py +2157 -0
- pulumi_oci/identity/__init__.py +2 -0
- pulumi_oci/identity/_inputs.py +55 -6
- pulumi_oci/identity/domains_condition.py +9 -2
- pulumi_oci/identity/domains_policy.py +9 -2
- pulumi_oci/identity/domains_rule.py +9 -2
- pulumi_oci/identity/get_domains_condition.py +2 -2
- pulumi_oci/identity/get_domains_conditions.py +2 -2
- pulumi_oci/identity/get_domains_oci_console_sign_on_policy_consent.py +503 -0
- pulumi_oci/identity/get_domains_oci_console_sign_on_policy_consents.py +338 -0
- pulumi_oci/identity/get_domains_policies.py +2 -2
- pulumi_oci/identity/get_domains_policy.py +2 -2
- pulumi_oci/identity/get_domains_rule.py +2 -2
- pulumi_oci/identity/get_domains_rules.py +2 -2
- pulumi_oci/identity/outputs.py +917 -4
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.16.0a1731393786.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/METADATA +1 -1
- {pulumi_oci-2.16.0a1731393786.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/RECORD +44 -33
- {pulumi_oci-2.16.0a1731393786.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.16.0a1731393786.dist-info → pulumi_oci-2.16.0a1731504509.dist-info}/top_level.txt +0 -0
pulumi_oci/identity/__init__.py
CHANGED
@@ -154,6 +154,8 @@ from .get_domains_oauth_client_certificate import *
|
|
154
154
|
from .get_domains_oauth_client_certificates import *
|
155
155
|
from .get_domains_oauth_partner_certificate import *
|
156
156
|
from .get_domains_oauth_partner_certificates import *
|
157
|
+
from .get_domains_oci_console_sign_on_policy_consent import *
|
158
|
+
from .get_domains_oci_console_sign_on_policy_consents import *
|
157
159
|
from .get_domains_password_policies import *
|
158
160
|
from .get_domains_password_policy import *
|
159
161
|
from .get_domains_policies import *
|
pulumi_oci/identity/_inputs.py
CHANGED
@@ -895,6 +895,8 @@ __all__ = [
|
|
895
895
|
'GetDbCredentialsFilterArgsDict',
|
896
896
|
'GetDomainsFilterArgs',
|
897
897
|
'GetDomainsFilterArgsDict',
|
898
|
+
'GetDomainsOciConsoleSignOnPolicyConsentsFilterArgs',
|
899
|
+
'GetDomainsOciConsoleSignOnPolicyConsentsFilterArgsDict',
|
898
900
|
'GetDynamicGroupsFilterArgs',
|
899
901
|
'GetDynamicGroupsFilterArgsDict',
|
900
902
|
'GetFaultDomainsFilterArgs',
|
@@ -69264,7 +69266,7 @@ if not MYPY:
|
|
69264
69266
|
class DomainsPolicyPolicyTypeArgsDict(TypedDict):
|
69265
69267
|
value: pulumi.Input[str]
|
69266
69268
|
"""
|
69267
|
-
(Updatable) PolicyType identifier
|
69269
|
+
(Updatable) PolicyType identifier.
|
69268
69270
|
|
69269
69271
|
**SCIM++ Properties:**
|
69270
69272
|
* caseExact: true
|
@@ -69298,7 +69300,7 @@ class DomainsPolicyPolicyTypeArgs:
|
|
69298
69300
|
value: pulumi.Input[str],
|
69299
69301
|
ref: Optional[pulumi.Input[str]] = None):
|
69300
69302
|
"""
|
69301
|
-
:param pulumi.Input[str] value: (Updatable) PolicyType identifier
|
69303
|
+
:param pulumi.Input[str] value: (Updatable) PolicyType identifier.
|
69302
69304
|
|
69303
69305
|
**SCIM++ Properties:**
|
69304
69306
|
* caseExact: true
|
@@ -69328,7 +69330,7 @@ class DomainsPolicyPolicyTypeArgs:
|
|
69328
69330
|
@pulumi.getter
|
69329
69331
|
def value(self) -> pulumi.Input[str]:
|
69330
69332
|
"""
|
69331
|
-
(Updatable) PolicyType identifier
|
69333
|
+
(Updatable) PolicyType identifier.
|
69332
69334
|
|
69333
69335
|
**SCIM++ Properties:**
|
69334
69336
|
* caseExact: true
|
@@ -69737,7 +69739,7 @@ if not MYPY:
|
|
69737
69739
|
"""
|
69738
69740
|
value: NotRequired[pulumi.Input[str]]
|
69739
69741
|
"""
|
69740
|
-
(Updatable) Condition or ConditionGroup identifier
|
69742
|
+
(Updatable) Condition or ConditionGroup identifier.
|
69741
69743
|
|
69742
69744
|
**SCIM++ Properties:**
|
69743
69745
|
* caseExact: true
|
@@ -69793,7 +69795,7 @@ class DomainsRuleConditionGroupArgs:
|
|
69793
69795
|
* returned: default
|
69794
69796
|
* type: reference
|
69795
69797
|
* uniqueness: none
|
69796
|
-
:param pulumi.Input[str] value: (Updatable) Condition or ConditionGroup identifier
|
69798
|
+
:param pulumi.Input[str] value: (Updatable) Condition or ConditionGroup identifier.
|
69797
69799
|
|
69798
69800
|
**SCIM++ Properties:**
|
69799
69801
|
* caseExact: true
|
@@ -69883,7 +69885,7 @@ class DomainsRuleConditionGroupArgs:
|
|
69883
69885
|
@pulumi.getter
|
69884
69886
|
def value(self) -> Optional[pulumi.Input[str]]:
|
69885
69887
|
"""
|
69886
|
-
(Updatable) Condition or ConditionGroup identifier
|
69888
|
+
(Updatable) Condition or ConditionGroup identifier.
|
69887
69889
|
|
69888
69890
|
**SCIM++ Properties:**
|
69889
69891
|
* caseExact: true
|
@@ -98681,6 +98683,53 @@ class GetDomainsFilterArgs:
|
|
98681
98683
|
pulumi.set(self, "regex", value)
|
98682
98684
|
|
98683
98685
|
|
98686
|
+
if not MYPY:
|
98687
|
+
class GetDomainsOciConsoleSignOnPolicyConsentsFilterArgsDict(TypedDict):
|
98688
|
+
name: str
|
98689
|
+
values: Sequence[str]
|
98690
|
+
regex: NotRequired[bool]
|
98691
|
+
elif False:
|
98692
|
+
GetDomainsOciConsoleSignOnPolicyConsentsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
98693
|
+
|
98694
|
+
@pulumi.input_type
|
98695
|
+
class GetDomainsOciConsoleSignOnPolicyConsentsFilterArgs:
|
98696
|
+
def __init__(__self__, *,
|
98697
|
+
name: str,
|
98698
|
+
values: Sequence[str],
|
98699
|
+
regex: Optional[bool] = None):
|
98700
|
+
pulumi.set(__self__, "name", name)
|
98701
|
+
pulumi.set(__self__, "values", values)
|
98702
|
+
if regex is not None:
|
98703
|
+
pulumi.set(__self__, "regex", regex)
|
98704
|
+
|
98705
|
+
@property
|
98706
|
+
@pulumi.getter
|
98707
|
+
def name(self) -> str:
|
98708
|
+
return pulumi.get(self, "name")
|
98709
|
+
|
98710
|
+
@name.setter
|
98711
|
+
def name(self, value: str):
|
98712
|
+
pulumi.set(self, "name", value)
|
98713
|
+
|
98714
|
+
@property
|
98715
|
+
@pulumi.getter
|
98716
|
+
def values(self) -> Sequence[str]:
|
98717
|
+
return pulumi.get(self, "values")
|
98718
|
+
|
98719
|
+
@values.setter
|
98720
|
+
def values(self, value: Sequence[str]):
|
98721
|
+
pulumi.set(self, "values", value)
|
98722
|
+
|
98723
|
+
@property
|
98724
|
+
@pulumi.getter
|
98725
|
+
def regex(self) -> Optional[bool]:
|
98726
|
+
return pulumi.get(self, "regex")
|
98727
|
+
|
98728
|
+
@regex.setter
|
98729
|
+
def regex(self, value: Optional[bool]):
|
98730
|
+
pulumi.set(self, "regex", value)
|
98731
|
+
|
98732
|
+
|
98684
98733
|
if not MYPY:
|
98685
98734
|
class GetDynamicGroupsFilterArgsDict(TypedDict):
|
98686
98735
|
name: str
|
@@ -145,6 +145,7 @@ class DomainsConditionArgs:
|
|
145
145
|
|
146
146
|
**SCIM++ Properties:**
|
147
147
|
* idcsCompositeKey: [key, value]
|
148
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
148
149
|
* idcsSearchable: true
|
149
150
|
* multiValued: true
|
150
151
|
* mutability: readWrite
|
@@ -444,6 +445,7 @@ class DomainsConditionArgs:
|
|
444
445
|
|
445
446
|
**SCIM++ Properties:**
|
446
447
|
* idcsCompositeKey: [key, value]
|
448
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
447
449
|
* idcsSearchable: true
|
448
450
|
* multiValued: true
|
449
451
|
* mutability: readWrite
|
@@ -678,6 +680,7 @@ class _DomainsConditionState:
|
|
678
680
|
|
679
681
|
**SCIM++ Properties:**
|
680
682
|
* idcsCompositeKey: [key, value]
|
683
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
681
684
|
* idcsSearchable: true
|
682
685
|
* multiValued: true
|
683
686
|
* mutability: readWrite
|
@@ -1186,6 +1189,7 @@ class _DomainsConditionState:
|
|
1186
1189
|
|
1187
1190
|
**SCIM++ Properties:**
|
1188
1191
|
* idcsCompositeKey: [key, value]
|
1192
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
1189
1193
|
* idcsSearchable: true
|
1190
1194
|
* multiValued: true
|
1191
1195
|
* mutability: readWrite
|
@@ -1251,7 +1255,7 @@ class DomainsCondition(pulumi.CustomResource):
|
|
1251
1255
|
"""
|
1252
1256
|
This resource provides the Condition resource in Oracle Cloud Infrastructure Identity Domains service.
|
1253
1257
|
|
1254
|
-
Create a
|
1258
|
+
Create a condition
|
1255
1259
|
|
1256
1260
|
## Example Usage
|
1257
1261
|
|
@@ -1397,6 +1401,7 @@ class DomainsCondition(pulumi.CustomResource):
|
|
1397
1401
|
|
1398
1402
|
**SCIM++ Properties:**
|
1399
1403
|
* idcsCompositeKey: [key, value]
|
1404
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
1400
1405
|
* idcsSearchable: true
|
1401
1406
|
* multiValued: true
|
1402
1407
|
* mutability: readWrite
|
@@ -1414,7 +1419,7 @@ class DomainsCondition(pulumi.CustomResource):
|
|
1414
1419
|
"""
|
1415
1420
|
This resource provides the Condition resource in Oracle Cloud Infrastructure Identity Domains service.
|
1416
1421
|
|
1417
|
-
Create a
|
1422
|
+
Create a condition
|
1418
1423
|
|
1419
1424
|
## Example Usage
|
1420
1425
|
|
@@ -1755,6 +1760,7 @@ class DomainsCondition(pulumi.CustomResource):
|
|
1755
1760
|
|
1756
1761
|
**SCIM++ Properties:**
|
1757
1762
|
* idcsCompositeKey: [key, value]
|
1763
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
1758
1764
|
* idcsSearchable: true
|
1759
1765
|
* multiValued: true
|
1760
1766
|
* mutability: readWrite
|
@@ -2156,6 +2162,7 @@ class DomainsCondition(pulumi.CustomResource):
|
|
2156
2162
|
|
2157
2163
|
**SCIM++ Properties:**
|
2158
2164
|
* idcsCompositeKey: [key, value]
|
2165
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
2159
2166
|
* idcsSearchable: true
|
2160
2167
|
* multiValued: true
|
2161
2168
|
* mutability: readWrite
|
@@ -143,6 +143,7 @@ class DomainsPolicyArgs:
|
|
143
143
|
|
144
144
|
**SCIM++ Properties:**
|
145
145
|
* idcsCompositeKey: [key, value]
|
146
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
146
147
|
* idcsSearchable: true
|
147
148
|
* multiValued: true
|
148
149
|
* mutability: readWrite
|
@@ -442,6 +443,7 @@ class DomainsPolicyArgs:
|
|
442
443
|
|
443
444
|
**SCIM++ Properties:**
|
444
445
|
* idcsCompositeKey: [key, value]
|
446
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
445
447
|
* idcsSearchable: true
|
446
448
|
* multiValued: true
|
447
449
|
* mutability: readWrite
|
@@ -674,6 +676,7 @@ class _DomainsPolicyState:
|
|
674
676
|
|
675
677
|
**SCIM++ Properties:**
|
676
678
|
* idcsCompositeKey: [key, value]
|
679
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
677
680
|
* idcsSearchable: true
|
678
681
|
* multiValued: true
|
679
682
|
* mutability: readWrite
|
@@ -1180,6 +1183,7 @@ class _DomainsPolicyState:
|
|
1180
1183
|
|
1181
1184
|
**SCIM++ Properties:**
|
1182
1185
|
* idcsCompositeKey: [key, value]
|
1186
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
1183
1187
|
* idcsSearchable: true
|
1184
1188
|
* multiValued: true
|
1185
1189
|
* mutability: readWrite
|
@@ -1245,7 +1249,7 @@ class DomainsPolicy(pulumi.CustomResource):
|
|
1245
1249
|
"""
|
1246
1250
|
This resource provides the Policy resource in Oracle Cloud Infrastructure Identity Domains service.
|
1247
1251
|
|
1248
|
-
Create a Policy
|
1252
|
+
Create a Policy.
|
1249
1253
|
|
1250
1254
|
## Example Usage
|
1251
1255
|
|
@@ -1394,6 +1398,7 @@ class DomainsPolicy(pulumi.CustomResource):
|
|
1394
1398
|
|
1395
1399
|
**SCIM++ Properties:**
|
1396
1400
|
* idcsCompositeKey: [key, value]
|
1401
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
1397
1402
|
* idcsSearchable: true
|
1398
1403
|
* multiValued: true
|
1399
1404
|
* mutability: readWrite
|
@@ -1411,7 +1416,7 @@ class DomainsPolicy(pulumi.CustomResource):
|
|
1411
1416
|
"""
|
1412
1417
|
This resource provides the Policy resource in Oracle Cloud Infrastructure Identity Domains service.
|
1413
1418
|
|
1414
|
-
Create a Policy
|
1419
|
+
Create a Policy.
|
1415
1420
|
|
1416
1421
|
## Example Usage
|
1417
1422
|
|
@@ -1751,6 +1756,7 @@ class DomainsPolicy(pulumi.CustomResource):
|
|
1751
1756
|
|
1752
1757
|
**SCIM++ Properties:**
|
1753
1758
|
* idcsCompositeKey: [key, value]
|
1759
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
1754
1760
|
* idcsSearchable: true
|
1755
1761
|
* multiValued: true
|
1756
1762
|
* mutability: readWrite
|
@@ -2150,6 +2156,7 @@ class DomainsPolicy(pulumi.CustomResource):
|
|
2150
2156
|
|
2151
2157
|
**SCIM++ Properties:**
|
2152
2158
|
* idcsCompositeKey: [key, value]
|
2159
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
2153
2160
|
* idcsSearchable: true
|
2154
2161
|
* multiValued: true
|
2155
2162
|
* mutability: readWrite
|
@@ -179,6 +179,7 @@ class DomainsRuleArgs:
|
|
179
179
|
|
180
180
|
**SCIM++ Properties:**
|
181
181
|
* idcsCompositeKey: [key, value]
|
182
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
182
183
|
* idcsSearchable: true
|
183
184
|
* multiValued: true
|
184
185
|
* mutability: readWrite
|
@@ -548,6 +549,7 @@ class DomainsRuleArgs:
|
|
548
549
|
|
549
550
|
**SCIM++ Properties:**
|
550
551
|
* idcsCompositeKey: [key, value]
|
552
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
551
553
|
* idcsSearchable: true
|
552
554
|
* multiValued: true
|
553
555
|
* mutability: readWrite
|
@@ -816,6 +818,7 @@ class _DomainsRuleState:
|
|
816
818
|
|
817
819
|
**SCIM++ Properties:**
|
818
820
|
* idcsCompositeKey: [key, value]
|
821
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
819
822
|
* idcsSearchable: true
|
820
823
|
* multiValued: true
|
821
824
|
* mutability: readWrite
|
@@ -1394,6 +1397,7 @@ class _DomainsRuleState:
|
|
1394
1397
|
|
1395
1398
|
**SCIM++ Properties:**
|
1396
1399
|
* idcsCompositeKey: [key, value]
|
1400
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
1397
1401
|
* idcsSearchable: true
|
1398
1402
|
* multiValued: true
|
1399
1403
|
* mutability: readWrite
|
@@ -1462,7 +1466,7 @@ class DomainsRule(pulumi.CustomResource):
|
|
1462
1466
|
"""
|
1463
1467
|
This resource provides the Rule resource in Oracle Cloud Infrastructure Identity Domains service.
|
1464
1468
|
|
1465
|
-
Create a Rule
|
1469
|
+
Create a Rule.
|
1466
1470
|
|
1467
1471
|
## Example Usage
|
1468
1472
|
|
@@ -1651,6 +1655,7 @@ class DomainsRule(pulumi.CustomResource):
|
|
1651
1655
|
|
1652
1656
|
**SCIM++ Properties:**
|
1653
1657
|
* idcsCompositeKey: [key, value]
|
1658
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
1654
1659
|
* idcsSearchable: true
|
1655
1660
|
* multiValued: true
|
1656
1661
|
* mutability: readWrite
|
@@ -1668,7 +1673,7 @@ class DomainsRule(pulumi.CustomResource):
|
|
1668
1673
|
"""
|
1669
1674
|
This resource provides the Rule resource in Oracle Cloud Infrastructure Identity Domains service.
|
1670
1675
|
|
1671
|
-
Create a Rule
|
1676
|
+
Create a Rule.
|
1672
1677
|
|
1673
1678
|
## Example Usage
|
1674
1679
|
|
@@ -2061,6 +2066,7 @@ class DomainsRule(pulumi.CustomResource):
|
|
2061
2066
|
|
2062
2067
|
**SCIM++ Properties:**
|
2063
2068
|
* idcsCompositeKey: [key, value]
|
2069
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
2064
2070
|
* idcsSearchable: true
|
2065
2071
|
* multiValued: true
|
2066
2072
|
* mutability: readWrite
|
@@ -2517,6 +2523,7 @@ class DomainsRule(pulumi.CustomResource):
|
|
2517
2523
|
|
2518
2524
|
**SCIM++ Properties:**
|
2519
2525
|
* idcsCompositeKey: [key, value]
|
2526
|
+
* idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
|
2520
2527
|
* idcsSearchable: true
|
2521
2528
|
* multiValued: true
|
2522
2529
|
* mutability: readWrite
|
@@ -350,7 +350,7 @@ def get_domains_condition(attribute_sets: Optional[Sequence[str]] = None,
|
|
350
350
|
"""
|
351
351
|
This data source provides details about a specific Condition resource in Oracle Cloud Infrastructure Identity Domains service.
|
352
352
|
|
353
|
-
Get a
|
353
|
+
Get a condition.
|
354
354
|
|
355
355
|
## Example Usage
|
356
356
|
|
@@ -421,7 +421,7 @@ def get_domains_condition_output(attribute_sets: Optional[pulumi.Input[Optional[
|
|
421
421
|
"""
|
422
422
|
This data source provides details about a specific Condition resource in Oracle Cloud Infrastructure Identity Domains service.
|
423
423
|
|
424
|
-
Get a
|
424
|
+
Get a condition.
|
425
425
|
|
426
426
|
## Example Usage
|
427
427
|
|
@@ -206,7 +206,7 @@ def get_domains_conditions(attribute_sets: Optional[Sequence[str]] = None,
|
|
206
206
|
"""
|
207
207
|
This data source provides the list of Conditions in Oracle Cloud Infrastructure Identity Domains service.
|
208
208
|
|
209
|
-
Search
|
209
|
+
Search conditions.
|
210
210
|
|
211
211
|
## Example Usage
|
212
212
|
|
@@ -281,7 +281,7 @@ def get_domains_conditions_output(attribute_sets: Optional[pulumi.Input[Optional
|
|
281
281
|
"""
|
282
282
|
This data source provides the list of Conditions in Oracle Cloud Infrastructure Identity Domains service.
|
283
283
|
|
284
|
-
Search
|
284
|
+
Search conditions.
|
285
285
|
|
286
286
|
## Example Usage
|
287
287
|
|