oci.Identity.DomainsSocialIdentityProvider
Explore with Pulumi AI
This resource provides the Social Identity Provider resource in Oracle Cloud Infrastructure Identity Domains service.
Create a Social Identity Provider
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testSocialIdentityProvider = new oci.identity.DomainsSocialIdentityProvider("test_social_identity_provider", {
accountLinkingEnabled: socialIdentityProviderAccountLinkingEnabled,
consumerKey: socialIdentityProviderConsumerKey,
consumerSecret: socialIdentityProviderConsumerSecret,
enabled: socialIdentityProviderEnabled,
idcsEndpoint: testDomain.url,
name: socialIdentityProviderName,
registrationEnabled: socialIdentityProviderRegistrationEnabled,
schemas: ["urn:ietf:params:scim:schemas:oracle:idcs:SocialIdentityProvider"],
serviceProviderName: socialIdentityProviderServiceProviderName,
showOnLogin: socialIdentityProviderShowOnLogin,
accessTokenUrl: socialIdentityProviderAccessTokenUrl,
adminScopes: socialIdentityProviderAdminScope,
authorization: socialIdentityProviderAuthorization,
authzUrl: socialIdentityProviderAuthzUrl,
autoRedirectEnabled: socialIdentityProviderAutoRedirectEnabled,
clientCredentialInPayload: socialIdentityProviderClientCredentialInPayload,
clockSkewInSeconds: socialIdentityProviderClockSkewInSeconds,
description: socialIdentityProviderDescription,
discoveryUrl: socialIdentityProviderDiscoveryUrl,
iconUrl: socialIdentityProviderIconUrl,
idAttribute: socialIdentityProviderIdAttribute,
jitProvAssignedGroups: [{
value: socialIdentityProviderJitProvAssignedGroupsValue,
}],
jitProvGroupStaticListEnabled: socialIdentityProviderJitProvGroupStaticListEnabled,
ocid: socialIdentityProviderOcid,
profileUrl: socialIdentityProviderProfileUrl,
redirectUrl: socialIdentityProviderRedirectUrl,
refreshTokenUrl: socialIdentityProviderRefreshTokenUrl,
relayIdpParamMappings: [{
relayParamKey: socialIdentityProviderRelayIdpParamMappingsRelayParamKey,
relayParamValue: socialIdentityProviderRelayIdpParamMappingsRelayParamValue,
}],
resourceTypeSchemaVersion: socialIdentityProviderResourceTypeSchemaVersion,
scopes: socialIdentityProviderScope,
socialJitProvisioningEnabled: socialIdentityProviderSocialJitProvisioningEnabled,
status: socialIdentityProviderStatus,
tags: [{
key: socialIdentityProviderTagsKey,
value: socialIdentityProviderTagsValue,
}],
});
import pulumi
import pulumi_oci as oci
test_social_identity_provider = oci.identity.DomainsSocialIdentityProvider("test_social_identity_provider",
account_linking_enabled=social_identity_provider_account_linking_enabled,
consumer_key=social_identity_provider_consumer_key,
consumer_secret=social_identity_provider_consumer_secret,
enabled=social_identity_provider_enabled,
idcs_endpoint=test_domain["url"],
name=social_identity_provider_name,
registration_enabled=social_identity_provider_registration_enabled,
schemas=["urn:ietf:params:scim:schemas:oracle:idcs:SocialIdentityProvider"],
service_provider_name=social_identity_provider_service_provider_name,
show_on_login=social_identity_provider_show_on_login,
access_token_url=social_identity_provider_access_token_url,
admin_scopes=social_identity_provider_admin_scope,
authorization=social_identity_provider_authorization,
authz_url=social_identity_provider_authz_url,
auto_redirect_enabled=social_identity_provider_auto_redirect_enabled,
client_credential_in_payload=social_identity_provider_client_credential_in_payload,
clock_skew_in_seconds=social_identity_provider_clock_skew_in_seconds,
description=social_identity_provider_description,
discovery_url=social_identity_provider_discovery_url,
icon_url=social_identity_provider_icon_url,
id_attribute=social_identity_provider_id_attribute,
jit_prov_assigned_groups=[{
"value": social_identity_provider_jit_prov_assigned_groups_value,
}],
jit_prov_group_static_list_enabled=social_identity_provider_jit_prov_group_static_list_enabled,
ocid=social_identity_provider_ocid,
profile_url=social_identity_provider_profile_url,
redirect_url=social_identity_provider_redirect_url,
refresh_token_url=social_identity_provider_refresh_token_url,
relay_idp_param_mappings=[{
"relay_param_key": social_identity_provider_relay_idp_param_mappings_relay_param_key,
"relay_param_value": social_identity_provider_relay_idp_param_mappings_relay_param_value,
}],
resource_type_schema_version=social_identity_provider_resource_type_schema_version,
scopes=social_identity_provider_scope,
social_jit_provisioning_enabled=social_identity_provider_social_jit_provisioning_enabled,
status=social_identity_provider_status,
tags=[{
"key": social_identity_provider_tags_key,
"value": social_identity_provider_tags_value,
}])
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/Identity"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Identity.NewDomainsSocialIdentityProvider(ctx, "test_social_identity_provider", &Identity.DomainsSocialIdentityProviderArgs{
AccountLinkingEnabled: pulumi.Any(socialIdentityProviderAccountLinkingEnabled),
ConsumerKey: pulumi.Any(socialIdentityProviderConsumerKey),
ConsumerSecret: pulumi.Any(socialIdentityProviderConsumerSecret),
Enabled: pulumi.Any(socialIdentityProviderEnabled),
IdcsEndpoint: pulumi.Any(testDomain.Url),
Name: pulumi.Any(socialIdentityProviderName),
RegistrationEnabled: pulumi.Any(socialIdentityProviderRegistrationEnabled),
Schemas: pulumi.StringArray{
pulumi.String("urn:ietf:params:scim:schemas:oracle:idcs:SocialIdentityProvider"),
},
ServiceProviderName: pulumi.Any(socialIdentityProviderServiceProviderName),
ShowOnLogin: pulumi.Any(socialIdentityProviderShowOnLogin),
AccessTokenUrl: pulumi.Any(socialIdentityProviderAccessTokenUrl),
AdminScopes: pulumi.Any(socialIdentityProviderAdminScope),
Authorization: pulumi.Any(socialIdentityProviderAuthorization),
AuthzUrl: pulumi.Any(socialIdentityProviderAuthzUrl),
AutoRedirectEnabled: pulumi.Any(socialIdentityProviderAutoRedirectEnabled),
ClientCredentialInPayload: pulumi.Any(socialIdentityProviderClientCredentialInPayload),
ClockSkewInSeconds: pulumi.Any(socialIdentityProviderClockSkewInSeconds),
Description: pulumi.Any(socialIdentityProviderDescription),
DiscoveryUrl: pulumi.Any(socialIdentityProviderDiscoveryUrl),
IconUrl: pulumi.Any(socialIdentityProviderIconUrl),
IdAttribute: pulumi.Any(socialIdentityProviderIdAttribute),
JitProvAssignedGroups: identity.DomainsSocialIdentityProviderJitProvAssignedGroupArray{
&identity.DomainsSocialIdentityProviderJitProvAssignedGroupArgs{
Value: pulumi.Any(socialIdentityProviderJitProvAssignedGroupsValue),
},
},
JitProvGroupStaticListEnabled: pulumi.Any(socialIdentityProviderJitProvGroupStaticListEnabled),
Ocid: pulumi.Any(socialIdentityProviderOcid),
ProfileUrl: pulumi.Any(socialIdentityProviderProfileUrl),
RedirectUrl: pulumi.Any(socialIdentityProviderRedirectUrl),
RefreshTokenUrl: pulumi.Any(socialIdentityProviderRefreshTokenUrl),
RelayIdpParamMappings: identity.DomainsSocialIdentityProviderRelayIdpParamMappingArray{
&identity.DomainsSocialIdentityProviderRelayIdpParamMappingArgs{
RelayParamKey: pulumi.Any(socialIdentityProviderRelayIdpParamMappingsRelayParamKey),
RelayParamValue: pulumi.Any(socialIdentityProviderRelayIdpParamMappingsRelayParamValue),
},
},
ResourceTypeSchemaVersion: pulumi.Any(socialIdentityProviderResourceTypeSchemaVersion),
Scopes: pulumi.Any(socialIdentityProviderScope),
SocialJitProvisioningEnabled: pulumi.Any(socialIdentityProviderSocialJitProvisioningEnabled),
Status: pulumi.Any(socialIdentityProviderStatus),
Tags: identity.DomainsSocialIdentityProviderTagArray{
&identity.DomainsSocialIdentityProviderTagArgs{
Key: pulumi.Any(socialIdentityProviderTagsKey),
Value: pulumi.Any(socialIdentityProviderTagsValue),
},
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testSocialIdentityProvider = new Oci.Identity.DomainsSocialIdentityProvider("test_social_identity_provider", new()
{
AccountLinkingEnabled = socialIdentityProviderAccountLinkingEnabled,
ConsumerKey = socialIdentityProviderConsumerKey,
ConsumerSecret = socialIdentityProviderConsumerSecret,
Enabled = socialIdentityProviderEnabled,
IdcsEndpoint = testDomain.Url,
Name = socialIdentityProviderName,
RegistrationEnabled = socialIdentityProviderRegistrationEnabled,
Schemas = new[]
{
"urn:ietf:params:scim:schemas:oracle:idcs:SocialIdentityProvider",
},
ServiceProviderName = socialIdentityProviderServiceProviderName,
ShowOnLogin = socialIdentityProviderShowOnLogin,
AccessTokenUrl = socialIdentityProviderAccessTokenUrl,
AdminScopes = socialIdentityProviderAdminScope,
Authorization = socialIdentityProviderAuthorization,
AuthzUrl = socialIdentityProviderAuthzUrl,
AutoRedirectEnabled = socialIdentityProviderAutoRedirectEnabled,
ClientCredentialInPayload = socialIdentityProviderClientCredentialInPayload,
ClockSkewInSeconds = socialIdentityProviderClockSkewInSeconds,
Description = socialIdentityProviderDescription,
DiscoveryUrl = socialIdentityProviderDiscoveryUrl,
IconUrl = socialIdentityProviderIconUrl,
IdAttribute = socialIdentityProviderIdAttribute,
JitProvAssignedGroups = new[]
{
new Oci.Identity.Inputs.DomainsSocialIdentityProviderJitProvAssignedGroupArgs
{
Value = socialIdentityProviderJitProvAssignedGroupsValue,
},
},
JitProvGroupStaticListEnabled = socialIdentityProviderJitProvGroupStaticListEnabled,
Ocid = socialIdentityProviderOcid,
ProfileUrl = socialIdentityProviderProfileUrl,
RedirectUrl = socialIdentityProviderRedirectUrl,
RefreshTokenUrl = socialIdentityProviderRefreshTokenUrl,
RelayIdpParamMappings = new[]
{
new Oci.Identity.Inputs.DomainsSocialIdentityProviderRelayIdpParamMappingArgs
{
RelayParamKey = socialIdentityProviderRelayIdpParamMappingsRelayParamKey,
RelayParamValue = socialIdentityProviderRelayIdpParamMappingsRelayParamValue,
},
},
ResourceTypeSchemaVersion = socialIdentityProviderResourceTypeSchemaVersion,
Scopes = socialIdentityProviderScope,
SocialJitProvisioningEnabled = socialIdentityProviderSocialJitProvisioningEnabled,
Status = socialIdentityProviderStatus,
Tags = new[]
{
new Oci.Identity.Inputs.DomainsSocialIdentityProviderTagArgs
{
Key = socialIdentityProviderTagsKey,
Value = socialIdentityProviderTagsValue,
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Identity.DomainsSocialIdentityProvider;
import com.pulumi.oci.Identity.DomainsSocialIdentityProviderArgs;
import com.pulumi.oci.Identity.inputs.DomainsSocialIdentityProviderJitProvAssignedGroupArgs;
import com.pulumi.oci.Identity.inputs.DomainsSocialIdentityProviderRelayIdpParamMappingArgs;
import com.pulumi.oci.Identity.inputs.DomainsSocialIdentityProviderTagArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var testSocialIdentityProvider = new DomainsSocialIdentityProvider("testSocialIdentityProvider", DomainsSocialIdentityProviderArgs.builder()
.accountLinkingEnabled(socialIdentityProviderAccountLinkingEnabled)
.consumerKey(socialIdentityProviderConsumerKey)
.consumerSecret(socialIdentityProviderConsumerSecret)
.enabled(socialIdentityProviderEnabled)
.idcsEndpoint(testDomain.url())
.name(socialIdentityProviderName)
.registrationEnabled(socialIdentityProviderRegistrationEnabled)
.schemas("urn:ietf:params:scim:schemas:oracle:idcs:SocialIdentityProvider")
.serviceProviderName(socialIdentityProviderServiceProviderName)
.showOnLogin(socialIdentityProviderShowOnLogin)
.accessTokenUrl(socialIdentityProviderAccessTokenUrl)
.adminScopes(socialIdentityProviderAdminScope)
.authorization(socialIdentityProviderAuthorization)
.authzUrl(socialIdentityProviderAuthzUrl)
.autoRedirectEnabled(socialIdentityProviderAutoRedirectEnabled)
.clientCredentialInPayload(socialIdentityProviderClientCredentialInPayload)
.clockSkewInSeconds(socialIdentityProviderClockSkewInSeconds)
.description(socialIdentityProviderDescription)
.discoveryUrl(socialIdentityProviderDiscoveryUrl)
.iconUrl(socialIdentityProviderIconUrl)
.idAttribute(socialIdentityProviderIdAttribute)
.jitProvAssignedGroups(DomainsSocialIdentityProviderJitProvAssignedGroupArgs.builder()
.value(socialIdentityProviderJitProvAssignedGroupsValue)
.build())
.jitProvGroupStaticListEnabled(socialIdentityProviderJitProvGroupStaticListEnabled)
.ocid(socialIdentityProviderOcid)
.profileUrl(socialIdentityProviderProfileUrl)
.redirectUrl(socialIdentityProviderRedirectUrl)
.refreshTokenUrl(socialIdentityProviderRefreshTokenUrl)
.relayIdpParamMappings(DomainsSocialIdentityProviderRelayIdpParamMappingArgs.builder()
.relayParamKey(socialIdentityProviderRelayIdpParamMappingsRelayParamKey)
.relayParamValue(socialIdentityProviderRelayIdpParamMappingsRelayParamValue)
.build())
.resourceTypeSchemaVersion(socialIdentityProviderResourceTypeSchemaVersion)
.scopes(socialIdentityProviderScope)
.socialJitProvisioningEnabled(socialIdentityProviderSocialJitProvisioningEnabled)
.status(socialIdentityProviderStatus)
.tags(DomainsSocialIdentityProviderTagArgs.builder()
.key(socialIdentityProviderTagsKey)
.value(socialIdentityProviderTagsValue)
.build())
.build());
}
}
resources:
testSocialIdentityProvider:
type: oci:Identity:DomainsSocialIdentityProvider
name: test_social_identity_provider
properties:
accountLinkingEnabled: ${socialIdentityProviderAccountLinkingEnabled}
consumerKey: ${socialIdentityProviderConsumerKey}
consumerSecret: ${socialIdentityProviderConsumerSecret}
enabled: ${socialIdentityProviderEnabled}
idcsEndpoint: ${testDomain.url}
name: ${socialIdentityProviderName}
registrationEnabled: ${socialIdentityProviderRegistrationEnabled}
schemas:
- urn:ietf:params:scim:schemas:oracle:idcs:SocialIdentityProvider
serviceProviderName: ${socialIdentityProviderServiceProviderName}
showOnLogin: ${socialIdentityProviderShowOnLogin}
accessTokenUrl: ${socialIdentityProviderAccessTokenUrl}
adminScopes: ${socialIdentityProviderAdminScope}
authorization: ${socialIdentityProviderAuthorization}
authzUrl: ${socialIdentityProviderAuthzUrl}
autoRedirectEnabled: ${socialIdentityProviderAutoRedirectEnabled}
clientCredentialInPayload: ${socialIdentityProviderClientCredentialInPayload}
clockSkewInSeconds: ${socialIdentityProviderClockSkewInSeconds}
description: ${socialIdentityProviderDescription}
discoveryUrl: ${socialIdentityProviderDiscoveryUrl}
iconUrl: ${socialIdentityProviderIconUrl}
idAttribute: ${socialIdentityProviderIdAttribute}
jitProvAssignedGroups:
- value: ${socialIdentityProviderJitProvAssignedGroupsValue}
jitProvGroupStaticListEnabled: ${socialIdentityProviderJitProvGroupStaticListEnabled}
ocid: ${socialIdentityProviderOcid}
profileUrl: ${socialIdentityProviderProfileUrl}
redirectUrl: ${socialIdentityProviderRedirectUrl}
refreshTokenUrl: ${socialIdentityProviderRefreshTokenUrl}
relayIdpParamMappings:
- relayParamKey: ${socialIdentityProviderRelayIdpParamMappingsRelayParamKey}
relayParamValue: ${socialIdentityProviderRelayIdpParamMappingsRelayParamValue}
resourceTypeSchemaVersion: ${socialIdentityProviderResourceTypeSchemaVersion}
scopes: ${socialIdentityProviderScope}
socialJitProvisioningEnabled: ${socialIdentityProviderSocialJitProvisioningEnabled}
status: ${socialIdentityProviderStatus}
tags:
- key: ${socialIdentityProviderTagsKey}
value: ${socialIdentityProviderTagsValue}
Create DomainsSocialIdentityProvider Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DomainsSocialIdentityProvider(name: string, args: DomainsSocialIdentityProviderArgs, opts?: CustomResourceOptions);
@overload
def DomainsSocialIdentityProvider(resource_name: str,
args: DomainsSocialIdentityProviderArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DomainsSocialIdentityProvider(resource_name: str,
opts: Optional[ResourceOptions] = None,
consumer_secret: Optional[str] = None,
account_linking_enabled: Optional[bool] = None,
show_on_login: Optional[bool] = None,
service_provider_name: Optional[str] = None,
schemas: Optional[Sequence[str]] = None,
registration_enabled: Optional[bool] = None,
idcs_endpoint: Optional[str] = None,
enabled: Optional[bool] = None,
consumer_key: Optional[str] = None,
jit_prov_assigned_groups: Optional[Sequence[_identity.DomainsSocialIdentityProviderJitProvAssignedGroupArgs]] = None,
profile_url: Optional[str] = None,
discovery_url: Optional[str] = None,
clock_skew_in_seconds: Optional[int] = None,
icon_url: Optional[str] = None,
id_attribute: Optional[str] = None,
client_credential_in_payload: Optional[bool] = None,
access_token_url: Optional[str] = None,
jit_prov_group_static_list_enabled: Optional[bool] = None,
name: Optional[str] = None,
ocid: Optional[str] = None,
description: Optional[str] = None,
redirect_url: Optional[str] = None,
refresh_token_url: Optional[str] = None,
auto_redirect_enabled: Optional[bool] = None,
relay_idp_param_mappings: Optional[Sequence[_identity.DomainsSocialIdentityProviderRelayIdpParamMappingArgs]] = None,
resource_type_schema_version: Optional[str] = None,
authz_url: Optional[str] = None,
scopes: Optional[Sequence[str]] = None,
authorization: Optional[str] = None,
admin_scopes: Optional[Sequence[str]] = None,
social_jit_provisioning_enabled: Optional[bool] = None,
status: Optional[str] = None,
tags: Optional[Sequence[_identity.DomainsSocialIdentityProviderTagArgs]] = None)
func NewDomainsSocialIdentityProvider(ctx *Context, name string, args DomainsSocialIdentityProviderArgs, opts ...ResourceOption) (*DomainsSocialIdentityProvider, error)
public DomainsSocialIdentityProvider(string name, DomainsSocialIdentityProviderArgs args, CustomResourceOptions? opts = null)
public DomainsSocialIdentityProvider(String name, DomainsSocialIdentityProviderArgs args)
public DomainsSocialIdentityProvider(String name, DomainsSocialIdentityProviderArgs args, CustomResourceOptions options)
type: oci:Identity:DomainsSocialIdentityProvider
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DomainsSocialIdentityProviderArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args DomainsSocialIdentityProviderArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args DomainsSocialIdentityProviderArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DomainsSocialIdentityProviderArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DomainsSocialIdentityProviderArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var domainsSocialIdentityProviderResource = new Oci.Identity.DomainsSocialIdentityProvider("domainsSocialIdentityProviderResource", new()
{
ConsumerSecret = "string",
AccountLinkingEnabled = false,
ShowOnLogin = false,
ServiceProviderName = "string",
Schemas = new[]
{
"string",
},
RegistrationEnabled = false,
IdcsEndpoint = "string",
Enabled = false,
ConsumerKey = "string",
JitProvAssignedGroups = new[]
{
new Oci.Identity.Inputs.DomainsSocialIdentityProviderJitProvAssignedGroupArgs
{
Value = "string",
Display = "string",
Ref = "string",
},
},
ProfileUrl = "string",
DiscoveryUrl = "string",
ClockSkewInSeconds = 0,
IconUrl = "string",
IdAttribute = "string",
ClientCredentialInPayload = false,
AccessTokenUrl = "string",
JitProvGroupStaticListEnabled = false,
Name = "string",
Ocid = "string",
Description = "string",
RedirectUrl = "string",
RefreshTokenUrl = "string",
AutoRedirectEnabled = false,
RelayIdpParamMappings = new[]
{
new Oci.Identity.Inputs.DomainsSocialIdentityProviderRelayIdpParamMappingArgs
{
RelayParamKey = "string",
RelayParamValue = "string",
},
},
ResourceTypeSchemaVersion = "string",
AuthzUrl = "string",
Scopes = new[]
{
"string",
},
Authorization = "string",
AdminScopes = new[]
{
"string",
},
SocialJitProvisioningEnabled = false,
Status = "string",
Tags = new[]
{
new Oci.Identity.Inputs.DomainsSocialIdentityProviderTagArgs
{
Key = "string",
Value = "string",
},
},
});
example, err := Identity.NewDomainsSocialIdentityProvider(ctx, "domainsSocialIdentityProviderResource", &Identity.DomainsSocialIdentityProviderArgs{
ConsumerSecret: pulumi.String("string"),
AccountLinkingEnabled: pulumi.Bool(false),
ShowOnLogin: pulumi.Bool(false),
ServiceProviderName: pulumi.String("string"),
Schemas: pulumi.StringArray{
pulumi.String("string"),
},
RegistrationEnabled: pulumi.Bool(false),
IdcsEndpoint: pulumi.String("string"),
Enabled: pulumi.Bool(false),
ConsumerKey: pulumi.String("string"),
JitProvAssignedGroups: identity.DomainsSocialIdentityProviderJitProvAssignedGroupArray{
&identity.DomainsSocialIdentityProviderJitProvAssignedGroupArgs{
Value: pulumi.String("string"),
Display: pulumi.String("string"),
Ref: pulumi.String("string"),
},
},
ProfileUrl: pulumi.String("string"),
DiscoveryUrl: pulumi.String("string"),
ClockSkewInSeconds: pulumi.Int(0),
IconUrl: pulumi.String("string"),
IdAttribute: pulumi.String("string"),
ClientCredentialInPayload: pulumi.Bool(false),
AccessTokenUrl: pulumi.String("string"),
JitProvGroupStaticListEnabled: pulumi.Bool(false),
Name: pulumi.String("string"),
Ocid: pulumi.String("string"),
Description: pulumi.String("string"),
RedirectUrl: pulumi.String("string"),
RefreshTokenUrl: pulumi.String("string"),
AutoRedirectEnabled: pulumi.Bool(false),
RelayIdpParamMappings: identity.DomainsSocialIdentityProviderRelayIdpParamMappingArray{
&identity.DomainsSocialIdentityProviderRelayIdpParamMappingArgs{
RelayParamKey: pulumi.String("string"),
RelayParamValue: pulumi.String("string"),
},
},
ResourceTypeSchemaVersion: pulumi.String("string"),
AuthzUrl: pulumi.String("string"),
Scopes: pulumi.StringArray{
pulumi.String("string"),
},
Authorization: pulumi.String("string"),
AdminScopes: pulumi.StringArray{
pulumi.String("string"),
},
SocialJitProvisioningEnabled: pulumi.Bool(false),
Status: pulumi.String("string"),
Tags: identity.DomainsSocialIdentityProviderTagArray{
&identity.DomainsSocialIdentityProviderTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
})
var domainsSocialIdentityProviderResource = new DomainsSocialIdentityProvider("domainsSocialIdentityProviderResource", DomainsSocialIdentityProviderArgs.builder()
.consumerSecret("string")
.accountLinkingEnabled(false)
.showOnLogin(false)
.serviceProviderName("string")
.schemas("string")
.registrationEnabled(false)
.idcsEndpoint("string")
.enabled(false)
.consumerKey("string")
.jitProvAssignedGroups(DomainsSocialIdentityProviderJitProvAssignedGroupArgs.builder()
.value("string")
.display("string")
.ref("string")
.build())
.profileUrl("string")
.discoveryUrl("string")
.clockSkewInSeconds(0)
.iconUrl("string")
.idAttribute("string")
.clientCredentialInPayload(false)
.accessTokenUrl("string")
.jitProvGroupStaticListEnabled(false)
.name("string")
.ocid("string")
.description("string")
.redirectUrl("string")
.refreshTokenUrl("string")
.autoRedirectEnabled(false)
.relayIdpParamMappings(DomainsSocialIdentityProviderRelayIdpParamMappingArgs.builder()
.relayParamKey("string")
.relayParamValue("string")
.build())
.resourceTypeSchemaVersion("string")
.authzUrl("string")
.scopes("string")
.authorization("string")
.adminScopes("string")
.socialJitProvisioningEnabled(false)
.status("string")
.tags(DomainsSocialIdentityProviderTagArgs.builder()
.key("string")
.value("string")
.build())
.build());
domains_social_identity_provider_resource = oci.identity.DomainsSocialIdentityProvider("domainsSocialIdentityProviderResource",
consumer_secret="string",
account_linking_enabled=False,
show_on_login=False,
service_provider_name="string",
schemas=["string"],
registration_enabled=False,
idcs_endpoint="string",
enabled=False,
consumer_key="string",
jit_prov_assigned_groups=[oci.identity.DomainsSocialIdentityProviderJitProvAssignedGroupArgs(
value="string",
display="string",
ref="string",
)],
profile_url="string",
discovery_url="string",
clock_skew_in_seconds=0,
icon_url="string",
id_attribute="string",
client_credential_in_payload=False,
access_token_url="string",
jit_prov_group_static_list_enabled=False,
name="string",
ocid="string",
description="string",
redirect_url="string",
refresh_token_url="string",
auto_redirect_enabled=False,
relay_idp_param_mappings=[oci.identity.DomainsSocialIdentityProviderRelayIdpParamMappingArgs(
relay_param_key="string",
relay_param_value="string",
)],
resource_type_schema_version="string",
authz_url="string",
scopes=["string"],
authorization="string",
admin_scopes=["string"],
social_jit_provisioning_enabled=False,
status="string",
tags=[oci.identity.DomainsSocialIdentityProviderTagArgs(
key="string",
value="string",
)])
const domainsSocialIdentityProviderResource = new oci.identity.DomainsSocialIdentityProvider("domainsSocialIdentityProviderResource", {
consumerSecret: "string",
accountLinkingEnabled: false,
showOnLogin: false,
serviceProviderName: "string",
schemas: ["string"],
registrationEnabled: false,
idcsEndpoint: "string",
enabled: false,
consumerKey: "string",
jitProvAssignedGroups: [{
value: "string",
display: "string",
ref: "string",
}],
profileUrl: "string",
discoveryUrl: "string",
clockSkewInSeconds: 0,
iconUrl: "string",
idAttribute: "string",
clientCredentialInPayload: false,
accessTokenUrl: "string",
jitProvGroupStaticListEnabled: false,
name: "string",
ocid: "string",
description: "string",
redirectUrl: "string",
refreshTokenUrl: "string",
autoRedirectEnabled: false,
relayIdpParamMappings: [{
relayParamKey: "string",
relayParamValue: "string",
}],
resourceTypeSchemaVersion: "string",
authzUrl: "string",
scopes: ["string"],
authorization: "string",
adminScopes: ["string"],
socialJitProvisioningEnabled: false,
status: "string",
tags: [{
key: "string",
value: "string",
}],
});
type: oci:Identity:DomainsSocialIdentityProvider
properties:
accessTokenUrl: string
accountLinkingEnabled: false
adminScopes:
- string
authorization: string
authzUrl: string
autoRedirectEnabled: false
clientCredentialInPayload: false
clockSkewInSeconds: 0
consumerKey: string
consumerSecret: string
description: string
discoveryUrl: string
enabled: false
iconUrl: string
idAttribute: string
idcsEndpoint: string
jitProvAssignedGroups:
- display: string
ref: string
value: string
jitProvGroupStaticListEnabled: false
name: string
ocid: string
profileUrl: string
redirectUrl: string
refreshTokenUrl: string
registrationEnabled: false
relayIdpParamMappings:
- relayParamKey: string
relayParamValue: string
resourceTypeSchemaVersion: string
schemas:
- string
scopes:
- string
serviceProviderName: string
showOnLogin: false
socialJitProvisioningEnabled: false
status: string
tags:
- key: string
value: string
DomainsSocialIdentityProvider Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The DomainsSocialIdentityProvider resource accepts the following input properties:
- Account
Linking boolEnabled (Updatable) Whether account linking is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- Consumer
Key string (Updatable) Social IDP Client Application Client ID
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Consumer
Secret string (Updatable) Social IDP Client Application Client Secret
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- idcsSensitive: encrypt
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Enabled bool
(Updatable) Whether the IDP is enabled or not
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- Idcs
Endpoint string - The basic endpoint for the identity domain
- Registration
Enabled bool (Updatable) Whether registration is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- Schemas List<string>
(Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Service
Provider stringName Service Provider Name
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
- Show
On boolLogin (Updatable) Whether show on login
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- Access
Token stringUrl (Updatable) Social IDP Access token URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Admin
Scopes List<string> (Updatable) Admin scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- string
- (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Authz
Url string (Updatable) Social IDP Authorization URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Auto
Redirect boolEnabled (Updatable) Whether social auto redirect is enabled. The IDP policy should be configured with only one Social IDP, and without username/password selected.
Added In: 2310202314
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Client
Credential boolIn Payload (Updatable) Whether the client credential is contained in payload
Added In: 18.4.2
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Clock
Skew intIn Seconds (Updatable) Social IDP allowed clock skew time
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: integer
- uniqueness: none
- Description string
(Updatable) Social IDP description
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Discovery
Url string (Updatable) Discovery URL
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Icon
Url string (Updatable) ICON URL for social idp
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Id
Attribute string Id attribute used for account linking
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: none
- Jit
Prov List<DomainsAssigned Groups Social Identity Provider Jit Prov Assigned Group> (Updatable) Lists the groups each social JIT-provisioned user is a member. Just-in-Time user-provisioning applies this static list when jitProvGroupStaticListEnabled:true.
Added In: 2309290043
SCIM++ Properties:
- idcsCompositeKey: [value]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- Jit
Prov boolGroup Static List Enabled (Updatable) Set to true to indicate Social JIT User Provisioning Groups should be assigned from a static list
Added In: 2309290043
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Name string
(Updatable) Social provider name
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: global
- Ocid string
(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- Profile
Url string (Updatable) Social IDP User profile URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Redirect
Url string (Updatable) redirect URL for social idp
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Refresh
Token stringUrl (Updatable) Social IDP Refresh token URL
Added In: 19.1.4
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Relay
Idp List<DomainsParam Mappings Social Identity Provider Relay Idp Param Mapping> (Updatable) Relay Param variable for Social IDP
Added In: 2305190132
SCIM++ Properties:
- idcsCompositeKey: [relayParamKey]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- Resource
Type stringSchema Version - (Updatable) 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.
- Scopes List<string>
(Updatable) Scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- bool
(Updatable) Whether Social JIT Provisioning is enabled
Added In: 2307282043
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Status string
(Updatable) Status
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- List<Domains
Social Identity Provider Tag> (Updatable) A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- Account
Linking boolEnabled (Updatable) Whether account linking is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- Consumer
Key string (Updatable) Social IDP Client Application Client ID
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Consumer
Secret string (Updatable) Social IDP Client Application Client Secret
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- idcsSensitive: encrypt
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Enabled bool
(Updatable) Whether the IDP is enabled or not
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- Idcs
Endpoint string - The basic endpoint for the identity domain
- Registration
Enabled bool (Updatable) Whether registration is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- Schemas []string
(Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Service
Provider stringName Service Provider Name
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
- Show
On boolLogin (Updatable) Whether show on login
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- Access
Token stringUrl (Updatable) Social IDP Access token URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Admin
Scopes []string (Updatable) Admin scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- string
- (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Authz
Url string (Updatable) Social IDP Authorization URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Auto
Redirect boolEnabled (Updatable) Whether social auto redirect is enabled. The IDP policy should be configured with only one Social IDP, and without username/password selected.
Added In: 2310202314
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Client
Credential boolIn Payload (Updatable) Whether the client credential is contained in payload
Added In: 18.4.2
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Clock
Skew intIn Seconds (Updatable) Social IDP allowed clock skew time
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: integer
- uniqueness: none
- Description string
(Updatable) Social IDP description
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Discovery
Url string (Updatable) Discovery URL
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Icon
Url string (Updatable) ICON URL for social idp
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Id
Attribute string Id attribute used for account linking
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: none
- Jit
Prov []DomainsAssigned Groups Social Identity Provider Jit Prov Assigned Group Args (Updatable) Lists the groups each social JIT-provisioned user is a member. Just-in-Time user-provisioning applies this static list when jitProvGroupStaticListEnabled:true.
Added In: 2309290043
SCIM++ Properties:
- idcsCompositeKey: [value]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- Jit
Prov boolGroup Static List Enabled (Updatable) Set to true to indicate Social JIT User Provisioning Groups should be assigned from a static list
Added In: 2309290043
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Name string
(Updatable) Social provider name
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: global
- Ocid string
(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- Profile
Url string (Updatable) Social IDP User profile URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Redirect
Url string (Updatable) redirect URL for social idp
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Refresh
Token stringUrl (Updatable) Social IDP Refresh token URL
Added In: 19.1.4
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Relay
Idp []DomainsParam Mappings Social Identity Provider Relay Idp Param Mapping Args (Updatable) Relay Param variable for Social IDP
Added In: 2305190132
SCIM++ Properties:
- idcsCompositeKey: [relayParamKey]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- Resource
Type stringSchema Version - (Updatable) 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.
- Scopes []string
(Updatable) Scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- bool
(Updatable) Whether Social JIT Provisioning is enabled
Added In: 2307282043
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Status string
(Updatable) Status
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- []Domains
Social Identity Provider Tag Args (Updatable) A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- account
Linking BooleanEnabled (Updatable) Whether account linking is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- consumer
Key String (Updatable) Social IDP Client Application Client ID
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- consumer
Secret String (Updatable) Social IDP Client Application Client Secret
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- idcsSensitive: encrypt
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- enabled Boolean
(Updatable) Whether the IDP is enabled or not
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- idcs
Endpoint String - The basic endpoint for the identity domain
- registration
Enabled Boolean (Updatable) Whether registration is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- schemas List<String>
(Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- service
Provider StringName Service Provider Name
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
- show
On BooleanLogin (Updatable) Whether show on login
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- access
Token StringUrl (Updatable) Social IDP Access token URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- admin
Scopes List<String> (Updatable) Admin scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- String
- (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- authz
Url String (Updatable) Social IDP Authorization URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- auto
Redirect BooleanEnabled (Updatable) Whether social auto redirect is enabled. The IDP policy should be configured with only one Social IDP, and without username/password selected.
Added In: 2310202314
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- client
Credential BooleanIn Payload (Updatable) Whether the client credential is contained in payload
Added In: 18.4.2
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- clock
Skew IntegerIn Seconds (Updatable) Social IDP allowed clock skew time
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: integer
- uniqueness: none
- description String
(Updatable) Social IDP description
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- discovery
Url String (Updatable) Discovery URL
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- icon
Url String (Updatable) ICON URL for social idp
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- id
Attribute String Id attribute used for account linking
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: none
- jit
Prov List<DomainsAssigned Groups Social Provider Jit Prov Assigned Group> (Updatable) Lists the groups each social JIT-provisioned user is a member. Just-in-Time user-provisioning applies this static list when jitProvGroupStaticListEnabled:true.
Added In: 2309290043
SCIM++ Properties:
- idcsCompositeKey: [value]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- jit
Prov BooleanGroup Static List Enabled (Updatable) Set to true to indicate Social JIT User Provisioning Groups should be assigned from a static list
Added In: 2309290043
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- name String
(Updatable) Social provider name
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: global
- ocid String
(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- profile
Url String (Updatable) Social IDP User profile URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- redirect
Url String (Updatable) redirect URL for social idp
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- refresh
Token StringUrl (Updatable) Social IDP Refresh token URL
Added In: 19.1.4
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- relay
Idp List<DomainsParam Mappings Social Provider Relay Idp Param Mapping> (Updatable) Relay Param variable for Social IDP
Added In: 2305190132
SCIM++ Properties:
- idcsCompositeKey: [relayParamKey]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- resource
Type StringSchema Version - (Updatable) 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.
- scopes List<String>
(Updatable) Scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Boolean
(Updatable) Whether Social JIT Provisioning is enabled
Added In: 2307282043
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- status String
(Updatable) Status
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- List<Domains
Social Provider Tag> (Updatable) A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- account
Linking booleanEnabled (Updatable) Whether account linking is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- consumer
Key string (Updatable) Social IDP Client Application Client ID
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- consumer
Secret string (Updatable) Social IDP Client Application Client Secret
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- idcsSensitive: encrypt
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- enabled boolean
(Updatable) Whether the IDP is enabled or not
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- idcs
Endpoint string - The basic endpoint for the identity domain
- registration
Enabled boolean (Updatable) Whether registration is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- schemas string[]
(Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- service
Provider stringName Service Provider Name
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
- show
On booleanLogin (Updatable) Whether show on login
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- access
Token stringUrl (Updatable) Social IDP Access token URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- admin
Scopes string[] (Updatable) Admin scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- string
- (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- authz
Url string (Updatable) Social IDP Authorization URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- auto
Redirect booleanEnabled (Updatable) Whether social auto redirect is enabled. The IDP policy should be configured with only one Social IDP, and without username/password selected.
Added In: 2310202314
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- client
Credential booleanIn Payload (Updatable) Whether the client credential is contained in payload
Added In: 18.4.2
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- clock
Skew numberIn Seconds (Updatable) Social IDP allowed clock skew time
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: integer
- uniqueness: none
- description string
(Updatable) Social IDP description
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- discovery
Url string (Updatable) Discovery URL
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- icon
Url string (Updatable) ICON URL for social idp
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- id
Attribute string Id attribute used for account linking
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: none
- jit
Prov DomainsAssigned Groups Social Identity Provider Jit Prov Assigned Group[] (Updatable) Lists the groups each social JIT-provisioned user is a member. Just-in-Time user-provisioning applies this static list when jitProvGroupStaticListEnabled:true.
Added In: 2309290043
SCIM++ Properties:
- idcsCompositeKey: [value]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- jit
Prov booleanGroup Static List Enabled (Updatable) Set to true to indicate Social JIT User Provisioning Groups should be assigned from a static list
Added In: 2309290043
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- name string
(Updatable) Social provider name
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: global
- ocid string
(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- profile
Url string (Updatable) Social IDP User profile URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- redirect
Url string (Updatable) redirect URL for social idp
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- refresh
Token stringUrl (Updatable) Social IDP Refresh token URL
Added In: 19.1.4
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- relay
Idp DomainsParam Mappings Social Identity Provider Relay Idp Param Mapping[] (Updatable) Relay Param variable for Social IDP
Added In: 2305190132
SCIM++ Properties:
- idcsCompositeKey: [relayParamKey]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- resource
Type stringSchema Version - (Updatable) 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.
- scopes string[]
(Updatable) Scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- boolean
(Updatable) Whether Social JIT Provisioning is enabled
Added In: 2307282043
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- status string
(Updatable) Status
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Domains
Social Identity Provider Tag[] (Updatable) A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- account_
linking_ boolenabled (Updatable) Whether account linking is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- consumer_
key str (Updatable) Social IDP Client Application Client ID
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- consumer_
secret str (Updatable) Social IDP Client Application Client Secret
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- idcsSensitive: encrypt
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- enabled bool
(Updatable) Whether the IDP is enabled or not
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- idcs_
endpoint str - The basic endpoint for the identity domain
- registration_
enabled bool (Updatable) Whether registration is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- schemas Sequence[str]
(Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- service_
provider_ strname Service Provider Name
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
- show_
on_ boollogin (Updatable) Whether show on login
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- access_
token_ strurl (Updatable) Social IDP Access token URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- admin_
scopes Sequence[str] (Updatable) Admin scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- str
- (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- authz_
url str (Updatable) Social IDP Authorization URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- auto_
redirect_ boolenabled (Updatable) Whether social auto redirect is enabled. The IDP policy should be configured with only one Social IDP, and without username/password selected.
Added In: 2310202314
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- client_
credential_ boolin_ payload (Updatable) Whether the client credential is contained in payload
Added In: 18.4.2
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- clock_
skew_ intin_ seconds (Updatable) Social IDP allowed clock skew time
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: integer
- uniqueness: none
- description str
(Updatable) Social IDP description
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- discovery_
url str (Updatable) Discovery URL
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- icon_
url str (Updatable) ICON URL for social idp
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- id_
attribute str Id attribute used for account linking
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: none
- jit_
prov_ Sequence[identity.assigned_ groups Domains Social Identity Provider Jit Prov Assigned Group Args] (Updatable) Lists the groups each social JIT-provisioned user is a member. Just-in-Time user-provisioning applies this static list when jitProvGroupStaticListEnabled:true.
Added In: 2309290043
SCIM++ Properties:
- idcsCompositeKey: [value]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- jit_
prov_ boolgroup_ static_ list_ enabled (Updatable) Set to true to indicate Social JIT User Provisioning Groups should be assigned from a static list
Added In: 2309290043
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- name str
(Updatable) Social provider name
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: global
- ocid str
(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- profile_
url str (Updatable) Social IDP User profile URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- redirect_
url str (Updatable) redirect URL for social idp
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- refresh_
token_ strurl (Updatable) Social IDP Refresh token URL
Added In: 19.1.4
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- relay_
idp_ Sequence[identity.param_ mappings Domains Social Identity Provider Relay Idp Param Mapping Args] (Updatable) Relay Param variable for Social IDP
Added In: 2305190132
SCIM++ Properties:
- idcsCompositeKey: [relayParamKey]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- resource_
type_ strschema_ version - (Updatable) 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.
- scopes Sequence[str]
(Updatable) Scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- bool
(Updatable) Whether Social JIT Provisioning is enabled
Added In: 2307282043
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- status str
(Updatable) Status
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Sequence[identity.
Domains Social Identity Provider Tag Args] (Updatable) A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- account
Linking BooleanEnabled (Updatable) Whether account linking is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- consumer
Key String (Updatable) Social IDP Client Application Client ID
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- consumer
Secret String (Updatable) Social IDP Client Application Client Secret
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- idcsSensitive: encrypt
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- enabled Boolean
(Updatable) Whether the IDP is enabled or not
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- idcs
Endpoint String - The basic endpoint for the identity domain
- registration
Enabled Boolean (Updatable) Whether registration is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- schemas List<String>
(Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- service
Provider StringName Service Provider Name
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
- show
On BooleanLogin (Updatable) Whether show on login
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- access
Token StringUrl (Updatable) Social IDP Access token URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- admin
Scopes List<String> (Updatable) Admin scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- String
- (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- authz
Url String (Updatable) Social IDP Authorization URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- auto
Redirect BooleanEnabled (Updatable) Whether social auto redirect is enabled. The IDP policy should be configured with only one Social IDP, and without username/password selected.
Added In: 2310202314
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- client
Credential BooleanIn Payload (Updatable) Whether the client credential is contained in payload
Added In: 18.4.2
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- clock
Skew NumberIn Seconds (Updatable) Social IDP allowed clock skew time
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: integer
- uniqueness: none
- description String
(Updatable) Social IDP description
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- discovery
Url String (Updatable) Discovery URL
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- icon
Url String (Updatable) ICON URL for social idp
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- id
Attribute String Id attribute used for account linking
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: none
- jit
Prov List<Property Map>Assigned Groups (Updatable) Lists the groups each social JIT-provisioned user is a member. Just-in-Time user-provisioning applies this static list when jitProvGroupStaticListEnabled:true.
Added In: 2309290043
SCIM++ Properties:
- idcsCompositeKey: [value]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- jit
Prov BooleanGroup Static List Enabled (Updatable) Set to true to indicate Social JIT User Provisioning Groups should be assigned from a static list
Added In: 2309290043
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- name String
(Updatable) Social provider name
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: global
- ocid String
(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- profile
Url String (Updatable) Social IDP User profile URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- redirect
Url String (Updatable) redirect URL for social idp
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- refresh
Token StringUrl (Updatable) Social IDP Refresh token URL
Added In: 19.1.4
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- relay
Idp List<Property Map>Param Mappings (Updatable) Relay Param variable for Social IDP
Added In: 2305190132
SCIM++ Properties:
- idcsCompositeKey: [relayParamKey]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- resource
Type StringSchema Version - (Updatable) 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.
- scopes List<String>
(Updatable) Scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Boolean
(Updatable) Whether Social JIT Provisioning is enabled
Added In: 2307282043
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- status String
(Updatable) Status
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- List<Property Map>
(Updatable) A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
Outputs
All input properties are implicitly available as output properties. Additionally, the DomainsSocialIdentityProvider resource produces the following output properties:
- Compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Delete
In boolProgress (Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Id string
- The provider-assigned unique ID for this managed resource.
- Idcs
Created List<DomainsBies Social Identity Provider Idcs Created By> (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- Idcs
Last List<DomainsModified Bies Social Identity Provider Idcs Last Modified By> (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- Idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- Idcs
Prevented List<string>Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- Metas
List<Domains
Social Identity Provider Meta> (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- Tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Delete
In boolProgress (Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Id string
- The provider-assigned unique ID for this managed resource.
- Idcs
Created []DomainsBies Social Identity Provider Idcs Created By (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- Idcs
Last []DomainsModified Bies Social Identity Provider Idcs Last Modified By (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- Idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- Idcs
Prevented []stringOperations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- Metas
[]Domains
Social Identity Provider Meta (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- Tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Ocid String (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- delete
In BooleanProgress (Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- domain
Ocid String (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- id String
- The provider-assigned unique ID for this managed resource.
- idcs
Created List<DomainsBies Social Provider Idcs Created By> (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- idcs
Last List<DomainsModified Bies Social Provider Idcs Last Modified By> (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- idcs
Last StringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- idcs
Prevented List<String>Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- metas
List<Domains
Social Provider Meta> (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- tenancy
Ocid String (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- delete
In booleanProgress (Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- id string
- The provider-assigned unique ID for this managed resource.
- idcs
Created DomainsBies Social Identity Provider Idcs Created By[] (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- idcs
Last DomainsModified Bies Social Identity Provider Idcs Last Modified By[] (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- idcs
Prevented string[]Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- metas
Domains
Social Identity Provider Meta[] (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment_
ocid str (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- delete_
in_ boolprogress (Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- domain_
ocid str (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- id str
- The provider-assigned unique ID for this managed resource.
- idcs_
created_ Sequence[identity.bies Domains Social Identity Provider Idcs Created By] (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- idcs_
last_ Sequence[identity.modified_ bies Domains Social Identity Provider Idcs Last Modified By] (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- idcs_
last_ strupgraded_ in_ release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- idcs_
prevented_ Sequence[str]operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- metas
Sequence[identity.
Domains Social Identity Provider Meta] (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- tenancy_
ocid str (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Ocid String (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- delete
In BooleanProgress (Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- domain
Ocid String (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- id String
- The provider-assigned unique ID for this managed resource.
- idcs
Created List<Property Map>Bies (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- idcs
Last List<Property Map>Modified Bies (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- idcs
Last StringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- idcs
Prevented List<String>Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- metas List<Property Map>
(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- tenancy
Ocid String (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Look up Existing DomainsSocialIdentityProvider Resource
Get an existing DomainsSocialIdentityProvider resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: DomainsSocialIdentityProviderState, opts?: CustomResourceOptions): DomainsSocialIdentityProvider
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
access_token_url: Optional[str] = None,
account_linking_enabled: Optional[bool] = None,
admin_scopes: Optional[Sequence[str]] = None,
authorization: Optional[str] = None,
authz_url: Optional[str] = None,
auto_redirect_enabled: Optional[bool] = None,
client_credential_in_payload: Optional[bool] = None,
clock_skew_in_seconds: Optional[int] = None,
compartment_ocid: Optional[str] = None,
consumer_key: Optional[str] = None,
consumer_secret: Optional[str] = None,
delete_in_progress: Optional[bool] = None,
description: Optional[str] = None,
discovery_url: Optional[str] = None,
domain_ocid: Optional[str] = None,
enabled: Optional[bool] = None,
icon_url: Optional[str] = None,
id_attribute: Optional[str] = None,
idcs_created_bies: Optional[Sequence[_identity.DomainsSocialIdentityProviderIdcsCreatedByArgs]] = None,
idcs_endpoint: Optional[str] = None,
idcs_last_modified_bies: Optional[Sequence[_identity.DomainsSocialIdentityProviderIdcsLastModifiedByArgs]] = None,
idcs_last_upgraded_in_release: Optional[str] = None,
idcs_prevented_operations: Optional[Sequence[str]] = None,
jit_prov_assigned_groups: Optional[Sequence[_identity.DomainsSocialIdentityProviderJitProvAssignedGroupArgs]] = None,
jit_prov_group_static_list_enabled: Optional[bool] = None,
metas: Optional[Sequence[_identity.DomainsSocialIdentityProviderMetaArgs]] = None,
name: Optional[str] = None,
ocid: Optional[str] = None,
profile_url: Optional[str] = None,
redirect_url: Optional[str] = None,
refresh_token_url: Optional[str] = None,
registration_enabled: Optional[bool] = None,
relay_idp_param_mappings: Optional[Sequence[_identity.DomainsSocialIdentityProviderRelayIdpParamMappingArgs]] = None,
resource_type_schema_version: Optional[str] = None,
schemas: Optional[Sequence[str]] = None,
scopes: Optional[Sequence[str]] = None,
service_provider_name: Optional[str] = None,
show_on_login: Optional[bool] = None,
social_jit_provisioning_enabled: Optional[bool] = None,
status: Optional[str] = None,
tags: Optional[Sequence[_identity.DomainsSocialIdentityProviderTagArgs]] = None,
tenancy_ocid: Optional[str] = None) -> DomainsSocialIdentityProvider
func GetDomainsSocialIdentityProvider(ctx *Context, name string, id IDInput, state *DomainsSocialIdentityProviderState, opts ...ResourceOption) (*DomainsSocialIdentityProvider, error)
public static DomainsSocialIdentityProvider Get(string name, Input<string> id, DomainsSocialIdentityProviderState? state, CustomResourceOptions? opts = null)
public static DomainsSocialIdentityProvider get(String name, Output<String> id, DomainsSocialIdentityProviderState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Access
Token stringUrl (Updatable) Social IDP Access token URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Account
Linking boolEnabled (Updatable) Whether account linking is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- Admin
Scopes List<string> (Updatable) Admin scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- string
- (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Authz
Url string (Updatable) Social IDP Authorization URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Auto
Redirect boolEnabled (Updatable) Whether social auto redirect is enabled. The IDP policy should be configured with only one Social IDP, and without username/password selected.
Added In: 2310202314
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Client
Credential boolIn Payload (Updatable) Whether the client credential is contained in payload
Added In: 18.4.2
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Clock
Skew intIn Seconds (Updatable) Social IDP allowed clock skew time
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: integer
- uniqueness: none
- Compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Consumer
Key string (Updatable) Social IDP Client Application Client ID
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Consumer
Secret string (Updatable) Social IDP Client Application Client Secret
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- idcsSensitive: encrypt
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Delete
In boolProgress (Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Description string
(Updatable) Social IDP description
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Discovery
Url string (Updatable) Discovery URL
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Enabled bool
(Updatable) Whether the IDP is enabled or not
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- Icon
Url string (Updatable) ICON URL for social idp
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Id
Attribute string Id attribute used for account linking
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: none
- Idcs
Created List<DomainsBies Social Identity Provider Idcs Created By> (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- Idcs
Endpoint string - The basic endpoint for the identity domain
- Idcs
Last List<DomainsModified Bies Social Identity Provider Idcs Last Modified By> (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- Idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- Idcs
Prevented List<string>Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- Jit
Prov List<DomainsAssigned Groups Social Identity Provider Jit Prov Assigned Group> (Updatable) Lists the groups each social JIT-provisioned user is a member. Just-in-Time user-provisioning applies this static list when jitProvGroupStaticListEnabled:true.
Added In: 2309290043
SCIM++ Properties:
- idcsCompositeKey: [value]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- Jit
Prov boolGroup Static List Enabled (Updatable) Set to true to indicate Social JIT User Provisioning Groups should be assigned from a static list
Added In: 2309290043
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Metas
List<Domains
Social Identity Provider Meta> (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- Name string
(Updatable) Social provider name
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: global
- Ocid string
(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- Profile
Url string (Updatable) Social IDP User profile URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Redirect
Url string (Updatable) redirect URL for social idp
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Refresh
Token stringUrl (Updatable) Social IDP Refresh token URL
Added In: 19.1.4
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Registration
Enabled bool (Updatable) Whether registration is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- Relay
Idp List<DomainsParam Mappings Social Identity Provider Relay Idp Param Mapping> (Updatable) Relay Param variable for Social IDP
Added In: 2305190132
SCIM++ Properties:
- idcsCompositeKey: [relayParamKey]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- Resource
Type stringSchema Version - (Updatable) 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.
- Schemas List<string>
(Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Scopes List<string>
(Updatable) Scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Service
Provider stringName Service Provider Name
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
- Show
On boolLogin (Updatable) Whether show on login
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- bool
(Updatable) Whether Social JIT Provisioning is enabled
Added In: 2307282043
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Status string
(Updatable) Status
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- List<Domains
Social Identity Provider Tag> (Updatable) A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- Tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Access
Token stringUrl (Updatable) Social IDP Access token URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Account
Linking boolEnabled (Updatable) Whether account linking is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- Admin
Scopes []string (Updatable) Admin scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- string
- (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Authz
Url string (Updatable) Social IDP Authorization URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Auto
Redirect boolEnabled (Updatable) Whether social auto redirect is enabled. The IDP policy should be configured with only one Social IDP, and without username/password selected.
Added In: 2310202314
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Client
Credential boolIn Payload (Updatable) Whether the client credential is contained in payload
Added In: 18.4.2
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Clock
Skew intIn Seconds (Updatable) Social IDP allowed clock skew time
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: integer
- uniqueness: none
- Compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Consumer
Key string (Updatable) Social IDP Client Application Client ID
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Consumer
Secret string (Updatable) Social IDP Client Application Client Secret
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- idcsSensitive: encrypt
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Delete
In boolProgress (Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Description string
(Updatable) Social IDP description
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Discovery
Url string (Updatable) Discovery URL
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Enabled bool
(Updatable) Whether the IDP is enabled or not
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- Icon
Url string (Updatable) ICON URL for social idp
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Id
Attribute string Id attribute used for account linking
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: none
- Idcs
Created []DomainsBies Social Identity Provider Idcs Created By Args (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- Idcs
Endpoint string - The basic endpoint for the identity domain
- Idcs
Last []DomainsModified Bies Social Identity Provider Idcs Last Modified By Args (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- Idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- Idcs
Prevented []stringOperations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- Jit
Prov []DomainsAssigned Groups Social Identity Provider Jit Prov Assigned Group Args (Updatable) Lists the groups each social JIT-provisioned user is a member. Just-in-Time user-provisioning applies this static list when jitProvGroupStaticListEnabled:true.
Added In: 2309290043
SCIM++ Properties:
- idcsCompositeKey: [value]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- Jit
Prov boolGroup Static List Enabled (Updatable) Set to true to indicate Social JIT User Provisioning Groups should be assigned from a static list
Added In: 2309290043
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Metas
[]Domains
Social Identity Provider Meta Args (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- Name string
(Updatable) Social provider name
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: global
- Ocid string
(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- Profile
Url string (Updatable) Social IDP User profile URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Redirect
Url string (Updatable) redirect URL for social idp
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Refresh
Token stringUrl (Updatable) Social IDP Refresh token URL
Added In: 19.1.4
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Registration
Enabled bool (Updatable) Whether registration is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- Relay
Idp []DomainsParam Mappings Social Identity Provider Relay Idp Param Mapping Args (Updatable) Relay Param variable for Social IDP
Added In: 2305190132
SCIM++ Properties:
- idcsCompositeKey: [relayParamKey]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- Resource
Type stringSchema Version - (Updatable) 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.
- Schemas []string
(Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Scopes []string
(Updatable) Scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Service
Provider stringName Service Provider Name
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
- Show
On boolLogin (Updatable) Whether show on login
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- bool
(Updatable) Whether Social JIT Provisioning is enabled
Added In: 2307282043
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- Status string
(Updatable) Status
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- []Domains
Social Identity Provider Tag Args (Updatable) A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- Tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- access
Token StringUrl (Updatable) Social IDP Access token URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- account
Linking BooleanEnabled (Updatable) Whether account linking is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- admin
Scopes List<String> (Updatable) Admin scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- String
- (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- authz
Url String (Updatable) Social IDP Authorization URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- auto
Redirect BooleanEnabled (Updatable) Whether social auto redirect is enabled. The IDP policy should be configured with only one Social IDP, and without username/password selected.
Added In: 2310202314
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- client
Credential BooleanIn Payload (Updatable) Whether the client credential is contained in payload
Added In: 18.4.2
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- clock
Skew IntegerIn Seconds (Updatable) Social IDP allowed clock skew time
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: integer
- uniqueness: none
- compartment
Ocid String (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- consumer
Key String (Updatable) Social IDP Client Application Client ID
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- consumer
Secret String (Updatable) Social IDP Client Application Client Secret
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- idcsSensitive: encrypt
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- delete
In BooleanProgress (Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- description String
(Updatable) Social IDP description
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- discovery
Url String (Updatable) Discovery URL
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- domain
Ocid String (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- enabled Boolean
(Updatable) Whether the IDP is enabled or not
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- icon
Url String (Updatable) ICON URL for social idp
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- id
Attribute String Id attribute used for account linking
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: none
- idcs
Created List<DomainsBies Social Provider Idcs Created By> (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- idcs
Endpoint String - The basic endpoint for the identity domain
- idcs
Last List<DomainsModified Bies Social Provider Idcs Last Modified By> (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- idcs
Last StringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- idcs
Prevented List<String>Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- jit
Prov List<DomainsAssigned Groups Social Provider Jit Prov Assigned Group> (Updatable) Lists the groups each social JIT-provisioned user is a member. Just-in-Time user-provisioning applies this static list when jitProvGroupStaticListEnabled:true.
Added In: 2309290043
SCIM++ Properties:
- idcsCompositeKey: [value]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- jit
Prov BooleanGroup Static List Enabled (Updatable) Set to true to indicate Social JIT User Provisioning Groups should be assigned from a static list
Added In: 2309290043
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- metas
List<Domains
Social Provider Meta> (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- name String
(Updatable) Social provider name
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: global
- ocid String
(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- profile
Url String (Updatable) Social IDP User profile URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- redirect
Url String (Updatable) redirect URL for social idp
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- refresh
Token StringUrl (Updatable) Social IDP Refresh token URL
Added In: 19.1.4
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- registration
Enabled Boolean (Updatable) Whether registration is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- relay
Idp List<DomainsParam Mappings Social Provider Relay Idp Param Mapping> (Updatable) Relay Param variable for Social IDP
Added In: 2305190132
SCIM++ Properties:
- idcsCompositeKey: [relayParamKey]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- resource
Type StringSchema Version - (Updatable) 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.
- schemas List<String>
(Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- scopes List<String>
(Updatable) Scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- service
Provider StringName Service Provider Name
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
- show
On BooleanLogin (Updatable) Whether show on login
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- Boolean
(Updatable) Whether Social JIT Provisioning is enabled
Added In: 2307282043
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- status String
(Updatable) Status
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- List<Domains
Social Provider Tag> (Updatable) A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- tenancy
Ocid String (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- access
Token stringUrl (Updatable) Social IDP Access token URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- account
Linking booleanEnabled (Updatable) Whether account linking is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- admin
Scopes string[] (Updatable) Admin scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- string
- (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- authz
Url string (Updatable) Social IDP Authorization URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- auto
Redirect booleanEnabled (Updatable) Whether social auto redirect is enabled. The IDP policy should be configured with only one Social IDP, and without username/password selected.
Added In: 2310202314
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- client
Credential booleanIn Payload (Updatable) Whether the client credential is contained in payload
Added In: 18.4.2
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- clock
Skew numberIn Seconds (Updatable) Social IDP allowed clock skew time
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: integer
- uniqueness: none
- compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- consumer
Key string (Updatable) Social IDP Client Application Client ID
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- consumer
Secret string (Updatable) Social IDP Client Application Client Secret
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- idcsSensitive: encrypt
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- delete
In booleanProgress (Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- description string
(Updatable) Social IDP description
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- discovery
Url string (Updatable) Discovery URL
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- enabled boolean
(Updatable) Whether the IDP is enabled or not
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- icon
Url string (Updatable) ICON URL for social idp
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- id
Attribute string Id attribute used for account linking
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: none
- idcs
Created DomainsBies Social Identity Provider Idcs Created By[] (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- idcs
Endpoint string - The basic endpoint for the identity domain
- idcs
Last DomainsModified Bies Social Identity Provider Idcs Last Modified By[] (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- idcs
Prevented string[]Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- jit
Prov DomainsAssigned Groups Social Identity Provider Jit Prov Assigned Group[] (Updatable) Lists the groups each social JIT-provisioned user is a member. Just-in-Time user-provisioning applies this static list when jitProvGroupStaticListEnabled:true.
Added In: 2309290043
SCIM++ Properties:
- idcsCompositeKey: [value]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- jit
Prov booleanGroup Static List Enabled (Updatable) Set to true to indicate Social JIT User Provisioning Groups should be assigned from a static list
Added In: 2309290043
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- metas
Domains
Social Identity Provider Meta[] (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- name string
(Updatable) Social provider name
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: global
- ocid string
(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- profile
Url string (Updatable) Social IDP User profile URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- redirect
Url string (Updatable) redirect URL for social idp
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- refresh
Token stringUrl (Updatable) Social IDP Refresh token URL
Added In: 19.1.4
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- registration
Enabled boolean (Updatable) Whether registration is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- relay
Idp DomainsParam Mappings Social Identity Provider Relay Idp Param Mapping[] (Updatable) Relay Param variable for Social IDP
Added In: 2305190132
SCIM++ Properties:
- idcsCompositeKey: [relayParamKey]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- resource
Type stringSchema Version - (Updatable) 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.
- schemas string[]
(Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- scopes string[]
(Updatable) Scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- service
Provider stringName Service Provider Name
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
- show
On booleanLogin (Updatable) Whether show on login
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- boolean
(Updatable) Whether Social JIT Provisioning is enabled
Added In: 2307282043
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- status string
(Updatable) Status
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Domains
Social Identity Provider Tag[] (Updatable) A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- access_
token_ strurl (Updatable) Social IDP Access token URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- account_
linking_ boolenabled (Updatable) Whether account linking is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- admin_
scopes Sequence[str] (Updatable) Admin scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- str
- (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- authz_
url str (Updatable) Social IDP Authorization URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- auto_
redirect_ boolenabled (Updatable) Whether social auto redirect is enabled. The IDP policy should be configured with only one Social IDP, and without username/password selected.
Added In: 2310202314
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- client_
credential_ boolin_ payload (Updatable) Whether the client credential is contained in payload
Added In: 18.4.2
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- clock_
skew_ intin_ seconds (Updatable) Social IDP allowed clock skew time
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: integer
- uniqueness: none
- compartment_
ocid str (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- consumer_
key str (Updatable) Social IDP Client Application Client ID
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- consumer_
secret str (Updatable) Social IDP Client Application Client Secret
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- idcsSensitive: encrypt
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- delete_
in_ boolprogress (Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- description str
(Updatable) Social IDP description
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- discovery_
url str (Updatable) Discovery URL
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- domain_
ocid str (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- enabled bool
(Updatable) Whether the IDP is enabled or not
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- icon_
url str (Updatable) ICON URL for social idp
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- id_
attribute str Id attribute used for account linking
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: none
- idcs_
created_ Sequence[identity.bies Domains Social Identity Provider Idcs Created By Args] (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- idcs_
endpoint str - The basic endpoint for the identity domain
- idcs_
last_ Sequence[identity.modified_ bies Domains Social Identity Provider Idcs Last Modified By Args] (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- idcs_
last_ strupgraded_ in_ release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- idcs_
prevented_ Sequence[str]operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- jit_
prov_ Sequence[identity.assigned_ groups Domains Social Identity Provider Jit Prov Assigned Group Args] (Updatable) Lists the groups each social JIT-provisioned user is a member. Just-in-Time user-provisioning applies this static list when jitProvGroupStaticListEnabled:true.
Added In: 2309290043
SCIM++ Properties:
- idcsCompositeKey: [value]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- jit_
prov_ boolgroup_ static_ list_ enabled (Updatable) Set to true to indicate Social JIT User Provisioning Groups should be assigned from a static list
Added In: 2309290043
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- metas
Sequence[identity.
Domains Social Identity Provider Meta Args] (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- name str
(Updatable) Social provider name
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: global
- ocid str
(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- profile_
url str (Updatable) Social IDP User profile URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- redirect_
url str (Updatable) redirect URL for social idp
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- refresh_
token_ strurl (Updatable) Social IDP Refresh token URL
Added In: 19.1.4
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- registration_
enabled bool (Updatable) Whether registration is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- relay_
idp_ Sequence[identity.param_ mappings Domains Social Identity Provider Relay Idp Param Mapping Args] (Updatable) Relay Param variable for Social IDP
Added In: 2305190132
SCIM++ Properties:
- idcsCompositeKey: [relayParamKey]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- resource_
type_ strschema_ version - (Updatable) 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.
- schemas Sequence[str]
(Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- scopes Sequence[str]
(Updatable) Scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- service_
provider_ strname Service Provider Name
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
- show_
on_ boollogin (Updatable) Whether show on login
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- bool
(Updatable) Whether Social JIT Provisioning is enabled
Added In: 2307282043
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- status str
(Updatable) Status
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Sequence[identity.
Domains Social Identity Provider Tag Args] (Updatable) A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- tenancy_
ocid str (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- access
Token StringUrl (Updatable) Social IDP Access token URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- account
Linking BooleanEnabled (Updatable) Whether account linking is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- admin
Scopes List<String> (Updatable) Admin scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- String
- (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- authz
Url String (Updatable) Social IDP Authorization URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- auto
Redirect BooleanEnabled (Updatable) Whether social auto redirect is enabled. The IDP policy should be configured with only one Social IDP, and without username/password selected.
Added In: 2310202314
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- client
Credential BooleanIn Payload (Updatable) Whether the client credential is contained in payload
Added In: 18.4.2
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- clock
Skew NumberIn Seconds (Updatable) Social IDP allowed clock skew time
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: integer
- uniqueness: none
- compartment
Ocid String (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- consumer
Key String (Updatable) Social IDP Client Application Client ID
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- consumer
Secret String (Updatable) Social IDP Client Application Client Secret
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- idcsSensitive: encrypt
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- delete
In BooleanProgress (Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
- description String
(Updatable) Social IDP description
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- discovery
Url String (Updatable) Discovery URL
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- domain
Ocid String (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- enabled Boolean
(Updatable) Whether the IDP is enabled or not
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- icon
Url String (Updatable) ICON URL for social idp
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- id
Attribute String Id attribute used for account linking
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: none
- idcs
Created List<Property Map>Bies (Updatable) The User or App who created the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
- idcs
Endpoint String - The basic endpoint for the identity domain
- idcs
Last List<Property Map>Modified Bies (Updatable) The User or App who modified the Resource
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
- idcs
Last StringUpgraded In Release (Updatable) The release number when the resource was upgraded.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- idcs
Prevented List<String>Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
SCIM++ Properties:
- idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- jit
Prov List<Property Map>Assigned Groups (Updatable) Lists the groups each social JIT-provisioned user is a member. Just-in-Time user-provisioning applies this static list when jitProvGroupStaticListEnabled:true.
Added In: 2309290043
SCIM++ Properties:
- idcsCompositeKey: [value]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- jit
Prov BooleanGroup Static List Enabled (Updatable) Set to true to indicate Social JIT User Provisioning Groups should be assigned from a static list
Added In: 2309290043
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- metas List<Property Map>
(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
- name String
(Updatable) Social provider name
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: global
- ocid String
(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: false
- returned: default
- type: string
- uniqueness: global
- profile
Url String (Updatable) Social IDP User profile URL
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- redirect
Url String (Updatable) redirect URL for social idp
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- refresh
Token StringUrl (Updatable) Social IDP Refresh token URL
Added In: 19.1.4
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- registration
Enabled Boolean (Updatable) Whether registration is enabled
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- relay
Idp List<Property Map>Param Mappings (Updatable) Relay Param variable for Social IDP
Added In: 2305190132
SCIM++ Properties:
- idcsCompositeKey: [relayParamKey]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
- resource
Type StringSchema Version - (Updatable) 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.
- schemas List<String>
(Updatable) 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.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- scopes List<String>
(Updatable) Scope to request
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- service
Provider StringName Service Provider Name
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
- show
On BooleanLogin (Updatable) Whether show on login
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: boolean
- uniqueness: none
- Boolean
(Updatable) Whether Social JIT Provisioning is enabled
Added In: 2307282043
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
- status String
(Updatable) Status
Added In: 17.4.6
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- List<Property Map>
(Updatable) A list of tags on this resource.
SCIM++ Properties:
- idcsCompositeKey: [key, value]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
- tenancy
Ocid String (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Supporting Types
DomainsSocialIdentityProviderIdcsCreatedBy, DomainsSocialIdentityProviderIdcsCreatedByArgs
- Value string
(Updatable) The ID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- Display string
(Updatable) The displayName of the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Ocid string
(Updatable) The OCID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- Ref string
- Type string
(Updatable) The type of resource, User or App, that created this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Value string
(Updatable) The ID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- Display string
(Updatable) The displayName of the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Ocid string
(Updatable) The OCID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- Ref string
- Type string
(Updatable) The type of resource, User or App, that created this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- value String
(Updatable) The ID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- display String
(Updatable) The displayName of the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid String
(Updatable) The OCID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- ref String
- type String
(Updatable) The type of resource, User or App, that created this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- value string
(Updatable) The ID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- display string
(Updatable) The displayName of the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid string
(Updatable) The OCID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- ref string
- type string
(Updatable) The type of resource, User or App, that created this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- value str
(Updatable) The ID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- display str
(Updatable) The displayName of the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid str
(Updatable) The OCID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- ref str
- type str
(Updatable) The type of resource, User or App, that created this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- value String
(Updatable) The ID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- display String
(Updatable) The displayName of the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid String
(Updatable) The OCID of the SCIM resource that represents the User or App who created this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- ref String
- type String
(Updatable) The type of resource, User or App, that created this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
DomainsSocialIdentityProviderIdcsLastModifiedBy, DomainsSocialIdentityProviderIdcsLastModifiedByArgs
- Value string
(Updatable) The ID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- Display string
(Updatable) The displayName of the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Ocid string
(Updatable) The OCID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- Ref string
- Type string
(Updatable) The type of resource, User or App, that modified this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Value string
(Updatable) The ID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- Display string
(Updatable) The displayName of the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Ocid string
(Updatable) The OCID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- Ref string
- Type string
(Updatable) The type of resource, User or App, that modified this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- value String
(Updatable) The ID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- display String
(Updatable) The displayName of the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid String
(Updatable) The OCID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- ref String
- type String
(Updatable) The type of resource, User or App, that modified this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- value string
(Updatable) The ID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- display string
(Updatable) The displayName of the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid string
(Updatable) The OCID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- ref string
- type string
(Updatable) The type of resource, User or App, that modified this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- value str
(Updatable) The ID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- display str
(Updatable) The displayName of the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid str
(Updatable) The OCID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- ref str
- type str
(Updatable) The type of resource, User or App, that modified this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- value String
(Updatable) The ID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: string
- uniqueness: none
- display String
(Updatable) The displayName of the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- ocid String
(Updatable) The OCID of the SCIM resource that represents the User or App who modified this Resource
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- returned: default
- type: string
- uniqueness: none
- ref String
- type String
(Updatable) The type of resource, User or App, that modified this Resource
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
DomainsSocialIdentityProviderJitProvAssignedGroup, DomainsSocialIdentityProviderJitProvAssignedGroupArgs
- Value string
(Updatable) Group identifier
Added In: 2309290043
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Display string
(Updatable) A human readable name, primarily used for display purposes. READ-ONLY.
Added In: 2309290043
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- Ref string
- Value string
(Updatable) Group identifier
Added In: 2309290043
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Display string
(Updatable) A human readable name, primarily used for display purposes. READ-ONLY.
Added In: 2309290043
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- Ref string
- value String
(Updatable) Group identifier
Added In: 2309290043
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- display String
(Updatable) A human readable name, primarily used for display purposes. READ-ONLY.
Added In: 2309290043
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- ref String
- value string
(Updatable) Group identifier
Added In: 2309290043
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- display string
(Updatable) A human readable name, primarily used for display purposes. READ-ONLY.
Added In: 2309290043
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- ref string
- value str
(Updatable) Group identifier
Added In: 2309290043
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- display str
(Updatable) A human readable name, primarily used for display purposes. READ-ONLY.
Added In: 2309290043
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- ref str
- value String
(Updatable) Group identifier
Added In: 2309290043
SCIM++ Properties:
- caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- display String
(Updatable) A human readable name, primarily used for display purposes. READ-ONLY.
Added In: 2309290043
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
- ref String
DomainsSocialIdentityProviderMeta, DomainsSocialIdentityProviderMetaArgs
- Created string
(Updatable) The DateTime the Resource was added to the Service Provider
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- Last
Modified string (Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- Location string
(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Resource
Type string (Updatable) Name of the resource type of the resource--for example, Users or Groups
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Version string
(Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Created string
(Updatable) The DateTime the Resource was added to the Service Provider
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- Last
Modified string (Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- Location string
(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Resource
Type string (Updatable) Name of the resource type of the resource--for example, Users or Groups
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- Version string
(Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- created String
(Updatable) The DateTime the Resource was added to the Service Provider
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- last
Modified String (Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- location String
(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- resource
Type String (Updatable) Name of the resource type of the resource--for example, Users or Groups
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- version String
(Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- created string
(Updatable) The DateTime the Resource was added to the Service Provider
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- last
Modified string (Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- location string
(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- resource
Type string (Updatable) Name of the resource type of the resource--for example, Users or Groups
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- version string
(Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- created str
(Updatable) The DateTime the Resource was added to the Service Provider
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- last_
modified str (Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- location str
(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- resource_
type str (Updatable) Name of the resource type of the resource--for example, Users or Groups
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- version str
(Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- created String
(Updatable) The DateTime the Resource was added to the Service Provider
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- last
Modified String (Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: dateTime
- uniqueness: none
- location String
(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- resource
Type String (Updatable) Name of the resource type of the resource--for example, Users or Groups
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
- version String
(Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
DomainsSocialIdentityProviderRelayIdpParamMapping, DomainsSocialIdentityProviderRelayIdpParamMappingArgs
- Relay
Param stringKey (Updatable) Key or name of the relayParam.
Added In: 2305190132
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Relay
Param stringValue (Updatable) Value of the relayParam (if defined)
Added In: 2305190132
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- Relay
Param stringKey (Updatable) Key or name of the relayParam.
Added In: 2305190132
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Relay
Param stringValue (Updatable) Value of the relayParam (if defined)
Added In: 2305190132
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- relay
Param StringKey (Updatable) Key or name of the relayParam.
Added In: 2305190132
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- relay
Param StringValue (Updatable) Value of the relayParam (if defined)
Added In: 2305190132
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- relay
Param stringKey (Updatable) Key or name of the relayParam.
Added In: 2305190132
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- relay
Param stringValue (Updatable) Value of the relayParam (if defined)
Added In: 2305190132
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- relay_
param_ strkey (Updatable) Key or name of the relayParam.
Added In: 2305190132
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- relay_
param_ strvalue (Updatable) Value of the relayParam (if defined)
Added In: 2305190132
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
- relay
Param StringKey (Updatable) Key or name of the relayParam.
Added In: 2305190132
SCIM++ Properties:
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- relay
Param StringValue (Updatable) Value of the relayParam (if defined)
Added In: 2305190132
SCIM++ Properties:
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
DomainsSocialIdentityProviderTag, DomainsSocialIdentityProviderTagArgs
- Key string
(Updatable) Key or name of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Value string
(Updatable) Value of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Key string
(Updatable) Key or name of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- Value string
(Updatable) Value of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- key String
(Updatable) Key or name of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- value String
(Updatable) Value of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- key string
(Updatable) Key or name of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- value string
(Updatable) Value of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- key str
(Updatable) Key or name of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- value str
(Updatable) Value of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- key String
(Updatable) Key or name of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
- value String
(Updatable) Value of the tag.
SCIM++ Properties:
- caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
Import
SocialIdentityProviders can be imported using the id
, e.g.
$ pulumi import oci:Identity/domainsSocialIdentityProvider:DomainsSocialIdentityProvider test_social_identity_provider "idcsEndpoint/{idcsEndpoint}/socialIdentityProviders/{socialIdentityProviderId}"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.