oci.Identity.DomainsRule
Explore with Pulumi AI
This resource provides the Rule resource in Oracle Cloud Infrastructure Identity Domains service.
Create a Rule.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testRule = new oci.identity.DomainsRule("test_rule", {
    condition: ruleCondition,
    idcsEndpoint: testDomain.url,
    name: ruleName,
    policyType: {
        value: "SignOn",
    },
    returns: [{
        name: ruleReturnName,
        value: ruleReturnValue,
        returnGroovy: ruleReturnReturnGroovy,
    }],
    schemas: ["urn:ietf:params:scim:schemas:oracle:idcs:Rule"],
    active: ruleActive,
    attributeSets: ["all"],
    attributes: "",
    authorization: ruleAuthorization,
    conditionGroup: {
        type: "Condition",
        value: ruleConditionGroupValue,
    },
    description: ruleDescription,
    externalId: "externalId",
    locked: ruleLocked,
    ocid: ruleOcid,
    resourceTypeSchemaVersion: ruleResourceTypeSchemaVersion,
    ruleGroovy: ruleRuleGroovy,
    tags: [{
        key: ruleTagsKey,
        value: ruleTagsValue,
    }],
});
import pulumi
import pulumi_oci as oci
test_rule = oci.identity.DomainsRule("test_rule",
    condition=rule_condition,
    idcs_endpoint=test_domain["url"],
    name=rule_name,
    policy_type={
        "value": "SignOn",
    },
    returns=[{
        "name": rule_return_name,
        "value": rule_return_value,
        "return_groovy": rule_return_return_groovy,
    }],
    schemas=["urn:ietf:params:scim:schemas:oracle:idcs:Rule"],
    active=rule_active,
    attribute_sets=["all"],
    attributes="",
    authorization=rule_authorization,
    condition_group={
        "type": "Condition",
        "value": rule_condition_group_value,
    },
    description=rule_description,
    external_id="externalId",
    locked=rule_locked,
    ocid=rule_ocid,
    resource_type_schema_version=rule_resource_type_schema_version,
    rule_groovy=rule_rule_groovy,
    tags=[{
        "key": rule_tags_key,
        "value": rule_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.NewDomainsRule(ctx, "test_rule", &identity.DomainsRuleArgs{
			Condition:    pulumi.Any(ruleCondition),
			IdcsEndpoint: pulumi.Any(testDomain.Url),
			Name:         pulumi.Any(ruleName),
			PolicyType: &identity.DomainsRulePolicyTypeArgs{
				Value: pulumi.String("SignOn"),
			},
			Returns: identity.DomainsRuleReturnArray{
				&identity.DomainsRuleReturnArgs{
					Name:         pulumi.Any(ruleReturnName),
					Value:        pulumi.Any(ruleReturnValue),
					ReturnGroovy: pulumi.Any(ruleReturnReturnGroovy),
				},
			},
			Schemas: pulumi.StringArray{
				pulumi.String("urn:ietf:params:scim:schemas:oracle:idcs:Rule"),
			},
			Active: pulumi.Any(ruleActive),
			AttributeSets: pulumi.StringArray{
				pulumi.String("all"),
			},
			Attributes:    pulumi.String(""),
			Authorization: pulumi.Any(ruleAuthorization),
			ConditionGroup: &identity.DomainsRuleConditionGroupArgs{
				Type:  pulumi.String("Condition"),
				Value: pulumi.Any(ruleConditionGroupValue),
			},
			Description:               pulumi.Any(ruleDescription),
			ExternalId:                pulumi.String("externalId"),
			Locked:                    pulumi.Any(ruleLocked),
			Ocid:                      pulumi.Any(ruleOcid),
			ResourceTypeSchemaVersion: pulumi.Any(ruleResourceTypeSchemaVersion),
			RuleGroovy:                pulumi.Any(ruleRuleGroovy),
			Tags: identity.DomainsRuleTagArray{
				&identity.DomainsRuleTagArgs{
					Key:   pulumi.Any(ruleTagsKey),
					Value: pulumi.Any(ruleTagsValue),
				},
			},
		})
		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 testRule = new Oci.Identity.DomainsRule("test_rule", new()
    {
        Condition = ruleCondition,
        IdcsEndpoint = testDomain.Url,
        Name = ruleName,
        PolicyType = new Oci.Identity.Inputs.DomainsRulePolicyTypeArgs
        {
            Value = "SignOn",
        },
        Returns = new[]
        {
            new Oci.Identity.Inputs.DomainsRuleReturnArgs
            {
                Name = ruleReturnName,
                Value = ruleReturnValue,
                ReturnGroovy = ruleReturnReturnGroovy,
            },
        },
        Schemas = new[]
        {
            "urn:ietf:params:scim:schemas:oracle:idcs:Rule",
        },
        Active = ruleActive,
        AttributeSets = new[]
        {
            "all",
        },
        Attributes = "",
        Authorization = ruleAuthorization,
        ConditionGroup = new Oci.Identity.Inputs.DomainsRuleConditionGroupArgs
        {
            Type = "Condition",
            Value = ruleConditionGroupValue,
        },
        Description = ruleDescription,
        ExternalId = "externalId",
        Locked = ruleLocked,
        Ocid = ruleOcid,
        ResourceTypeSchemaVersion = ruleResourceTypeSchemaVersion,
        RuleGroovy = ruleRuleGroovy,
        Tags = new[]
        {
            new Oci.Identity.Inputs.DomainsRuleTagArgs
            {
                Key = ruleTagsKey,
                Value = ruleTagsValue,
            },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Identity.DomainsRule;
import com.pulumi.oci.Identity.DomainsRuleArgs;
import com.pulumi.oci.Identity.inputs.DomainsRulePolicyTypeArgs;
import com.pulumi.oci.Identity.inputs.DomainsRuleReturnArgs;
import com.pulumi.oci.Identity.inputs.DomainsRuleConditionGroupArgs;
import com.pulumi.oci.Identity.inputs.DomainsRuleTagArgs;
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 testRule = new DomainsRule("testRule", DomainsRuleArgs.builder()
            .condition(ruleCondition)
            .idcsEndpoint(testDomain.url())
            .name(ruleName)
            .policyType(DomainsRulePolicyTypeArgs.builder()
                .value("SignOn")
                .build())
            .returns(DomainsRuleReturnArgs.builder()
                .name(ruleReturnName)
                .value(ruleReturnValue)
                .returnGroovy(ruleReturnReturnGroovy)
                .build())
            .schemas("urn:ietf:params:scim:schemas:oracle:idcs:Rule")
            .active(ruleActive)
            .attributeSets("all")
            .attributes("")
            .authorization(ruleAuthorization)
            .conditionGroup(DomainsRuleConditionGroupArgs.builder()
                .type("Condition")
                .value(ruleConditionGroupValue)
                .build())
            .description(ruleDescription)
            .externalId("externalId")
            .locked(ruleLocked)
            .ocid(ruleOcid)
            .resourceTypeSchemaVersion(ruleResourceTypeSchemaVersion)
            .ruleGroovy(ruleRuleGroovy)
            .tags(DomainsRuleTagArgs.builder()
                .key(ruleTagsKey)
                .value(ruleTagsValue)
                .build())
            .build());
    }
}
resources:
  testRule:
    type: oci:Identity:DomainsRule
    name: test_rule
    properties:
      condition: ${ruleCondition}
      idcsEndpoint: ${testDomain.url}
      name: ${ruleName}
      policyType:
        value: SignOn
      returns:
        - name: ${ruleReturnName}
          value: ${ruleReturnValue}
          returnGroovy: ${ruleReturnReturnGroovy}
      schemas:
        - urn:ietf:params:scim:schemas:oracle:idcs:Rule
      active: ${ruleActive}
      attributeSets:
        - all
      attributes: ""
      authorization: ${ruleAuthorization}
      conditionGroup:
        type: Condition
        value: ${ruleConditionGroupValue}
      description: ${ruleDescription}
      externalId: externalId
      locked: ${ruleLocked}
      ocid: ${ruleOcid}
      resourceTypeSchemaVersion: ${ruleResourceTypeSchemaVersion}
      ruleGroovy: ${ruleRuleGroovy}
      tags:
        - key: ${ruleTagsKey}
          value: ${ruleTagsValue}
Create DomainsRule Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DomainsRule(name: string, args: DomainsRuleArgs, opts?: CustomResourceOptions);@overload
def DomainsRule(resource_name: str,
                args: DomainsRuleArgs,
                opts: Optional[ResourceOptions] = None)
@overload
def DomainsRule(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                idcs_endpoint: Optional[str] = None,
                policy_type: Optional[DomainsRulePolicyTypeArgs] = None,
                schemas: Optional[Sequence[str]] = None,
                returns: Optional[Sequence[DomainsRuleReturnArgs]] = None,
                condition: Optional[str] = None,
                name: Optional[str] = None,
                description: Optional[str] = None,
                external_id: Optional[str] = None,
                attribute_sets: Optional[Sequence[str]] = None,
                active: Optional[bool] = None,
                locked: Optional[bool] = None,
                ocid: Optional[str] = None,
                condition_group: Optional[DomainsRuleConditionGroupArgs] = None,
                resource_type_schema_version: Optional[str] = None,
                authorization: Optional[str] = None,
                rule_groovy: Optional[str] = None,
                attributes: Optional[str] = None,
                tags: Optional[Sequence[DomainsRuleTagArgs]] = None)func NewDomainsRule(ctx *Context, name string, args DomainsRuleArgs, opts ...ResourceOption) (*DomainsRule, error)public DomainsRule(string name, DomainsRuleArgs args, CustomResourceOptions? opts = null)
public DomainsRule(String name, DomainsRuleArgs args)
public DomainsRule(String name, DomainsRuleArgs args, CustomResourceOptions options)
type: oci:Identity:DomainsRule
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 DomainsRuleArgs
- 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 DomainsRuleArgs
- 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 DomainsRuleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DomainsRuleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DomainsRuleArgs
- 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 domainsRuleResource = new Oci.Identity.DomainsRule("domainsRuleResource", new()
{
    IdcsEndpoint = "string",
    PolicyType = new Oci.Identity.Inputs.DomainsRulePolicyTypeArgs
    {
        Value = "string",
        Ref = "string",
    },
    Schemas = new[]
    {
        "string",
    },
    Returns = new[]
    {
        new Oci.Identity.Inputs.DomainsRuleReturnArgs
        {
            Name = "string",
            Value = "string",
            ReturnGroovy = "string",
        },
    },
    Condition = "string",
    Name = "string",
    Description = "string",
    ExternalId = "string",
    AttributeSets = new[]
    {
        "string",
    },
    Active = false,
    Locked = false,
    Ocid = "string",
    ConditionGroup = new Oci.Identity.Inputs.DomainsRuleConditionGroupArgs
    {
        Type = "string",
        Name = "string",
        Ref = "string",
        Value = "string",
    },
    ResourceTypeSchemaVersion = "string",
    Authorization = "string",
    RuleGroovy = "string",
    Attributes = "string",
    Tags = new[]
    {
        new Oci.Identity.Inputs.DomainsRuleTagArgs
        {
            Key = "string",
            Value = "string",
        },
    },
});
example, err := identity.NewDomainsRule(ctx, "domainsRuleResource", &identity.DomainsRuleArgs{
	IdcsEndpoint: pulumi.String("string"),
	PolicyType: &identity.DomainsRulePolicyTypeArgs{
		Value: pulumi.String("string"),
		Ref:   pulumi.String("string"),
	},
	Schemas: pulumi.StringArray{
		pulumi.String("string"),
	},
	Returns: identity.DomainsRuleReturnArray{
		&identity.DomainsRuleReturnArgs{
			Name:         pulumi.String("string"),
			Value:        pulumi.String("string"),
			ReturnGroovy: pulumi.String("string"),
		},
	},
	Condition:   pulumi.String("string"),
	Name:        pulumi.String("string"),
	Description: pulumi.String("string"),
	ExternalId:  pulumi.String("string"),
	AttributeSets: pulumi.StringArray{
		pulumi.String("string"),
	},
	Active: pulumi.Bool(false),
	Locked: pulumi.Bool(false),
	Ocid:   pulumi.String("string"),
	ConditionGroup: &identity.DomainsRuleConditionGroupArgs{
		Type:  pulumi.String("string"),
		Name:  pulumi.String("string"),
		Ref:   pulumi.String("string"),
		Value: pulumi.String("string"),
	},
	ResourceTypeSchemaVersion: pulumi.String("string"),
	Authorization:             pulumi.String("string"),
	RuleGroovy:                pulumi.String("string"),
	Attributes:                pulumi.String("string"),
	Tags: identity.DomainsRuleTagArray{
		&identity.DomainsRuleTagArgs{
			Key:   pulumi.String("string"),
			Value: pulumi.String("string"),
		},
	},
})
var domainsRuleResource = new DomainsRule("domainsRuleResource", DomainsRuleArgs.builder()
    .idcsEndpoint("string")
    .policyType(DomainsRulePolicyTypeArgs.builder()
        .value("string")
        .ref("string")
        .build())
    .schemas("string")
    .returns(DomainsRuleReturnArgs.builder()
        .name("string")
        .value("string")
        .returnGroovy("string")
        .build())
    .condition("string")
    .name("string")
    .description("string")
    .externalId("string")
    .attributeSets("string")
    .active(false)
    .locked(false)
    .ocid("string")
    .conditionGroup(DomainsRuleConditionGroupArgs.builder()
        .type("string")
        .name("string")
        .ref("string")
        .value("string")
        .build())
    .resourceTypeSchemaVersion("string")
    .authorization("string")
    .ruleGroovy("string")
    .attributes("string")
    .tags(DomainsRuleTagArgs.builder()
        .key("string")
        .value("string")
        .build())
    .build());
domains_rule_resource = oci.identity.DomainsRule("domainsRuleResource",
    idcs_endpoint="string",
    policy_type={
        "value": "string",
        "ref": "string",
    },
    schemas=["string"],
    returns=[{
        "name": "string",
        "value": "string",
        "return_groovy": "string",
    }],
    condition="string",
    name="string",
    description="string",
    external_id="string",
    attribute_sets=["string"],
    active=False,
    locked=False,
    ocid="string",
    condition_group={
        "type": "string",
        "name": "string",
        "ref": "string",
        "value": "string",
    },
    resource_type_schema_version="string",
    authorization="string",
    rule_groovy="string",
    attributes="string",
    tags=[{
        "key": "string",
        "value": "string",
    }])
const domainsRuleResource = new oci.identity.DomainsRule("domainsRuleResource", {
    idcsEndpoint: "string",
    policyType: {
        value: "string",
        ref: "string",
    },
    schemas: ["string"],
    returns: [{
        name: "string",
        value: "string",
        returnGroovy: "string",
    }],
    condition: "string",
    name: "string",
    description: "string",
    externalId: "string",
    attributeSets: ["string"],
    active: false,
    locked: false,
    ocid: "string",
    conditionGroup: {
        type: "string",
        name: "string",
        ref: "string",
        value: "string",
    },
    resourceTypeSchemaVersion: "string",
    authorization: "string",
    ruleGroovy: "string",
    attributes: "string",
    tags: [{
        key: "string",
        value: "string",
    }],
});
type: oci:Identity:DomainsRule
properties:
    active: false
    attributeSets:
        - string
    attributes: string
    authorization: string
    condition: string
    conditionGroup:
        name: string
        ref: string
        type: string
        value: string
    description: string
    externalId: string
    idcsEndpoint: string
    locked: false
    name: string
    ocid: string
    policyType:
        ref: string
        value: string
    resourceTypeSchemaVersion: string
    returns:
        - name: string
          returnGroovy: string
          value: string
    ruleGroovy: string
    schemas:
        - string
    tags:
        - key: string
          value: string
DomainsRule Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The DomainsRule resource accepts the following input properties:
- Condition string
- (Updatable) SCIM filters - Deprecated Since: 17.3.4 - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- IdcsEndpoint string
- The basic endpoint for the identity domain
- PolicyType DomainsRule Policy Type 
- (Updatable) PolicyType on which the policy is based - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- Returns
List<DomainsRule Return> 
- (Updatable) The return values are the then portion of a Rule - SCIM++ Properties: - idcsCompositeKey: [name]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: complex
- 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
 
- Active bool
- (Updatable) If true, rule is active - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- AttributeSets List<string>
- (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
- (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- 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.
- ConditionGroup DomainsRule Condition Group 
- (Updatable) Condition or ConditionGroup assigned to the rule - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- Description string
- (Updatable) Rule Description - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ExternalId string
- (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued be the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Locked bool
- (Updatable) Shows if the rule is locked - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- Name string
- (Updatable) Rule name - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: none
 
- 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
 
- ResourceType stringSchema Version 
- (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- RuleGroovy string
- (Updatable) The Groovy script that is run instead of the rule, if policy type allows the rule to be a Groovy script. - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
List<DomainsRule Tag> 
- (Updatable) A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
 
- Condition string
- (Updatable) SCIM filters - Deprecated Since: 17.3.4 - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- IdcsEndpoint string
- The basic endpoint for the identity domain
- PolicyType DomainsRule Policy Type Args 
- (Updatable) PolicyType on which the policy is based - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- Returns
[]DomainsRule Return Args 
- (Updatable) The return values are the then portion of a Rule - SCIM++ Properties: - idcsCompositeKey: [name]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: complex
- 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
 
- Active bool
- (Updatable) If true, rule is active - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- AttributeSets []string
- (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
- (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- 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.
- ConditionGroup DomainsRule Condition Group Args 
- (Updatable) Condition or ConditionGroup assigned to the rule - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- Description string
- (Updatable) Rule Description - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ExternalId string
- (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued be the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Locked bool
- (Updatable) Shows if the rule is locked - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- Name string
- (Updatable) Rule name - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: none
 
- 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
 
- ResourceType stringSchema Version 
- (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- RuleGroovy string
- (Updatable) The Groovy script that is run instead of the rule, if policy type allows the rule to be a Groovy script. - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
[]DomainsRule Tag Args 
- (Updatable) A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
 
- condition String
- (Updatable) SCIM filters - Deprecated Since: 17.3.4 - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- idcsEndpoint String
- The basic endpoint for the identity domain
- policyType DomainsRule Policy Type 
- (Updatable) PolicyType on which the policy is based - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- returns
List<DomainsRule Return> 
- (Updatable) The return values are the then portion of a Rule - SCIM++ Properties: - idcsCompositeKey: [name]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: complex
- 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
 
- active Boolean
- (Updatable) If true, rule is active - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- attributeSets List<String>
- (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
- (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- 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.
- conditionGroup DomainsRule Condition Group 
- (Updatable) Condition or ConditionGroup assigned to the rule - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- description String
- (Updatable) Rule Description - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- externalId String
- (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued be the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- locked Boolean
- (Updatable) Shows if the rule is locked - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- name String
- (Updatable) Rule name - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: none
 
- 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
 
- resourceType StringSchema Version 
- (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- ruleGroovy String
- (Updatable) The Groovy script that is run instead of the rule, if policy type allows the rule to be a Groovy script. - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
List<DomainsRule Tag> 
- (Updatable) A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
 
- condition string
- (Updatable) SCIM filters - Deprecated Since: 17.3.4 - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- idcsEndpoint string
- The basic endpoint for the identity domain
- policyType DomainsRule Policy Type 
- (Updatable) PolicyType on which the policy is based - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- returns
DomainsRule Return[] 
- (Updatable) The return values are the then portion of a Rule - SCIM++ Properties: - idcsCompositeKey: [name]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: complex
- 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
 
- active boolean
- (Updatable) If true, rule is active - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- attributeSets string[]
- (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes string
- (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- 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.
- conditionGroup DomainsRule Condition Group 
- (Updatable) Condition or ConditionGroup assigned to the rule - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- description string
- (Updatable) Rule Description - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- externalId string
- (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued be the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- locked boolean
- (Updatable) Shows if the rule is locked - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- name string
- (Updatable) Rule name - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: none
 
- 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
 
- resourceType stringSchema Version 
- (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- ruleGroovy string
- (Updatable) The Groovy script that is run instead of the rule, if policy type allows the rule to be a Groovy script. - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
DomainsRule Tag[] 
- (Updatable) A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
 
- condition str
- (Updatable) SCIM filters - Deprecated Since: 17.3.4 - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- idcs_endpoint str
- The basic endpoint for the identity domain
- policy_type DomainsRule Policy Type Args 
- (Updatable) PolicyType on which the policy is based - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- returns
Sequence[DomainsRule Return Args] 
- (Updatable) The return values are the then portion of a Rule - SCIM++ Properties: - idcsCompositeKey: [name]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: complex
- 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
 
- active bool
- (Updatable) If true, rule is active - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- attribute_sets Sequence[str]
- (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes str
- (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- 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.
- condition_group DomainsRule Condition Group Args 
- (Updatable) Condition or ConditionGroup assigned to the rule - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- description str
- (Updatable) Rule Description - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- external_id str
- (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued be the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- locked bool
- (Updatable) Shows if the rule is locked - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- name str
- (Updatable) Rule name - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: none
 
- 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
 
- resource_type_ strschema_ version 
- (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- rule_groovy str
- (Updatable) The Groovy script that is run instead of the rule, if policy type allows the rule to be a Groovy script. - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- 
Sequence[DomainsRule Tag Args] 
- (Updatable) A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.value]]
- idcsSearchable: true
- multiValued: true
- mutability: readWrite
- required: false
- returned: request
- type: complex
- uniqueness: none
 
- condition String
- (Updatable) SCIM filters - Deprecated Since: 17.3.4 - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- idcsEndpoint String
- The basic endpoint for the identity domain
- policyType Property Map
- (Updatable) PolicyType on which the policy is based - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- returns List<Property Map>
- (Updatable) The return values are the then portion of a Rule - SCIM++ Properties: - idcsCompositeKey: [name]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: complex
- 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
 
- active Boolean
- (Updatable) If true, rule is active - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- attributeSets List<String>
- (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
- (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- 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.
- conditionGroup Property Map
- (Updatable) Condition or ConditionGroup assigned to the rule - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- description String
- (Updatable) Rule Description - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- externalId String
- (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued be the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- locked Boolean
- (Updatable) Shows if the rule is locked - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- name String
- (Updatable) Rule name - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: none
 
- 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
 
- resourceType StringSchema Version 
- (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- ruleGroovy String
- (Updatable) The Groovy script that is run instead of the rule, if policy type allows the rule to be a Groovy script. - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- List<Property Map>
- (Updatable) A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.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 DomainsRule 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
 
- DeleteIn boolProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- 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.
- IdcsCreated List<DomainsBies Rule Idcs Created By> 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- IdcsLast List<DomainsModified Bies Rule Idcs Last Modified By> 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- IdcsLast stringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- IdcsPrevented List<string>Operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- Metas
List<DomainsRule Meta> 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- 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
 
- DeleteIn boolProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- 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.
- IdcsCreated []DomainsBies Rule Idcs Created By 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- IdcsLast []DomainsModified Bies Rule Idcs Last Modified By 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- IdcsLast stringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- IdcsPrevented []stringOperations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- Metas
[]DomainsRule Meta 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- 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
 
- deleteIn BooleanProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- 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.
- idcsCreated List<DomainsBies Rule Idcs Created By> 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- idcsLast List<DomainsModified Bies Rule Idcs Last Modified By> 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- idcsLast StringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- idcsPrevented List<String>Operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- metas
List<DomainsRule Meta> 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- 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
 
- deleteIn booleanProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- 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.
- idcsCreated DomainsBies Rule Idcs Created By[] 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- idcsLast DomainsModified Bies Rule Idcs Last Modified By[] 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- idcsLast stringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- idcsPrevented string[]Operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- metas
DomainsRule Meta[] 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- 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_ boolprogress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- domain_ocid str
- (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- id str
- The provider-assigned unique ID for this managed resource.
- idcs_created_ Sequence[Domainsbies Rule Idcs Created By] 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- idcs_last_ Sequence[Domainsmodified_ bies Rule Idcs Last Modified By] 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- idcs_last_ strupgraded_ in_ release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- idcs_prevented_ Sequence[str]operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- metas
Sequence[DomainsRule Meta] 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- tenancy_ocid str
- (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 - ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values 
- 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
 
- deleteIn BooleanProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- 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.
- idcsCreated List<Property Map>Bies 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- idcsLast List<Property Map>Modified Bies 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- idcsLast StringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- idcsPrevented List<String>Operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- metas List<Property Map>
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- 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 DomainsRule Resource
Get an existing DomainsRule 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?: DomainsRuleState, opts?: CustomResourceOptions): DomainsRule@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        active: Optional[bool] = None,
        attribute_sets: Optional[Sequence[str]] = None,
        attributes: Optional[str] = None,
        authorization: Optional[str] = None,
        compartment_ocid: Optional[str] = None,
        condition: Optional[str] = None,
        condition_group: Optional[DomainsRuleConditionGroupArgs] = None,
        delete_in_progress: Optional[bool] = None,
        description: Optional[str] = None,
        domain_ocid: Optional[str] = None,
        external_id: Optional[str] = None,
        idcs_created_bies: Optional[Sequence[DomainsRuleIdcsCreatedByArgs]] = None,
        idcs_endpoint: Optional[str] = None,
        idcs_last_modified_bies: Optional[Sequence[DomainsRuleIdcsLastModifiedByArgs]] = None,
        idcs_last_upgraded_in_release: Optional[str] = None,
        idcs_prevented_operations: Optional[Sequence[str]] = None,
        locked: Optional[bool] = None,
        metas: Optional[Sequence[DomainsRuleMetaArgs]] = None,
        name: Optional[str] = None,
        ocid: Optional[str] = None,
        policy_type: Optional[DomainsRulePolicyTypeArgs] = None,
        resource_type_schema_version: Optional[str] = None,
        returns: Optional[Sequence[DomainsRuleReturnArgs]] = None,
        rule_groovy: Optional[str] = None,
        schemas: Optional[Sequence[str]] = None,
        tags: Optional[Sequence[DomainsRuleTagArgs]] = None,
        tenancy_ocid: Optional[str] = None) -> DomainsRulefunc GetDomainsRule(ctx *Context, name string, id IDInput, state *DomainsRuleState, opts ...ResourceOption) (*DomainsRule, error)public static DomainsRule Get(string name, Input<string> id, DomainsRuleState? state, CustomResourceOptions? opts = null)public static DomainsRule get(String name, Output<String> id, DomainsRuleState state, CustomResourceOptions options)resources:  _:    type: oci:Identity:DomainsRule    get:      id: ${id}- 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.
- Active bool
- (Updatable) If true, rule is active - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- AttributeSets List<string>
- (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
- (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- 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.
- 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
 
- Condition string
- (Updatable) SCIM filters - Deprecated Since: 17.3.4 - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- ConditionGroup DomainsRule Condition Group 
- (Updatable) Condition or ConditionGroup assigned to the rule - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- DeleteIn boolProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- Description string
- (Updatable) Rule Description - SCIM++ Properties: - 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
 
- ExternalId string
- (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued be the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- IdcsCreated List<DomainsBies Rule Idcs Created By> 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- IdcsEndpoint string
- The basic endpoint for the identity domain
- IdcsLast List<DomainsModified Bies Rule Idcs Last Modified By> 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- IdcsLast stringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- IdcsPrevented List<string>Operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- Locked bool
- (Updatable) Shows if the rule is locked - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- Metas
List<DomainsRule Meta> 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- Name string
- (Updatable) Rule name - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: none
 
- 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
 
- PolicyType DomainsRule Policy Type 
- (Updatable) PolicyType on which the policy is based - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- ResourceType stringSchema Version 
- (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- Returns
List<DomainsRule Return> 
- (Updatable) The return values are the then portion of a Rule - SCIM++ Properties: - idcsCompositeKey: [name]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- RuleGroovy string
- (Updatable) The Groovy script that is run instead of the rule, if policy type allows the rule to be a Groovy script. - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- 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
 
- 
List<DomainsRule Tag> 
- (Updatable) A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.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 
- Active bool
- (Updatable) If true, rule is active - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- AttributeSets []string
- (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
- (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- 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.
- 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
 
- Condition string
- (Updatable) SCIM filters - Deprecated Since: 17.3.4 - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- ConditionGroup DomainsRule Condition Group Args 
- (Updatable) Condition or ConditionGroup assigned to the rule - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- DeleteIn boolProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- Description string
- (Updatable) Rule Description - SCIM++ Properties: - 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
 
- ExternalId string
- (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued be the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- IdcsCreated []DomainsBies Rule Idcs Created By Args 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- IdcsEndpoint string
- The basic endpoint for the identity domain
- IdcsLast []DomainsModified Bies Rule Idcs Last Modified By Args 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- IdcsLast stringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- IdcsPrevented []stringOperations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- Locked bool
- (Updatable) Shows if the rule is locked - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- Metas
[]DomainsRule Meta Args 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- Name string
- (Updatable) Rule name - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: none
 
- 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
 
- PolicyType DomainsRule Policy Type Args 
- (Updatable) PolicyType on which the policy is based - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- ResourceType stringSchema Version 
- (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- Returns
[]DomainsRule Return Args 
- (Updatable) The return values are the then portion of a Rule - SCIM++ Properties: - idcsCompositeKey: [name]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- RuleGroovy string
- (Updatable) The Groovy script that is run instead of the rule, if policy type allows the rule to be a Groovy script. - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- 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
 
- 
[]DomainsRule Tag Args 
- (Updatable) A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.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 
- active Boolean
- (Updatable) If true, rule is active - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- attributeSets List<String>
- (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
- (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- 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.
- 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
 
- condition String
- (Updatable) SCIM filters - Deprecated Since: 17.3.4 - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- conditionGroup DomainsRule Condition Group 
- (Updatable) Condition or ConditionGroup assigned to the rule - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- deleteIn BooleanProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- description String
- (Updatable) Rule Description - SCIM++ Properties: - 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
 
- externalId String
- (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued be the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- idcsCreated List<DomainsBies Rule Idcs Created By> 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- idcsEndpoint String
- The basic endpoint for the identity domain
- idcsLast List<DomainsModified Bies Rule Idcs Last Modified By> 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- idcsLast StringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- idcsPrevented List<String>Operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- locked Boolean
- (Updatable) Shows if the rule is locked - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- metas
List<DomainsRule Meta> 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- name String
- (Updatable) Rule name - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: none
 
- 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
 
- policyType DomainsRule Policy Type 
- (Updatable) PolicyType on which the policy is based - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- resourceType StringSchema Version 
- (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- returns
List<DomainsRule Return> 
- (Updatable) The return values are the then portion of a Rule - SCIM++ Properties: - idcsCompositeKey: [name]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- ruleGroovy String
- (Updatable) The Groovy script that is run instead of the rule, if policy type allows the rule to be a Groovy script. - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- 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
 
- 
List<DomainsRule Tag> 
- (Updatable) A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.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 
- active boolean
- (Updatable) If true, rule is active - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- attributeSets string[]
- (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes string
- (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- 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.
- 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
 
- condition string
- (Updatable) SCIM filters - Deprecated Since: 17.3.4 - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- conditionGroup DomainsRule Condition Group 
- (Updatable) Condition or ConditionGroup assigned to the rule - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- deleteIn booleanProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- description string
- (Updatable) Rule Description - SCIM++ Properties: - 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
 
- externalId string
- (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued be the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- idcsCreated DomainsBies Rule Idcs Created By[] 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- idcsEndpoint string
- The basic endpoint for the identity domain
- idcsLast DomainsModified Bies Rule Idcs Last Modified By[] 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- idcsLast stringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- idcsPrevented string[]Operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- locked boolean
- (Updatable) Shows if the rule is locked - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- metas
DomainsRule Meta[] 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- name string
- (Updatable) Rule name - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: none
 
- 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
 
- policyType DomainsRule Policy Type 
- (Updatable) PolicyType on which the policy is based - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- resourceType stringSchema Version 
- (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- returns
DomainsRule Return[] 
- (Updatable) The return values are the then portion of a Rule - SCIM++ Properties: - idcsCompositeKey: [name]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- ruleGroovy string
- (Updatable) The Groovy script that is run instead of the rule, if policy type allows the rule to be a Groovy script. - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- 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
 
- 
DomainsRule Tag[] 
- (Updatable) A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.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 
- active bool
- (Updatable) If true, rule is active - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- attribute_sets Sequence[str]
- (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes str
- (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- 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.
- 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
 
- condition str
- (Updatable) SCIM filters - Deprecated Since: 17.3.4 - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- condition_group DomainsRule Condition Group Args 
- (Updatable) Condition or ConditionGroup assigned to the rule - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- delete_in_ boolprogress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- description str
- (Updatable) Rule Description - SCIM++ Properties: - 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
 
- external_id str
- (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued be the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- idcs_created_ Sequence[Domainsbies Rule Idcs Created By Args] 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- idcs_endpoint str
- The basic endpoint for the identity domain
- idcs_last_ Sequence[Domainsmodified_ bies Rule Idcs Last Modified By Args] 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- idcs_last_ strupgraded_ in_ release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- idcs_prevented_ Sequence[str]operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- locked bool
- (Updatable) Shows if the rule is locked - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- metas
Sequence[DomainsRule Meta Args] 
- (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]]
- type: complex
 
- name str
- (Updatable) Rule name - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: none
 
- 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
 
- policy_type DomainsRule Policy Type Args 
- (Updatable) PolicyType on which the policy is based - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- resource_type_ strschema_ version 
- (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- returns
Sequence[DomainsRule Return Args] 
- (Updatable) The return values are the then portion of a Rule - SCIM++ Properties: - idcsCompositeKey: [name]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- rule_groovy str
- (Updatable) The Groovy script that is run instead of the rule, if policy type allows the rule to be a Groovy script. - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- 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
 
- 
Sequence[DomainsRule Tag Args] 
- (Updatable) A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.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 
- active Boolean
- (Updatable) If true, rule is active - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- attributeSets List<String>
- (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
- (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- 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.
- 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
 
- condition String
- (Updatable) SCIM filters - Deprecated Since: 17.3.4 - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- conditionGroup Property Map
- (Updatable) Condition or ConditionGroup assigned to the rule - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: complex
- uniqueness: none
 
- deleteIn BooleanProgress 
- (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: boolean
- uniqueness: none
 
- description String
- (Updatable) Rule Description - SCIM++ Properties: - 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
 
- externalId String
- (Updatable) An identifier for the Resource as defined by the Service Consumer. The externalId may simplify identification of the Resource between Service Consumer and Service provider by allowing the Consumer to refer to the Resource with its own identifier, obviating the need to store a local mapping between the local identifier of the Resource and the identifier used by the Service Provider. Each Resource MAY include a non-empty externalId value. The value of the externalId attribute is always issued be the Service Consumer and can never be specified by the Service Provider. The Service Provider MUST always interpret the externalId as scoped to the Service Consumer's tenant. - SCIM++ Properties: - caseExact: false
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- idcsCreated List<Property Map>Bies 
- (Updatable) The User or App who created the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: true
- returned: default
- type: complex
 
- idcsEndpoint String
- The basic endpoint for the identity domain
- idcsLast List<Property Map>Modified Bies 
- (Updatable) The User or App who modified the Resource - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: complex
 
- idcsLast StringUpgraded In Release 
- (Updatable) The release number when the resource was upgraded. - SCIM++ Properties: - caseExact: false
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- idcsPrevented List<String>Operations 
- (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. - SCIM++ Properties: - idcsSearchable: false
- multiValued: true
- mutability: readOnly
- required: false
- returned: request
- type: string
- uniqueness: none
 
- locked Boolean
- (Updatable) Shows if the rule is locked - SCIM++ Properties: - idcsSearchable: true
- 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) Rule name - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: true
- returned: always
- type: string
- uniqueness: none
 
- 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
 
- policyType Property Map
- (Updatable) PolicyType on which the policy is based - SCIM++ Properties: - idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- resourceType StringSchema Version 
- (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- returns List<Property Map>
- (Updatable) The return values are the then portion of a Rule - SCIM++ Properties: - idcsCompositeKey: [name]
- idcsSearchable: false
- multiValued: true
- mutability: readWrite
- required: true
- returned: default
- type: complex
- uniqueness: none
 
- ruleGroovy String
- (Updatable) The Groovy script that is run instead of the rule, if policy type allows the rule to be a Groovy script. - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- 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
 
- List<Property Map>
- (Updatable) A list of tags on this resource. - SCIM++ Properties: - idcsCompositeKey: [key, value]
- idcsCsvAttributeNameMappings: [[columnHeaderName:Tag Key, mapsTo:tags.key], [columnHeaderName:Tag Value, mapsTo:tags.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
DomainsRuleConditionGroup, DomainsRuleConditionGroupArgs        
- Type string
- (Updatable) A label that indicates whether this is Condition or ConditionGroup. - SCIM++ Properties: - idcsDefaultValue: Condition
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Name string
- (Updatable) Condition or ConditionGroup name - Added In: 17.4.2 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Ref string
- (Updatable) ConditionGroup URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- Value string
- (Updatable) Condition or ConditionGroup identifier. - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Type string
- (Updatable) A label that indicates whether this is Condition or ConditionGroup. - SCIM++ Properties: - idcsDefaultValue: Condition
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Name string
- (Updatable) Condition or ConditionGroup name - Added In: 17.4.2 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Ref string
- (Updatable) ConditionGroup URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- Value string
- (Updatable) Condition or ConditionGroup identifier. - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- type String
- (Updatable) A label that indicates whether this is Condition or ConditionGroup. - SCIM++ Properties: - idcsDefaultValue: Condition
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- name String
- (Updatable) Condition or ConditionGroup name - Added In: 17.4.2 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ref String
- (Updatable) ConditionGroup URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- value String
- (Updatable) Condition or ConditionGroup identifier. - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- type string
- (Updatable) A label that indicates whether this is Condition or ConditionGroup. - SCIM++ Properties: - idcsDefaultValue: Condition
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- name string
- (Updatable) Condition or ConditionGroup name - Added In: 17.4.2 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ref string
- (Updatable) ConditionGroup URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- value string
- (Updatable) Condition or ConditionGroup identifier. - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- type str
- (Updatable) A label that indicates whether this is Condition or ConditionGroup. - SCIM++ Properties: - idcsDefaultValue: Condition
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- name str
- (Updatable) Condition or ConditionGroup name - Added In: 17.4.2 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ref str
- (Updatable) ConditionGroup URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- value str
- (Updatable) Condition or ConditionGroup identifier. - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- type String
- (Updatable) A label that indicates whether this is Condition or ConditionGroup. - SCIM++ Properties: - idcsDefaultValue: Condition
- idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- name String
- (Updatable) Condition or ConditionGroup name - Added In: 17.4.2 - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: string
- uniqueness: none
 
- ref String
- (Updatable) ConditionGroup URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- value String
- (Updatable) Condition or ConditionGroup identifier. - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
DomainsRuleIdcsCreatedBy, DomainsRuleIdcsCreatedByArgs          
- 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
- (Updatable) The URI of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- 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
- (Updatable) The URI of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- 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
- (Updatable) The URI of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- 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
- (Updatable) The URI of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- 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
- (Updatable) The URI of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- 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
- (Updatable) The URI of the SCIM resource that represents the User or App who created this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- 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
 
DomainsRuleIdcsLastModifiedBy, DomainsRuleIdcsLastModifiedByArgs            
- 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
- (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- 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
- (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- 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
- (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- 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
- (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- 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
- (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- 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
- (Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource - SCIM++ Properties: - caseExact: true
- idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- 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
 
DomainsRuleMeta, DomainsRuleMetaArgs      
- 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
 
DomainsRulePolicyType, DomainsRulePolicyTypeArgs        
- Value string
- (Updatable) PolicyType identifier - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Ref string
- (Updatable) PolicyType URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- Value string
- (Updatable) PolicyType identifier - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Ref string
- (Updatable) PolicyType URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- value String
- (Updatable) PolicyType identifier - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- ref String
- (Updatable) PolicyType URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- value string
- (Updatable) PolicyType identifier - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- ref string
- (Updatable) PolicyType URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- value str
- (Updatable) PolicyType identifier - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- ref str
- (Updatable) PolicyType URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
- value String
- (Updatable) PolicyType identifier - SCIM++ Properties: - caseExact: true
- idcsSearchable: true
- multiValued: false
- mutability: immutable
- required: true
- returned: default
- type: string
- uniqueness: none
 
- ref String
- (Updatable) PolicyType URI - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readOnly
- required: false
- returned: default
- type: reference
- uniqueness: none
 
DomainsRuleReturn, DomainsRuleReturnArgs      
- Name string
- (Updatable) Attribute name of an individual value to be returned. - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Value string
- (Updatable) Attribute value of some attribute to be returned. - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- ReturnGroovy string
- (Updatable) The Groovy script that is run to generate output for the rule, if the policy type allows the return value to be a Groovy script. - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- Name string
- (Updatable) Attribute name of an individual value to be returned. - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- Value string
- (Updatable) Attribute value of some attribute to be returned. - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- ReturnGroovy string
- (Updatable) The Groovy script that is run to generate output for the rule, if the policy type allows the return value to be a Groovy script. - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- name String
- (Updatable) Attribute name of an individual value to be returned. - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- value String
- (Updatable) Attribute value of some attribute to be returned. - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- returnGroovy String
- (Updatable) The Groovy script that is run to generate output for the rule, if the policy type allows the return value to be a Groovy script. - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- name string
- (Updatable) Attribute name of an individual value to be returned. - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- value string
- (Updatable) Attribute value of some attribute to be returned. - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- returnGroovy string
- (Updatable) The Groovy script that is run to generate output for the rule, if the policy type allows the return value to be a Groovy script. - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- name str
- (Updatable) Attribute name of an individual value to be returned. - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- value str
- (Updatable) Attribute value of some attribute to be returned. - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- return_groovy str
- (Updatable) The Groovy script that is run to generate output for the rule, if the policy type allows the return value to be a Groovy script. - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
- name String
- (Updatable) Attribute name of an individual value to be returned. - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- value String
- (Updatable) Attribute value of some attribute to be returned. - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: true
- returned: default
- type: string
- uniqueness: none
 
- returnGroovy String
- (Updatable) The Groovy script that is run to generate output for the rule, if the policy type allows the return value to be a Groovy script. - SCIM++ Properties: - idcsSearchable: false
- multiValued: false
- mutability: readWrite
- required: false
- returned: default
- type: string
- uniqueness: none
 
DomainsRuleTag, DomainsRuleTagArgs      
- 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
Rules can be imported using the id, e.g.
$ pulumi import oci:Identity/domainsRule:DomainsRule test_rule "idcsEndpoint/{idcsEndpoint}/rules/{ruleId}"
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 ociTerraform Provider.