1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Identity
  5. DomainsSocialIdentityProvider
Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi

oci.Identity.DomainsSocialIdentityProvider

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi

    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:

    AccountLinkingEnabled bool

    (Updatable) Whether account linking is enabled

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    ConsumerKey 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
    ConsumerSecret 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
    IdcsEndpoint string
    The basic endpoint for the identity domain
    RegistrationEnabled 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
    ServiceProviderName string

    Service Provider Name

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    ShowOnLogin bool

    (Updatable) Whether show on login

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    AccessTokenUrl string

    (Updatable) Social IDP Access token URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    AdminScopes 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
    Authorization 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.
    AuthzUrl string

    (Updatable) Social IDP Authorization URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    AutoRedirectEnabled bool

    (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
    ClientCredentialInPayload bool

    (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
    ClockSkewInSeconds int

    (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
    DiscoveryUrl 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
    IconUrl 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
    IdAttribute 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
    JitProvAssignedGroups List<DomainsSocialIdentityProviderJitProvAssignedGroup>

    (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
    JitProvGroupStaticListEnabled bool

    (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
    ProfileUrl 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
    RedirectUrl 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
    RefreshTokenUrl string

    (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
    RelayIdpParamMappings List<DomainsSocialIdentityProviderRelayIdpParamMapping>

    (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
    ResourceTypeSchemaVersion string
    (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
    SocialJitProvisioningEnabled 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
    Tags List<DomainsSocialIdentityProviderTag>

    (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
    AccountLinkingEnabled bool

    (Updatable) Whether account linking is enabled

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    ConsumerKey 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
    ConsumerSecret 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
    IdcsEndpoint string
    The basic endpoint for the identity domain
    RegistrationEnabled 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
    ServiceProviderName string

    Service Provider Name

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    ShowOnLogin bool

    (Updatable) Whether show on login

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    AccessTokenUrl string

    (Updatable) Social IDP Access token URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    AdminScopes []string

    (Updatable) Admin scope to request

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Authorization 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.
    AuthzUrl string

    (Updatable) Social IDP Authorization URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    AutoRedirectEnabled bool

    (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
    ClientCredentialInPayload bool

    (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
    ClockSkewInSeconds int

    (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
    DiscoveryUrl 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
    IconUrl 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
    IdAttribute 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
    JitProvAssignedGroups []DomainsSocialIdentityProviderJitProvAssignedGroupArgs

    (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
    JitProvGroupStaticListEnabled bool

    (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
    ProfileUrl 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
    RedirectUrl 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
    RefreshTokenUrl string

    (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
    RelayIdpParamMappings []DomainsSocialIdentityProviderRelayIdpParamMappingArgs

    (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
    ResourceTypeSchemaVersion string
    (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
    SocialJitProvisioningEnabled 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
    Tags []DomainsSocialIdentityProviderTagArgs

    (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
    accountLinkingEnabled Boolean

    (Updatable) Whether account linking is enabled

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    consumerKey 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
    consumerSecret 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
    idcsEndpoint String
    The basic endpoint for the identity domain
    registrationEnabled 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
    serviceProviderName String

    Service Provider Name

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    showOnLogin Boolean

    (Updatable) Whether show on login

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    accessTokenUrl String

    (Updatable) Social IDP Access token URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    adminScopes 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
    authorization 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.
    authzUrl String

    (Updatable) Social IDP Authorization URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    autoRedirectEnabled Boolean

    (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
    clientCredentialInPayload Boolean

    (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
    clockSkewInSeconds Integer

    (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
    discoveryUrl 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
    iconUrl 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
    idAttribute 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
    jitProvAssignedGroups List<DomainsSocialProviderJitProvAssignedGroup>

    (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
    jitProvGroupStaticListEnabled Boolean

    (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
    profileUrl 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
    redirectUrl 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
    refreshTokenUrl String

    (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
    relayIdpParamMappings List<DomainsSocialProviderRelayIdpParamMapping>

    (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
    resourceTypeSchemaVersion String
    (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
    socialJitProvisioningEnabled 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
    tags List<DomainsSocialProviderTag>

    (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
    accountLinkingEnabled boolean

    (Updatable) Whether account linking is enabled

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    consumerKey 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
    consumerSecret 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
    idcsEndpoint string
    The basic endpoint for the identity domain
    registrationEnabled 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
    serviceProviderName string

    Service Provider Name

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    showOnLogin boolean

    (Updatable) Whether show on login

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    accessTokenUrl string

    (Updatable) Social IDP Access token URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    adminScopes string[]

    (Updatable) Admin scope to request

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    authorization 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.
    authzUrl string

    (Updatable) Social IDP Authorization URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    autoRedirectEnabled boolean

    (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
    clientCredentialInPayload boolean

    (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
    clockSkewInSeconds number

    (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
    discoveryUrl 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
    iconUrl 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
    idAttribute 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
    jitProvAssignedGroups DomainsSocialIdentityProviderJitProvAssignedGroup[]

    (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
    jitProvGroupStaticListEnabled boolean

    (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
    profileUrl 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
    redirectUrl 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
    refreshTokenUrl string

    (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
    relayIdpParamMappings DomainsSocialIdentityProviderRelayIdpParamMapping[]

    (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
    resourceTypeSchemaVersion string
    (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
    socialJitProvisioningEnabled 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
    tags DomainsSocialIdentityProviderTag[]

    (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_enabled bool

    (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_name str

    Service Provider Name

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    show_on_login bool

    (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_url str

    (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
    authorization 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_enabled bool

    (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_in_payload bool

    (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_in_seconds int

    (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_assigned_groups Sequence[identity.DomainsSocialIdentityProviderJitProvAssignedGroupArgs]

    (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_group_static_list_enabled bool

    (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_url str

    (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_param_mappings Sequence[identity.DomainsSocialIdentityProviderRelayIdpParamMappingArgs]

    (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_schema_version str
    (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
    social_jit_provisioning_enabled 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
    tags Sequence[identity.DomainsSocialIdentityProviderTagArgs]

    (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
    accountLinkingEnabled Boolean

    (Updatable) Whether account linking is enabled

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    consumerKey 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
    consumerSecret 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
    idcsEndpoint String
    The basic endpoint for the identity domain
    registrationEnabled 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
    serviceProviderName String

    Service Provider Name

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    showOnLogin Boolean

    (Updatable) Whether show on login

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    accessTokenUrl String

    (Updatable) Social IDP Access token URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    adminScopes 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
    authorization 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.
    authzUrl String

    (Updatable) Social IDP Authorization URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    autoRedirectEnabled Boolean

    (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
    clientCredentialInPayload Boolean

    (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
    clockSkewInSeconds Number

    (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
    discoveryUrl 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
    iconUrl 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
    idAttribute 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
    jitProvAssignedGroups List<Property Map>

    (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
    jitProvGroupStaticListEnabled Boolean

    (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
    profileUrl 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
    redirectUrl 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
    refreshTokenUrl String

    (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
    relayIdpParamMappings List<Property Map>

    (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
    resourceTypeSchemaVersion String
    (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
    socialJitProvisioningEnabled 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
    tags 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:

    CompartmentOcid 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
    DeleteInProgress bool

    (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
    DomainOcid 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.
    IdcsCreatedBies List<DomainsSocialIdentityProviderIdcsCreatedBy>

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    IdcsLastModifiedBies List<DomainsSocialIdentityProviderIdcsLastModifiedBy>

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    IdcsLastUpgradedInRelease string

    (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
    IdcsPreventedOperations List<string>

    (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<DomainsSocialIdentityProviderMeta>

    (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
    TenancyOcid 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

    CompartmentOcid 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
    DeleteInProgress bool

    (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
    DomainOcid 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.
    IdcsCreatedBies []DomainsSocialIdentityProviderIdcsCreatedBy

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    IdcsLastModifiedBies []DomainsSocialIdentityProviderIdcsLastModifiedBy

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    IdcsLastUpgradedInRelease string

    (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
    IdcsPreventedOperations []string

    (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 []DomainsSocialIdentityProviderMeta

    (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
    TenancyOcid 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

    compartmentOcid 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
    deleteInProgress Boolean

    (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
    domainOcid 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.
    idcsCreatedBies List<DomainsSocialProviderIdcsCreatedBy>

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    idcsLastModifiedBies List<DomainsSocialProviderIdcsLastModifiedBy>

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    idcsLastUpgradedInRelease String

    (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
    idcsPreventedOperations List<String>

    (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<DomainsSocialProviderMeta>

    (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
    tenancyOcid 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

    compartmentOcid 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
    deleteInProgress boolean

    (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
    domainOcid 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.
    idcsCreatedBies DomainsSocialIdentityProviderIdcsCreatedBy[]

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    idcsLastModifiedBies DomainsSocialIdentityProviderIdcsLastModifiedBy[]

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    idcsLastUpgradedInRelease string

    (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
    idcsPreventedOperations string[]

    (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 DomainsSocialIdentityProviderMeta[]

    (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
    tenancyOcid 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_progress bool

    (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_bies Sequence[identity.DomainsSocialIdentityProviderIdcsCreatedBy]

    (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_modified_bies Sequence[identity.DomainsSocialIdentityProviderIdcsLastModifiedBy]

    (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_upgraded_in_release str

    (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_operations Sequence[str]

    (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.DomainsSocialIdentityProviderMeta]

    (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

    compartmentOcid 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
    deleteInProgress Boolean

    (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
    domainOcid 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.
    idcsCreatedBies List<Property Map>

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    idcsLastModifiedBies List<Property Map>

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    idcsLastUpgradedInRelease String

    (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
    idcsPreventedOperations List<String>

    (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
    tenancyOcid 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.
    The following state arguments are supported:
    AccessTokenUrl string

    (Updatable) Social IDP Access token URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    AccountLinkingEnabled bool

    (Updatable) Whether account linking is enabled

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    AdminScopes 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
    Authorization 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.
    AuthzUrl string

    (Updatable) Social IDP Authorization URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    AutoRedirectEnabled bool

    (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
    ClientCredentialInPayload bool

    (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
    ClockSkewInSeconds int

    (Updatable) Social IDP allowed clock skew time

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    CompartmentOcid 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
    ConsumerKey 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
    ConsumerSecret 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
    DeleteInProgress bool

    (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
    DiscoveryUrl 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
    DomainOcid 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
    IconUrl 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
    IdAttribute 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
    IdcsCreatedBies List<DomainsSocialIdentityProviderIdcsCreatedBy>

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    IdcsEndpoint string
    The basic endpoint for the identity domain
    IdcsLastModifiedBies List<DomainsSocialIdentityProviderIdcsLastModifiedBy>

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    IdcsLastUpgradedInRelease string

    (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
    IdcsPreventedOperations List<string>

    (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
    JitProvAssignedGroups List<DomainsSocialIdentityProviderJitProvAssignedGroup>

    (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
    JitProvGroupStaticListEnabled bool

    (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<DomainsSocialIdentityProviderMeta>

    (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
    ProfileUrl 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
    RedirectUrl 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
    RefreshTokenUrl string

    (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
    RegistrationEnabled bool

    (Updatable) Whether registration is enabled

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    RelayIdpParamMappings List<DomainsSocialIdentityProviderRelayIdpParamMapping>

    (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
    ResourceTypeSchemaVersion string
    (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
    ServiceProviderName string

    Service Provider Name

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    ShowOnLogin bool

    (Updatable) Whether show on login

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    SocialJitProvisioningEnabled 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
    Tags List<DomainsSocialIdentityProviderTag>

    (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
    TenancyOcid 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

    AccessTokenUrl string

    (Updatable) Social IDP Access token URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    AccountLinkingEnabled bool

    (Updatable) Whether account linking is enabled

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    AdminScopes []string

    (Updatable) Admin scope to request

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    Authorization 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.
    AuthzUrl string

    (Updatable) Social IDP Authorization URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    AutoRedirectEnabled bool

    (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
    ClientCredentialInPayload bool

    (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
    ClockSkewInSeconds int

    (Updatable) Social IDP allowed clock skew time

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    CompartmentOcid 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
    ConsumerKey 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
    ConsumerSecret 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
    DeleteInProgress bool

    (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
    DiscoveryUrl 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
    DomainOcid 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
    IconUrl 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
    IdAttribute 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
    IdcsCreatedBies []DomainsSocialIdentityProviderIdcsCreatedByArgs

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    IdcsEndpoint string
    The basic endpoint for the identity domain
    IdcsLastModifiedBies []DomainsSocialIdentityProviderIdcsLastModifiedByArgs

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    IdcsLastUpgradedInRelease string

    (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
    IdcsPreventedOperations []string

    (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
    JitProvAssignedGroups []DomainsSocialIdentityProviderJitProvAssignedGroupArgs

    (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
    JitProvGroupStaticListEnabled bool

    (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 []DomainsSocialIdentityProviderMetaArgs

    (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
    ProfileUrl 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
    RedirectUrl 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
    RefreshTokenUrl string

    (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
    RegistrationEnabled bool

    (Updatable) Whether registration is enabled

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    RelayIdpParamMappings []DomainsSocialIdentityProviderRelayIdpParamMappingArgs

    (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
    ResourceTypeSchemaVersion string
    (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
    ServiceProviderName string

    Service Provider Name

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    ShowOnLogin bool

    (Updatable) Whether show on login

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    SocialJitProvisioningEnabled 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
    Tags []DomainsSocialIdentityProviderTagArgs

    (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
    TenancyOcid 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

    accessTokenUrl String

    (Updatable) Social IDP Access token URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    accountLinkingEnabled Boolean

    (Updatable) Whether account linking is enabled

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    adminScopes 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
    authorization 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.
    authzUrl String

    (Updatable) Social IDP Authorization URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    autoRedirectEnabled Boolean

    (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
    clientCredentialInPayload Boolean

    (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
    clockSkewInSeconds Integer

    (Updatable) Social IDP allowed clock skew time

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    compartmentOcid 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
    consumerKey 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
    consumerSecret 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
    deleteInProgress Boolean

    (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
    discoveryUrl 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
    domainOcid 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
    iconUrl 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
    idAttribute 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
    idcsCreatedBies List<DomainsSocialProviderIdcsCreatedBy>

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    idcsEndpoint String
    The basic endpoint for the identity domain
    idcsLastModifiedBies List<DomainsSocialProviderIdcsLastModifiedBy>

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    idcsLastUpgradedInRelease String

    (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
    idcsPreventedOperations List<String>

    (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
    jitProvAssignedGroups List<DomainsSocialProviderJitProvAssignedGroup>

    (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
    jitProvGroupStaticListEnabled Boolean

    (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<DomainsSocialProviderMeta>

    (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
    profileUrl 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
    redirectUrl 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
    refreshTokenUrl String

    (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
    registrationEnabled Boolean

    (Updatable) Whether registration is enabled

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    relayIdpParamMappings List<DomainsSocialProviderRelayIdpParamMapping>

    (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
    resourceTypeSchemaVersion String
    (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
    serviceProviderName String

    Service Provider Name

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    showOnLogin Boolean

    (Updatable) Whether show on login

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    socialJitProvisioningEnabled 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
    tags List<DomainsSocialProviderTag>

    (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
    tenancyOcid 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

    accessTokenUrl string

    (Updatable) Social IDP Access token URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    accountLinkingEnabled boolean

    (Updatable) Whether account linking is enabled

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    adminScopes string[]

    (Updatable) Admin scope to request

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: true
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    authorization 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.
    authzUrl string

    (Updatable) Social IDP Authorization URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    autoRedirectEnabled boolean

    (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
    clientCredentialInPayload boolean

    (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
    clockSkewInSeconds number

    (Updatable) Social IDP allowed clock skew time

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    compartmentOcid 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
    consumerKey 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
    consumerSecret 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
    deleteInProgress boolean

    (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
    discoveryUrl 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
    domainOcid 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
    iconUrl 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
    idAttribute 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
    idcsCreatedBies DomainsSocialIdentityProviderIdcsCreatedBy[]

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    idcsEndpoint string
    The basic endpoint for the identity domain
    idcsLastModifiedBies DomainsSocialIdentityProviderIdcsLastModifiedBy[]

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    idcsLastUpgradedInRelease string

    (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
    idcsPreventedOperations string[]

    (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
    jitProvAssignedGroups DomainsSocialIdentityProviderJitProvAssignedGroup[]

    (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
    jitProvGroupStaticListEnabled boolean

    (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 DomainsSocialIdentityProviderMeta[]

    (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
    profileUrl 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
    redirectUrl 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
    refreshTokenUrl string

    (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
    registrationEnabled boolean

    (Updatable) Whether registration is enabled

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    relayIdpParamMappings DomainsSocialIdentityProviderRelayIdpParamMapping[]

    (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
    resourceTypeSchemaVersion string
    (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
    serviceProviderName string

    Service Provider Name

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    showOnLogin boolean

    (Updatable) Whether show on login

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    socialJitProvisioningEnabled 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
    tags DomainsSocialIdentityProviderTag[]

    (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
    tenancyOcid 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_url str

    (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_enabled bool

    (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
    authorization 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_enabled bool

    (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_in_payload bool

    (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_in_seconds int

    (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_progress bool

    (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_bies Sequence[identity.DomainsSocialIdentityProviderIdcsCreatedByArgs]

    (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_modified_bies Sequence[identity.DomainsSocialIdentityProviderIdcsLastModifiedByArgs]

    (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_upgraded_in_release str

    (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_operations Sequence[str]

    (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_assigned_groups Sequence[identity.DomainsSocialIdentityProviderJitProvAssignedGroupArgs]

    (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_group_static_list_enabled bool

    (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.DomainsSocialIdentityProviderMetaArgs]

    (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_url str

    (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_param_mappings Sequence[identity.DomainsSocialIdentityProviderRelayIdpParamMappingArgs]

    (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_schema_version str
    (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_name str

    Service Provider Name

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    show_on_login bool

    (Updatable) Whether show on login

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    social_jit_provisioning_enabled 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
    tags Sequence[identity.DomainsSocialIdentityProviderTagArgs]

    (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

    accessTokenUrl String

    (Updatable) Social IDP Access token URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    accountLinkingEnabled Boolean

    (Updatable) Whether account linking is enabled

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    adminScopes 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
    authorization 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.
    authzUrl String

    (Updatable) Social IDP Authorization URL

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: string
    • uniqueness: none
    autoRedirectEnabled Boolean

    (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
    clientCredentialInPayload Boolean

    (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
    clockSkewInSeconds Number

    (Updatable) Social IDP allowed clock skew time

    SCIM++ Properties:

    • idcsSearchable: false
    • multiValued: false
    • mutability: readWrite
    • required: false
    • returned: default
    • type: integer
    • uniqueness: none
    compartmentOcid 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
    consumerKey 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
    consumerSecret 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
    deleteInProgress Boolean

    (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
    discoveryUrl 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
    domainOcid 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
    iconUrl 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
    idAttribute 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
    idcsCreatedBies List<Property Map>

    (Updatable) The User or App who created the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: true
    • returned: default
    • type: complex
    idcsEndpoint String
    The basic endpoint for the identity domain
    idcsLastModifiedBies List<Property Map>

    (Updatable) The User or App who modified the Resource

    SCIM++ Properties:

    • idcsSearchable: true
    • multiValued: false
    • mutability: readOnly
    • required: false
    • returned: default
    • type: complex
    idcsLastUpgradedInRelease String

    (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
    idcsPreventedOperations List<String>

    (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
    jitProvAssignedGroups List<Property Map>

    (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
    jitProvGroupStaticListEnabled Boolean

    (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
    profileUrl 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
    redirectUrl 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
    refreshTokenUrl String

    (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
    registrationEnabled Boolean

    (Updatable) Whether registration is enabled

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    relayIdpParamMappings List<Property Map>

    (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
    resourceTypeSchemaVersion String
    (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
    serviceProviderName String

    Service Provider Name

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: immutable
    • required: true
    • returned: default
    • type: string
    • uniqueness: none
    showOnLogin Boolean

    (Updatable) Whether show on login

    SCIM++ Properties:

    • caseExact: true
    • idcsSearchable: true
    • multiValued: false
    • mutability: readWrite
    • required: true
    • returned: default
    • type: boolean
    • uniqueness: none
    socialJitProvisioningEnabled 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
    tags 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
    tenancyOcid 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
    LastModified 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
    ResourceType 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
    LastModified 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
    ResourceType 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
    lastModified 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
    resourceType 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
    lastModified 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
    resourceType 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
    lastModified 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
    resourceType 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

    RelayParamKey string

    (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
    RelayParamValue string

    (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
    RelayParamKey string

    (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
    RelayParamValue string

    (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
    relayParamKey String

    (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
    relayParamValue String

    (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
    relayParamKey string

    (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
    relayParamValue string

    (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_key str

    (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_value str

    (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
    relayParamKey String

    (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
    relayParamValue String

    (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.
    oci logo
    Oracle Cloud Infrastructure v2.11.0 published on Thursday, Sep 19, 2024 by Pulumi