oci logo
Oracle Cloud Infrastructure v0.13.0, Mar 28 23

oci.Identity.DomainsGroup

This resource provides the Group resource in Oracle Cloud Infrastructure Identity Domains service.

Create a Group

Example Usage

Coming soon!

Coming soon!

package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Identity.DomainsGroup;
import com.pulumi.oci.Identity.DomainsGroupArgs;
import com.pulumi.oci.Identity.inputs.DomainsGroupMemberArgs;
import com.pulumi.oci.Identity.inputs.DomainsGroupTagArgs;
import com.pulumi.oci.Identity.inputs.DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs;
import com.pulumi.oci.Identity.inputs.DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupArgs;
import com.pulumi.oci.Identity.inputs.DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupArgs;
import com.pulumi.oci.Identity.inputs.DomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupArgs;
import com.pulumi.oci.Identity.inputs.DomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupArgs;
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 testGroup = new DomainsGroup("testGroup", DomainsGroupArgs.builder()        
            .displayName(var_.group_display_name())
            .idcsEndpoint(data.oci_identity_domain().test_domain().url())
            .schemas("urn:ietf:params:scim:schemas:core:2.0:Group")
            .attributeSets()
            .attributes("")
            .authorization(var_.group_authorization())
            .externalId("externalId")
            .id(var_.group_id())
            .members(DomainsGroupMemberArgs.builder()
                .type(var_.group_members_type())
                .value(var_.group_members_value())
                .ocid(var_.group_members_ocid())
                .build())
            .nonUniqueDisplayName(var_.group_non_unique_display_name())
            .ocid(var_.group_ocid())
            .resourceTypeSchemaVersion(var_.group_resource_type_schema_version())
            .tags(DomainsGroupTagArgs.builder()
                .key(var_.group_tags_key())
                .value(var_.group_tags_value())
                .build())
            .urnietfparamsscimschemasoracleidcsextensionOciTags(DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs.builder()
                .definedTags(DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsDefinedTagArgs.builder()
                    .key(var_.group_urnietfparamsscimschemasoracleidcsextension_oci_tags_defined_tags_key())
                    .namespace(var_.group_urnietfparamsscimschemasoracleidcsextension_oci_tags_defined_tags_namespace())
                    .value(var_.group_urnietfparamsscimschemasoracleidcsextension_oci_tags_defined_tags_value())
                    .build())
                .freeformTags(DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsFreeformTagArgs.builder()
                    .key(var_.group_urnietfparamsscimschemasoracleidcsextension_oci_tags_freeform_tags_key())
                    .value(var_.group_urnietfparamsscimschemasoracleidcsextension_oci_tags_freeform_tags_value())
                    .build())
                .build())
            .urnietfparamsscimschemasoracleidcsextensiondynamicGroup(DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupArgs.builder()
                .membershipRule(var_.group_urnietfparamsscimschemasoracleidcsextensiondynamic_group_membership_rule())
                .membershipType(var_.group_urnietfparamsscimschemasoracleidcsextensiondynamic_group_membership_type())
                .build())
            .urnietfparamsscimschemasoracleidcsextensiongroupGroup(DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupArgs.builder()
                .creationMechanism(var_.group_urnietfparamsscimschemasoracleidcsextensiongroup_group_creation_mechanism())
                .description(var_.group_urnietfparamsscimschemasoracleidcsextensiongroup_group_description())
                .owners(DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwnerArgs.builder()
                    .type(var_.group_urnietfparamsscimschemasoracleidcsextensiongroup_group_owners_type())
                    .value(var_.group_urnietfparamsscimschemasoracleidcsextensiongroup_group_owners_value())
                    .build())
                .build())
            .urnietfparamsscimschemasoracleidcsextensionposixGroup(DomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupArgs.builder()
                .gidNumber(var_.group_urnietfparamsscimschemasoracleidcsextensionposix_group_gid_number())
                .build())
            .urnietfparamsscimschemasoracleidcsextensionrequestableGroup(DomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupArgs.builder()
                .requestable(var_.group_urnietfparamsscimschemasoracleidcsextensionrequestable_group_requestable())
                .build())
            .build());

    }
}

Coming soon!

Coming soon!

resources:
  testGroup:
    type: oci:Identity:DomainsGroup
    properties:
      #Required
      displayName: ${var.group_display_name}
      idcsEndpoint: ${data.oci_identity_domain.test_domain.url}
      schemas:
        - urn:ietf:params:scim:schemas:core:2.0:Group
      #Optional
      attributeSets: []
      attributes:
      authorization: ${var.group_authorization}
      externalId: externalId
      id: ${var.group_id}
      members:
        - type: ${var.group_members_type}
          value: ${var.group_members_value}
          ocid: ${var.group_members_ocid}
      nonUniqueDisplayName: ${var.group_non_unique_display_name}
      ocid: ${var.group_ocid}
      resourceTypeSchemaVersion: ${var.group_resource_type_schema_version}
      tags:
        - key: ${var.group_tags_key}
          value: ${var.group_tags_value}
      urnietfparamsscimschemasoracleidcsextensionOciTags:
        definedTags:
          - key: ${var.group_urnietfparamsscimschemasoracleidcsextension_oci_tags_defined_tags_key}
            namespace: ${var.group_urnietfparamsscimschemasoracleidcsextension_oci_tags_defined_tags_namespace}
            value: ${var.group_urnietfparamsscimschemasoracleidcsextension_oci_tags_defined_tags_value}
        freeformTags:
          - key: ${var.group_urnietfparamsscimschemasoracleidcsextension_oci_tags_freeform_tags_key}
            value: ${var.group_urnietfparamsscimschemasoracleidcsextension_oci_tags_freeform_tags_value}
      urnietfparamsscimschemasoracleidcsextensiondynamicGroup:
        membershipRule: ${var.group_urnietfparamsscimschemasoracleidcsextensiondynamic_group_membership_rule}
        membershipType: ${var.group_urnietfparamsscimschemasoracleidcsextensiondynamic_group_membership_type}
      urnietfparamsscimschemasoracleidcsextensiongroupGroup:
        creationMechanism: ${var.group_urnietfparamsscimschemasoracleidcsextensiongroup_group_creation_mechanism}
        description: ${var.group_urnietfparamsscimschemasoracleidcsextensiongroup_group_description}
        owners:
          - type: ${var.group_urnietfparamsscimschemasoracleidcsextensiongroup_group_owners_type}
            value: ${var.group_urnietfparamsscimschemasoracleidcsextensiongroup_group_owners_value}
      urnietfparamsscimschemasoracleidcsextensionposixGroup:
        gidNumber: ${var.group_urnietfparamsscimschemasoracleidcsextensionposix_group_gid_number}
      urnietfparamsscimschemasoracleidcsextensionrequestableGroup:
        requestable: ${var.group_urnietfparamsscimschemasoracleidcsextensionrequestable_group_requestable}

Create DomainsGroup Resource

new DomainsGroup(name: string, args: DomainsGroupArgs, opts?: CustomResourceOptions);
@overload
def DomainsGroup(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 attribute_sets: Optional[Sequence[str]] = None,
                 attributes: Optional[str] = None,
                 authorization: Optional[str] = None,
                 display_name: Optional[str] = None,
                 external_id: Optional[str] = None,
                 idcs_endpoint: Optional[str] = None,
                 members: Optional[Sequence[_identity.DomainsGroupMemberArgs]] = None,
                 non_unique_display_name: Optional[str] = None,
                 ocid: Optional[str] = None,
                 resource_type_schema_version: Optional[str] = None,
                 schemas: Optional[Sequence[str]] = None,
                 tags: Optional[Sequence[_identity.DomainsGroupTagArgs]] = None,
                 urnietfparamsscimschemasoracleidcsextension_oci_tags: Optional[_identity.DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs] = None,
                 urnietfparamsscimschemasoracleidcsextensiondynamic_group: Optional[_identity.DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupArgs] = None,
                 urnietfparamsscimschemasoracleidcsextensiongroup_group: Optional[_identity.DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupArgs] = None,
                 urnietfparamsscimschemasoracleidcsextensionposix_group: Optional[_identity.DomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupArgs] = None,
                 urnietfparamsscimschemasoracleidcsextensionrequestable_group: Optional[_identity.DomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupArgs] = None)
@overload
def DomainsGroup(resource_name: str,
                 args: DomainsGroupArgs,
                 opts: Optional[ResourceOptions] = None)
func NewDomainsGroup(ctx *Context, name string, args DomainsGroupArgs, opts ...ResourceOption) (*DomainsGroup, error)
public DomainsGroup(string name, DomainsGroupArgs args, CustomResourceOptions? opts = null)
public DomainsGroup(String name, DomainsGroupArgs args)
public DomainsGroup(String name, DomainsGroupArgs args, CustomResourceOptions options)
type: oci:Identity:DomainsGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

name string
The unique name of the resource.
args DomainsGroupArgs
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 DomainsGroupArgs
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 DomainsGroupArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name string
The unique name of the resource.
args DomainsGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name String
The unique name of the resource.
args DomainsGroupArgs
The arguments to resource properties.
options CustomResourceOptions
Bag of options to control resource's behavior.

DomainsGroup Resource Properties

To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

Inputs

The DomainsGroup resource accepts the following input properties:

DisplayName string

(Updatable) Group display name

IdcsEndpoint string

The basic endpoint for the identity domain

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.

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.

Authorization string

(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

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 by 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.

Members List<DomainsGroupMemberArgs>

(Updatable) Group members - when requesting members attribute, a max of 10,000 members will be returned in a single request. It is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]

NonUniqueDisplayName string

(Updatable) A human readable name for Group as defined by the Service Consumer

Ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

ResourceTypeSchemaVersion string

(Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

Tags List<DomainsGroupTagArgs>

(Updatable) A list of tags on this resource.

UrnietfparamsscimschemasoracleidcsextensionOciTags DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

UrnietfparamsscimschemasoracleidcsextensiondynamicGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupArgs

(Updatable) Dynamic Group

UrnietfparamsscimschemasoracleidcsextensiongroupGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupArgs

(Updatable) Idcs Group

UrnietfparamsscimschemasoracleidcsextensionposixGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupArgs

(Updatable) POSIX Group extension

UrnietfparamsscimschemasoracleidcsextensionrequestableGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupArgs

(Updatable) Requestable Group

DisplayName string

(Updatable) Group display name

IdcsEndpoint string

The basic endpoint for the identity domain

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.

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.

Authorization string

(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

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 by 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.

Members []DomainsGroupMemberArgs

(Updatable) Group members - when requesting members attribute, a max of 10,000 members will be returned in a single request. It is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]

NonUniqueDisplayName string

(Updatable) A human readable name for Group as defined by the Service Consumer

Ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

ResourceTypeSchemaVersion string

(Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

Tags []DomainsGroupTagArgs

(Updatable) A list of tags on this resource.

UrnietfparamsscimschemasoracleidcsextensionOciTags DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

UrnietfparamsscimschemasoracleidcsextensiondynamicGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupArgs

(Updatable) Dynamic Group

UrnietfparamsscimschemasoracleidcsextensiongroupGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupArgs

(Updatable) Idcs Group

UrnietfparamsscimschemasoracleidcsextensionposixGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupArgs

(Updatable) POSIX Group extension

UrnietfparamsscimschemasoracleidcsextensionrequestableGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupArgs

(Updatable) Requestable Group

displayName String

(Updatable) Group display name

idcsEndpoint String

The basic endpoint for the identity domain

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.

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.

authorization String

(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

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 by 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.

members List<DomainsGroupMemberArgs>

(Updatable) Group members - when requesting members attribute, a max of 10,000 members will be returned in a single request. It is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]

nonUniqueDisplayName String

(Updatable) A human readable name for Group as defined by the Service Consumer

ocid String

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

resourceTypeSchemaVersion String

(Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

tags List<DomainsGroupTagArgs>

(Updatable) A list of tags on this resource.

urnietfparamsscimschemasoracleidcsextensionOciTags DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

urnietfparamsscimschemasoracleidcsextensiondynamicGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupArgs

(Updatable) Dynamic Group

urnietfparamsscimschemasoracleidcsextensiongroupGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupArgs

(Updatable) Idcs Group

urnietfparamsscimschemasoracleidcsextensionposixGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupArgs

(Updatable) POSIX Group extension

urnietfparamsscimschemasoracleidcsextensionrequestableGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupArgs

(Updatable) Requestable Group

displayName string

(Updatable) Group display name

idcsEndpoint string

The basic endpoint for the identity domain

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.

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.

authorization string

(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

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 by 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.

members DomainsGroupMemberArgs[]

(Updatable) Group members - when requesting members attribute, a max of 10,000 members will be returned in a single request. It is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]

nonUniqueDisplayName string

(Updatable) A human readable name for Group as defined by the Service Consumer

ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

resourceTypeSchemaVersion string

(Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

tags DomainsGroupTagArgs[]

(Updatable) A list of tags on this resource.

urnietfparamsscimschemasoracleidcsextensionOciTags DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

urnietfparamsscimschemasoracleidcsextensiondynamicGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupArgs

(Updatable) Dynamic Group

urnietfparamsscimschemasoracleidcsextensiongroupGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupArgs

(Updatable) Idcs Group

urnietfparamsscimschemasoracleidcsextensionposixGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupArgs

(Updatable) POSIX Group extension

urnietfparamsscimschemasoracleidcsextensionrequestableGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupArgs

(Updatable) Requestable Group

display_name str

(Updatable) Group display name

idcs_endpoint str

The basic endpoint for the identity domain

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.

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.

authorization str

(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

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 by 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.

members DomainsGroupMemberArgs]

(Updatable) Group members - when requesting members attribute, a max of 10,000 members will be returned in a single request. It is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]

non_unique_display_name str

(Updatable) A human readable name for Group as defined by the Service Consumer

ocid str

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

resource_type_schema_version str

(Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

tags DomainsGroupTagArgs]

(Updatable) A list of tags on this resource.

urnietfparamsscimschemasoracleidcsextension_oci_tags DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

urnietfparamsscimschemasoracleidcsextensiondynamic_group DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupArgs

(Updatable) Dynamic Group

urnietfparamsscimschemasoracleidcsextensiongroup_group DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupArgs

(Updatable) Idcs Group

urnietfparamsscimschemasoracleidcsextensionposix_group DomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupArgs

(Updatable) POSIX Group extension

urnietfparamsscimschemasoracleidcsextensionrequestable_group DomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupArgs

(Updatable) Requestable Group

displayName String

(Updatable) Group display name

idcsEndpoint String

The basic endpoint for the identity domain

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.

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.

authorization String

(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

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 by 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.

members List<Property Map>

(Updatable) Group members - when requesting members attribute, a max of 10,000 members will be returned in a single request. It is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]

nonUniqueDisplayName String

(Updatable) A human readable name for Group as defined by the Service Consumer

ocid String

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

resourceTypeSchemaVersion String

(Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

tags List<Property Map>

(Updatable) A list of tags on this resource.

urnietfparamsscimschemasoracleidcsextensionOciTags Property Map

(Updatable) Oracle Cloud Infrastructure Tags.

urnietfparamsscimschemasoracleidcsextensiondynamicGroup Property Map

(Updatable) Dynamic Group

urnietfparamsscimschemasoracleidcsextensiongroupGroup Property Map

(Updatable) Idcs Group

urnietfparamsscimschemasoracleidcsextensionposixGroup Property Map

(Updatable) POSIX Group extension

urnietfparamsscimschemasoracleidcsextensionrequestableGroup Property Map

(Updatable) Requestable Group

Outputs

All input properties are implicitly available as output properties. Additionally, the DomainsGroup resource produces the following output properties:

CompartmentOcid string

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

DeleteInProgress bool

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

DomainOcid string

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

Id string

The provider-assigned unique ID for this managed resource.

IdcsCreatedBies List<DomainsGroupIdcsCreatedBy>

(Updatable) The User or App who created the Resource

IdcsLastModifiedBies List<DomainsGroupIdcsLastModifiedBy>

(Updatable) The User or App who modified the Resource

IdcsLastUpgradedInRelease string

(Updatable) The release number when the resource was upgraded.

IdcsPreventedOperations List<string>

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

Metas List<DomainsGroupMeta>

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

TenancyOcid string

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

UrnietfparamsscimschemasoracleidcsextensiondbcsGroups List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroup>

(Updatable) Schema for Database Service Resource

CompartmentOcid string

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

DeleteInProgress bool

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

DomainOcid string

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

Id string

The provider-assigned unique ID for this managed resource.

IdcsCreatedBies []DomainsGroupIdcsCreatedBy

(Updatable) The User or App who created the Resource

IdcsLastModifiedBies []DomainsGroupIdcsLastModifiedBy

(Updatable) The User or App who modified the Resource

IdcsLastUpgradedInRelease string

(Updatable) The release number when the resource was upgraded.

IdcsPreventedOperations []string

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

Metas []DomainsGroupMeta

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

TenancyOcid string

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

UrnietfparamsscimschemasoracleidcsextensiondbcsGroups []DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroup

(Updatable) Schema for Database Service Resource

compartmentOcid String

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

deleteInProgress Boolean

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

domainOcid String

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

id String

The provider-assigned unique ID for this managed resource.

idcsCreatedBies List<DomainsGroupIdcsCreatedBy>

(Updatable) The User or App who created the Resource

idcsLastModifiedBies List<DomainsGroupIdcsLastModifiedBy>

(Updatable) The User or App who modified the Resource

idcsLastUpgradedInRelease String

(Updatable) The release number when the resource was upgraded.

idcsPreventedOperations List<String>

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

metas List<DomainsGroupMeta>

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

tenancyOcid String

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

urnietfparamsscimschemasoracleidcsextensiondbcsGroups List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroup>

(Updatable) Schema for Database Service Resource

compartmentOcid string

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

deleteInProgress boolean

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

domainOcid string

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

id string

The provider-assigned unique ID for this managed resource.

idcsCreatedBies DomainsGroupIdcsCreatedBy[]

(Updatable) The User or App who created the Resource

idcsLastModifiedBies DomainsGroupIdcsLastModifiedBy[]

(Updatable) The User or App who modified the Resource

idcsLastUpgradedInRelease string

(Updatable) The release number when the resource was upgraded.

idcsPreventedOperations string[]

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

metas DomainsGroupMeta[]

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

tenancyOcid string

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

urnietfparamsscimschemasoracleidcsextensiondbcsGroups DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroup[]

(Updatable) Schema for Database Service Resource

compartment_ocid str

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

delete_in_progress bool

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

domain_ocid str

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

id str

The provider-assigned unique ID for this managed resource.

idcs_created_bies DomainsGroupIdcsCreatedBy]

(Updatable) The User or App who created the Resource

idcs_last_modified_bies DomainsGroupIdcsLastModifiedBy]

(Updatable) The User or App who modified the Resource

idcs_last_upgraded_in_release str

(Updatable) The release number when the resource was upgraded.

idcs_prevented_operations Sequence[str]

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

metas DomainsGroupMeta]

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

tenancy_ocid str

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

urnietfparamsscimschemasoracleidcsextensiondbcs_groups DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroup]

(Updatable) Schema for Database Service Resource

compartmentOcid String

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

deleteInProgress Boolean

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

domainOcid String

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

id String

The provider-assigned unique ID for this managed resource.

idcsCreatedBies List<Property Map>

(Updatable) The User or App who created the Resource

idcsLastModifiedBies List<Property Map>

(Updatable) The User or App who modified the Resource

idcsLastUpgradedInRelease String

(Updatable) The release number when the resource was upgraded.

idcsPreventedOperations List<String>

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

metas List<Property Map>

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

tenancyOcid String

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

urnietfparamsscimschemasoracleidcsextensiondbcsGroups List<Property Map>

(Updatable) Schema for Database Service Resource

Look up Existing DomainsGroup Resource

Get an existing DomainsGroup 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?: DomainsGroupState, opts?: CustomResourceOptions): DomainsGroup
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        attribute_sets: Optional[Sequence[str]] = None,
        attributes: Optional[str] = None,
        authorization: Optional[str] = None,
        compartment_ocid: Optional[str] = None,
        delete_in_progress: Optional[bool] = None,
        display_name: Optional[str] = None,
        domain_ocid: Optional[str] = None,
        external_id: Optional[str] = None,
        idcs_created_bies: Optional[Sequence[_identity.DomainsGroupIdcsCreatedByArgs]] = None,
        idcs_endpoint: Optional[str] = None,
        idcs_last_modified_bies: Optional[Sequence[_identity.DomainsGroupIdcsLastModifiedByArgs]] = None,
        idcs_last_upgraded_in_release: Optional[str] = None,
        idcs_prevented_operations: Optional[Sequence[str]] = None,
        members: Optional[Sequence[_identity.DomainsGroupMemberArgs]] = None,
        metas: Optional[Sequence[_identity.DomainsGroupMetaArgs]] = None,
        non_unique_display_name: Optional[str] = None,
        ocid: Optional[str] = None,
        resource_type_schema_version: Optional[str] = None,
        schemas: Optional[Sequence[str]] = None,
        tags: Optional[Sequence[_identity.DomainsGroupTagArgs]] = None,
        tenancy_ocid: Optional[str] = None,
        urnietfparamsscimschemasoracleidcsextension_oci_tags: Optional[_identity.DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs] = None,
        urnietfparamsscimschemasoracleidcsextensiondbcs_groups: Optional[Sequence[_identity.DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupArgs]] = None,
        urnietfparamsscimschemasoracleidcsextensiondynamic_group: Optional[_identity.DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupArgs] = None,
        urnietfparamsscimschemasoracleidcsextensiongroup_group: Optional[_identity.DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupArgs] = None,
        urnietfparamsscimschemasoracleidcsextensionposix_group: Optional[_identity.DomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupArgs] = None,
        urnietfparamsscimschemasoracleidcsextensionrequestable_group: Optional[_identity.DomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupArgs] = None) -> DomainsGroup
func GetDomainsGroup(ctx *Context, name string, id IDInput, state *DomainsGroupState, opts ...ResourceOption) (*DomainsGroup, error)
public static DomainsGroup Get(string name, Input<string> id, DomainsGroupState? state, CustomResourceOptions? opts = null)
public static DomainsGroup get(String name, Output<String> id, DomainsGroupState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
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.

Authorization string

(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

CompartmentOcid string

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

DeleteInProgress bool

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

DisplayName string

(Updatable) Group display name

DomainOcid string

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

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 by 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.

IdcsCreatedBies List<DomainsGroupIdcsCreatedByArgs>

(Updatable) The User or App who created the Resource

IdcsEndpoint string

The basic endpoint for the identity domain

IdcsLastModifiedBies List<DomainsGroupIdcsLastModifiedByArgs>

(Updatable) The User or App who modified the Resource

IdcsLastUpgradedInRelease string

(Updatable) The release number when the resource was upgraded.

IdcsPreventedOperations List<string>

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

Members List<DomainsGroupMemberArgs>

(Updatable) Group members - when requesting members attribute, a max of 10,000 members will be returned in a single request. It is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]

Metas List<DomainsGroupMetaArgs>

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

NonUniqueDisplayName string

(Updatable) A human readable name for Group as defined by the Service Consumer

Ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

ResourceTypeSchemaVersion string

(Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

Schemas List<string>

(Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

Tags List<DomainsGroupTagArgs>

(Updatable) A list of tags on this resource.

TenancyOcid string

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

UrnietfparamsscimschemasoracleidcsextensionOciTags DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

UrnietfparamsscimschemasoracleidcsextensiondbcsGroups List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupArgs>

(Updatable) Schema for Database Service Resource

UrnietfparamsscimschemasoracleidcsextensiondynamicGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupArgs

(Updatable) Dynamic Group

UrnietfparamsscimschemasoracleidcsextensiongroupGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupArgs

(Updatable) Idcs Group

UrnietfparamsscimschemasoracleidcsextensionposixGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupArgs

(Updatable) POSIX Group extension

UrnietfparamsscimschemasoracleidcsextensionrequestableGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupArgs

(Updatable) Requestable Group

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.

Authorization string

(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

CompartmentOcid string

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

DeleteInProgress bool

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

DisplayName string

(Updatable) Group display name

DomainOcid string

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

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 by 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.

IdcsCreatedBies []DomainsGroupIdcsCreatedByArgs

(Updatable) The User or App who created the Resource

IdcsEndpoint string

The basic endpoint for the identity domain

IdcsLastModifiedBies []DomainsGroupIdcsLastModifiedByArgs

(Updatable) The User or App who modified the Resource

IdcsLastUpgradedInRelease string

(Updatable) The release number when the resource was upgraded.

IdcsPreventedOperations []string

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

Members []DomainsGroupMemberArgs

(Updatable) Group members - when requesting members attribute, a max of 10,000 members will be returned in a single request. It is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]

Metas []DomainsGroupMetaArgs

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

NonUniqueDisplayName string

(Updatable) A human readable name for Group as defined by the Service Consumer

Ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

ResourceTypeSchemaVersion string

(Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

Schemas []string

(Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

Tags []DomainsGroupTagArgs

(Updatable) A list of tags on this resource.

TenancyOcid string

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

UrnietfparamsscimschemasoracleidcsextensionOciTags DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

UrnietfparamsscimschemasoracleidcsextensiondbcsGroups []DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupArgs

(Updatable) Schema for Database Service Resource

UrnietfparamsscimschemasoracleidcsextensiondynamicGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupArgs

(Updatable) Dynamic Group

UrnietfparamsscimschemasoracleidcsextensiongroupGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupArgs

(Updatable) Idcs Group

UrnietfparamsscimschemasoracleidcsextensionposixGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupArgs

(Updatable) POSIX Group extension

UrnietfparamsscimschemasoracleidcsextensionrequestableGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupArgs

(Updatable) Requestable Group

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.

authorization String

(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

compartmentOcid String

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

deleteInProgress Boolean

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

displayName String

(Updatable) Group display name

domainOcid String

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

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 by 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.

idcsCreatedBies List<DomainsGroupIdcsCreatedByArgs>

(Updatable) The User or App who created the Resource

idcsEndpoint String

The basic endpoint for the identity domain

idcsLastModifiedBies List<DomainsGroupIdcsLastModifiedByArgs>

(Updatable) The User or App who modified the Resource

idcsLastUpgradedInRelease String

(Updatable) The release number when the resource was upgraded.

idcsPreventedOperations List<String>

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

members List<DomainsGroupMemberArgs>

(Updatable) Group members - when requesting members attribute, a max of 10,000 members will be returned in a single request. It is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]

metas List<DomainsGroupMetaArgs>

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

nonUniqueDisplayName String

(Updatable) A human readable name for Group as defined by the Service Consumer

ocid String

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

resourceTypeSchemaVersion String

(Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

schemas List<String>

(Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

tags List<DomainsGroupTagArgs>

(Updatable) A list of tags on this resource.

tenancyOcid String

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

urnietfparamsscimschemasoracleidcsextensionOciTags DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

urnietfparamsscimschemasoracleidcsextensiondbcsGroups List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupArgs>

(Updatable) Schema for Database Service Resource

urnietfparamsscimschemasoracleidcsextensiondynamicGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupArgs

(Updatable) Dynamic Group

urnietfparamsscimschemasoracleidcsextensiongroupGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupArgs

(Updatable) Idcs Group

urnietfparamsscimschemasoracleidcsextensionposixGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupArgs

(Updatable) POSIX Group extension

urnietfparamsscimschemasoracleidcsextensionrequestableGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupArgs

(Updatable) Requestable Group

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.

authorization string

(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

compartmentOcid string

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

deleteInProgress boolean

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

displayName string

(Updatable) Group display name

domainOcid string

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

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 by 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.

idcsCreatedBies DomainsGroupIdcsCreatedByArgs[]

(Updatable) The User or App who created the Resource

idcsEndpoint string

The basic endpoint for the identity domain

idcsLastModifiedBies DomainsGroupIdcsLastModifiedByArgs[]

(Updatable) The User or App who modified the Resource

idcsLastUpgradedInRelease string

(Updatable) The release number when the resource was upgraded.

idcsPreventedOperations string[]

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

members DomainsGroupMemberArgs[]

(Updatable) Group members - when requesting members attribute, a max of 10,000 members will be returned in a single request. It is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]

metas DomainsGroupMetaArgs[]

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

nonUniqueDisplayName string

(Updatable) A human readable name for Group as defined by the Service Consumer

ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

resourceTypeSchemaVersion string

(Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

schemas string[]

(Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

tags DomainsGroupTagArgs[]

(Updatable) A list of tags on this resource.

tenancyOcid string

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

urnietfparamsscimschemasoracleidcsextensionOciTags DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

urnietfparamsscimschemasoracleidcsextensiondbcsGroups DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupArgs[]

(Updatable) Schema for Database Service Resource

urnietfparamsscimschemasoracleidcsextensiondynamicGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupArgs

(Updatable) Dynamic Group

urnietfparamsscimschemasoracleidcsextensiongroupGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupArgs

(Updatable) Idcs Group

urnietfparamsscimschemasoracleidcsextensionposixGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupArgs

(Updatable) POSIX Group extension

urnietfparamsscimschemasoracleidcsextensionrequestableGroup DomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupArgs

(Updatable) Requestable Group

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.

authorization str

(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

compartment_ocid str

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

delete_in_progress bool

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

display_name str

(Updatable) Group display name

domain_ocid str

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

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 by 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.

idcs_created_bies DomainsGroupIdcsCreatedByArgs]

(Updatable) The User or App who created the Resource

idcs_endpoint str

The basic endpoint for the identity domain

idcs_last_modified_bies DomainsGroupIdcsLastModifiedByArgs]

(Updatable) The User or App who modified the Resource

idcs_last_upgraded_in_release str

(Updatable) The release number when the resource was upgraded.

idcs_prevented_operations Sequence[str]

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

members DomainsGroupMemberArgs]

(Updatable) Group members - when requesting members attribute, a max of 10,000 members will be returned in a single request. It is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]

metas DomainsGroupMetaArgs]

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

non_unique_display_name str

(Updatable) A human readable name for Group as defined by the Service Consumer

ocid str

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

resource_type_schema_version str

(Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

schemas Sequence[str]

(Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

tags DomainsGroupTagArgs]

(Updatable) A list of tags on this resource.

tenancy_ocid str

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

urnietfparamsscimschemasoracleidcsextension_oci_tags DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

urnietfparamsscimschemasoracleidcsextensiondbcs_groups DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupArgs]

(Updatable) Schema for Database Service Resource

urnietfparamsscimschemasoracleidcsextensiondynamic_group DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroupArgs

(Updatable) Dynamic Group

urnietfparamsscimschemasoracleidcsextensiongroup_group DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupArgs

(Updatable) Idcs Group

urnietfparamsscimschemasoracleidcsextensionposix_group DomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroupArgs

(Updatable) POSIX Group extension

urnietfparamsscimschemasoracleidcsextensionrequestable_group DomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroupArgs

(Updatable) Requestable Group

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.

authorization String

(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.

compartmentOcid String

(Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.

deleteInProgress Boolean

(Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.

displayName String

(Updatable) Group display name

domainOcid String

(Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.

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 by 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.

idcsCreatedBies List<Property Map>

(Updatable) The User or App who created the Resource

idcsEndpoint String

The basic endpoint for the identity domain

idcsLastModifiedBies List<Property Map>

(Updatable) The User or App who modified the Resource

idcsLastUpgradedInRelease String

(Updatable) The release number when the resource was upgraded.

idcsPreventedOperations List<String>

(Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.

members List<Property Map>

(Updatable) Group members - when requesting members attribute, a max of 10,000 members will be returned in a single request. It is recommended to use startIndex and count to return members in pages instead of in a single response, eg : #attributes=members[startIndex=1%26count=10]

metas List<Property Map>

(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.

nonUniqueDisplayName String

(Updatable) A human readable name for Group as defined by the Service Consumer

ocid String

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

resourceTypeSchemaVersion String

(Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.

schemas List<String>

(Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.

tags List<Property Map>

(Updatable) A list of tags on this resource.

tenancyOcid String

(Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.

urnietfparamsscimschemasoracleidcsextensionOciTags Property Map

(Updatable) Oracle Cloud Infrastructure Tags.

urnietfparamsscimschemasoracleidcsextensiondbcsGroups List<Property Map>

(Updatable) Schema for Database Service Resource

urnietfparamsscimschemasoracleidcsextensiondynamicGroup Property Map

(Updatable) Dynamic Group

urnietfparamsscimschemasoracleidcsextensiongroupGroup Property Map

(Updatable) Idcs Group

urnietfparamsscimschemasoracleidcsextensionposixGroup Property Map

(Updatable) POSIX Group extension

urnietfparamsscimschemasoracleidcsextensionrequestableGroup Property Map

(Updatable) Requestable Group

Supporting Types

DomainsGroupIdcsCreatedBy

Value string

(Updatable) The ID of the App.

Display string

(Updatable) App Display Name

Ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

Ref string

(Updatable) App URI

Type string

(Updatable) The type of the entity that created this Group.

Value string

(Updatable) The ID of the App.

Display string

(Updatable) App Display Name

Ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

Ref string

(Updatable) App URI

Type string

(Updatable) The type of the entity that created this Group.

value String

(Updatable) The ID of the App.

display String

(Updatable) App Display Name

ocid String

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

ref String

(Updatable) App URI

type String

(Updatable) The type of the entity that created this Group.

value string

(Updatable) The ID of the App.

display string

(Updatable) App Display Name

ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

ref string

(Updatable) App URI

type string

(Updatable) The type of the entity that created this Group.

value str

(Updatable) The ID of the App.

display str

(Updatable) App Display Name

ocid str

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

ref str

(Updatable) App URI

type str

(Updatable) The type of the entity that created this Group.

value String

(Updatable) The ID of the App.

display String

(Updatable) App Display Name

ocid String

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

ref String

(Updatable) App URI

type String

(Updatable) The type of the entity that created this Group.

DomainsGroupIdcsLastModifiedBy

Value string

(Updatable) The ID of the App.

Display string

(Updatable) App Display Name

Ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

Ref string

(Updatable) App URI

Type string

(Updatable) The type of the entity that created this Group.

Value string

(Updatable) The ID of the App.

Display string

(Updatable) App Display Name

Ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

Ref string

(Updatable) App URI

Type string

(Updatable) The type of the entity that created this Group.

value String

(Updatable) The ID of the App.

display String

(Updatable) App Display Name

ocid String

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

ref String

(Updatable) App URI

type String

(Updatable) The type of the entity that created this Group.

value string

(Updatable) The ID of the App.

display string

(Updatable) App Display Name

ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

ref string

(Updatable) App URI

type string

(Updatable) The type of the entity that created this Group.

value str

(Updatable) The ID of the App.

display str

(Updatable) App Display Name

ocid str

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

ref str

(Updatable) App URI

type str

(Updatable) The type of the entity that created this Group.

value String

(Updatable) The ID of the App.

display String

(Updatable) App Display Name

ocid String

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

ref String

(Updatable) App URI

type String

(Updatable) The type of the entity that created this Group.

DomainsGroupMember

Type string

(Updatable) The type of the entity that created this Group.

Value string

(Updatable) The ID of the App.

DateAdded string

(Updatable) The DateTime the member was added to the Group.

Display string

(Updatable) App Display Name

MembershipOcid string

(Updatable) Membership Ocid

Name string

(Updatable) PasswordPolicy Name

Ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

Ref string

(Updatable) App URI

Type string

(Updatable) The type of the entity that created this Group.

Value string

(Updatable) The ID of the App.

DateAdded string

(Updatable) The DateTime the member was added to the Group.

Display string

(Updatable) App Display Name

MembershipOcid string

(Updatable) Membership Ocid

Name string

(Updatable) PasswordPolicy Name

Ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

Ref string

(Updatable) App URI

type String

(Updatable) The type of the entity that created this Group.

value String

(Updatable) The ID of the App.

dateAdded String

(Updatable) The DateTime the member was added to the Group.

display String

(Updatable) App Display Name

membershipOcid String

(Updatable) Membership Ocid

name String

(Updatable) PasswordPolicy Name

ocid String

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

ref String

(Updatable) App URI

type string

(Updatable) The type of the entity that created this Group.

value string

(Updatable) The ID of the App.

dateAdded string

(Updatable) The DateTime the member was added to the Group.

display string

(Updatable) App Display Name

membershipOcid string

(Updatable) Membership Ocid

name string

(Updatable) PasswordPolicy Name

ocid string

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

ref string

(Updatable) App URI

type str

(Updatable) The type of the entity that created this Group.

value str

(Updatable) The ID of the App.

date_added str

(Updatable) The DateTime the member was added to the Group.

display str

(Updatable) App Display Name

membership_ocid str

(Updatable) Membership Ocid

name str

(Updatable) PasswordPolicy Name

ocid str

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

ref str

(Updatable) App URI

type String

(Updatable) The type of the entity that created this Group.

value String

(Updatable) The ID of the App.

dateAdded String

(Updatable) The DateTime the member was added to the Group.

display String

(Updatable) App Display Name

membershipOcid String

(Updatable) Membership Ocid

name String

(Updatable) PasswordPolicy Name

ocid String

(Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.

ref String

(Updatable) App URI

DomainsGroupMeta

Created string

(Updatable) The DateTime the Resource was added to the Service Provider

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.

Location string

(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.

ResourceType string

(Updatable) Name of the resource type of the resource--for example, Users or Groups

Version string

(Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

Created string

(Updatable) The DateTime the Resource was added to the Service Provider

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.

Location string

(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.

ResourceType string

(Updatable) Name of the resource type of the resource--for example, Users or Groups

Version string

(Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

created String

(Updatable) The DateTime the Resource was added to the Service Provider

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.

location String

(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.

resourceType String

(Updatable) Name of the resource type of the resource--for example, Users or Groups

version String

(Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

created string

(Updatable) The DateTime the Resource was added to the Service Provider

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.

location string

(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.

resourceType string

(Updatable) Name of the resource type of the resource--for example, Users or Groups

version string

(Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

created str

(Updatable) The DateTime the Resource was added to the Service Provider

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.

location str

(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.

resource_type str

(Updatable) Name of the resource type of the resource--for example, Users or Groups

version str

(Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

created String

(Updatable) The DateTime the Resource was added to the Service Provider

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.

location String

(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.

resourceType String

(Updatable) Name of the resource type of the resource--for example, Users or Groups

version String

(Updatable) The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

DomainsGroupTag

Key string

(Updatable) Oracle Cloud Infrastructure Tag key

Value string

(Updatable) The ID of the App.

Key string

(Updatable) Oracle Cloud Infrastructure Tag key

Value string

(Updatable) The ID of the App.

key String

(Updatable) Oracle Cloud Infrastructure Tag key

value String

(Updatable) The ID of the App.

key string

(Updatable) Oracle Cloud Infrastructure Tag key

value string

(Updatable) The ID of the App.

key str

(Updatable) Oracle Cloud Infrastructure Tag key

value str

(Updatable) The ID of the App.

key String

(Updatable) Oracle Cloud Infrastructure Tag key

value String

(Updatable) The ID of the App.

DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTags

DefinedTags List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsDefinedTag>

(Updatable) Oracle Cloud Infrastructure Defined Tags

FreeformTags List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsFreeformTag>

(Updatable) Oracle Cloud Infrastructure Freeform Tags

TagSlug string

(Updatable) Oracle Cloud Infrastructure Tag slug

DefinedTags []DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsDefinedTag

(Updatable) Oracle Cloud Infrastructure Defined Tags

FreeformTags []DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsFreeformTag

(Updatable) Oracle Cloud Infrastructure Freeform Tags

TagSlug string

(Updatable) Oracle Cloud Infrastructure Tag slug

definedTags List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsDefinedTag>

(Updatable) Oracle Cloud Infrastructure Defined Tags

freeformTags List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsFreeformTag>

(Updatable) Oracle Cloud Infrastructure Freeform Tags

tagSlug String

(Updatable) Oracle Cloud Infrastructure Tag slug

definedTags DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsDefinedTag[]

(Updatable) Oracle Cloud Infrastructure Defined Tags

freeformTags DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsFreeformTag[]

(Updatable) Oracle Cloud Infrastructure Freeform Tags

tagSlug string

(Updatable) Oracle Cloud Infrastructure Tag slug

defined_tags DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsDefinedTag]

(Updatable) Oracle Cloud Infrastructure Defined Tags

freeform_tags DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsFreeformTag]

(Updatable) Oracle Cloud Infrastructure Freeform Tags

tag_slug str

(Updatable) Oracle Cloud Infrastructure Tag slug

definedTags List<Property Map>

(Updatable) Oracle Cloud Infrastructure Defined Tags

freeformTags List<Property Map>

(Updatable) Oracle Cloud Infrastructure Freeform Tags

tagSlug String

(Updatable) Oracle Cloud Infrastructure Tag slug

DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsDefinedTag

Key string

(Updatable) Oracle Cloud Infrastructure Tag key

Namespace string

(Updatable) Oracle Cloud Infrastructure Tag namespace

Value string

(Updatable) The ID of the App.

Key string

(Updatable) Oracle Cloud Infrastructure Tag key

Namespace string

(Updatable) Oracle Cloud Infrastructure Tag namespace

Value string

(Updatable) The ID of the App.

key String

(Updatable) Oracle Cloud Infrastructure Tag key

namespace String

(Updatable) Oracle Cloud Infrastructure Tag namespace

value String

(Updatable) The ID of the App.

key string

(Updatable) Oracle Cloud Infrastructure Tag key

namespace string

(Updatable) Oracle Cloud Infrastructure Tag namespace

value string

(Updatable) The ID of the App.

key str

(Updatable) Oracle Cloud Infrastructure Tag key

namespace str

(Updatable) Oracle Cloud Infrastructure Tag namespace

value str

(Updatable) The ID of the App.

key String

(Updatable) Oracle Cloud Infrastructure Tag key

namespace String

(Updatable) Oracle Cloud Infrastructure Tag namespace

value String

(Updatable) The ID of the App.

DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsFreeformTag

Key string

(Updatable) Oracle Cloud Infrastructure Tag key

Value string

(Updatable) The ID of the App.

Key string

(Updatable) Oracle Cloud Infrastructure Tag key

Value string

(Updatable) The ID of the App.

key String

(Updatable) Oracle Cloud Infrastructure Tag key

value String

(Updatable) The ID of the App.

key string

(Updatable) Oracle Cloud Infrastructure Tag key

value string

(Updatable) The ID of the App.

key str

(Updatable) Oracle Cloud Infrastructure Tag key

value str

(Updatable) The ID of the App.

key String

(Updatable) Oracle Cloud Infrastructure Tag key

value String

(Updatable) The ID of the App.

DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroup

DomainLevelSchema string

(Updatable) DBCS Domain-level schema-name. This attribute refers implicitly to a value of 'domainLevelSchemaNames' for a particular DB Domain.

DomainLevelSchemaNames List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaName>

(Updatable) DBCS Domain-level schema-names. Each value is specific to a DB Domain.

InstanceLevelSchema string

(Updatable) DBCS instance-level schema-name. This attribute refers implicitly to a value of 'instanceLevelSchemaNames' for a particular DB Instance.

InstanceLevelSchemaNames List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaName>

(Updatable) DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.

DomainLevelSchema string

(Updatable) DBCS Domain-level schema-name. This attribute refers implicitly to a value of 'domainLevelSchemaNames' for a particular DB Domain.

DomainLevelSchemaNames []DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaName

(Updatable) DBCS Domain-level schema-names. Each value is specific to a DB Domain.

InstanceLevelSchema string

(Updatable) DBCS instance-level schema-name. This attribute refers implicitly to a value of 'instanceLevelSchemaNames' for a particular DB Instance.

InstanceLevelSchemaNames []DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaName

(Updatable) DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.

domainLevelSchema String

(Updatable) DBCS Domain-level schema-name. This attribute refers implicitly to a value of 'domainLevelSchemaNames' for a particular DB Domain.

domainLevelSchemaNames List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaName>

(Updatable) DBCS Domain-level schema-names. Each value is specific to a DB Domain.

instanceLevelSchema String

(Updatable) DBCS instance-level schema-name. This attribute refers implicitly to a value of 'instanceLevelSchemaNames' for a particular DB Instance.

instanceLevelSchemaNames List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaName>

(Updatable) DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.

domainLevelSchema string

(Updatable) DBCS Domain-level schema-name. This attribute refers implicitly to a value of 'domainLevelSchemaNames' for a particular DB Domain.

domainLevelSchemaNames DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaName[]

(Updatable) DBCS Domain-level schema-names. Each value is specific to a DB Domain.

instanceLevelSchema string

(Updatable) DBCS instance-level schema-name. This attribute refers implicitly to a value of 'instanceLevelSchemaNames' for a particular DB Instance.

instanceLevelSchemaNames DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaName[]

(Updatable) DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.

domain_level_schema str

(Updatable) DBCS Domain-level schema-name. This attribute refers implicitly to a value of 'domainLevelSchemaNames' for a particular DB Domain.

domain_level_schema_names DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaName]

(Updatable) DBCS Domain-level schema-names. Each value is specific to a DB Domain.

instance_level_schema str

(Updatable) DBCS instance-level schema-name. This attribute refers implicitly to a value of 'instanceLevelSchemaNames' for a particular DB Instance.

instance_level_schema_names DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaName]

(Updatable) DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.

domainLevelSchema String

(Updatable) DBCS Domain-level schema-name. This attribute refers implicitly to a value of 'domainLevelSchemaNames' for a particular DB Domain.

domainLevelSchemaNames List<Property Map>

(Updatable) DBCS Domain-level schema-names. Each value is specific to a DB Domain.

instanceLevelSchema String

(Updatable) DBCS instance-level schema-name. This attribute refers implicitly to a value of 'instanceLevelSchemaNames' for a particular DB Instance.

instanceLevelSchemaNames List<Property Map>

(Updatable) DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.

DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaName

DomainName string

(Updatable) DBCS Domain Name

SchemaName string

(Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.

DomainName string

(Updatable) DBCS Domain Name

SchemaName string

(Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.

domainName String

(Updatable) DBCS Domain Name

schemaName String

(Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.

domainName string

(Updatable) DBCS Domain Name

schemaName string

(Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.

domain_name str

(Updatable) DBCS Domain Name

schema_name str

(Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.

domainName String

(Updatable) DBCS Domain Name

schemaName String

(Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.

DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaName

DbInstanceId string

(Updatable) App Id of DBCS App instance

SchemaName string

(Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.

DbInstanceId string

(Updatable) App Id of DBCS App instance

SchemaName string

(Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.

dbInstanceId String

(Updatable) App Id of DBCS App instance

schemaName String

(Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.

dbInstanceId string

(Updatable) App Id of DBCS App instance

schemaName string

(Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.

db_instance_id str

(Updatable) App Id of DBCS App instance

schema_name str

(Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.

dbInstanceId String

(Updatable) App Id of DBCS App instance

schemaName String

(Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.

DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroup

MembershipRule string

(Updatable) Membership rule

MembershipType string

(Updatable) Membership type

MembershipRule string

(Updatable) Membership rule

MembershipType string

(Updatable) Membership type

membershipRule String

(Updatable) Membership rule

membershipType String

(Updatable) Membership type

membershipRule string

(Updatable) Membership rule

membershipType string

(Updatable) Membership type

membership_rule str

(Updatable) Membership rule

membership_type str

(Updatable) Membership type

membershipRule String

(Updatable) Membership rule

membershipType String

(Updatable) Membership type

DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroup

AppRoles List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRole>

(Updatable) A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated

CreationMechanism string

(Updatable) Source from which this group got created.

Description string

(Updatable) Group description

Grants List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrant>

(Updatable) Grants assigned to group

Owners List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwner>

(Updatable) Group owners

PasswordPolicies List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicy>

(Updatable) Password Policy associated with this Group.

SyncedFromApps List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromApp>

(Updatable) The entity that created this Group.

AppRoles []DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRole

(Updatable) A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated

CreationMechanism string

(Updatable) Source from which this group got created.

Description string

(Updatable) Group description

Grants []DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrant

(Updatable) Grants assigned to group

Owners []DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwner

(Updatable) Group owners

PasswordPolicies []DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicy

(Updatable) Password Policy associated with this Group.

SyncedFromApps []DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromApp

(Updatable) The entity that created this Group.

appRoles List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRole>

(Updatable) A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated

creationMechanism String

(Updatable) Source from which this group got created.

description String

(Updatable) Group description

grants List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrant>

(Updatable) Grants assigned to group

owners List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwner>

(Updatable) Group owners

passwordPolicies List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicy>

(Updatable) Password Policy associated with this Group.

syncedFromApps List<DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromApp>

(Updatable) The entity that created this Group.

appRoles DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRole[]

(Updatable) A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated

creationMechanism string

(Updatable) Source from which this group got created.

description string

(Updatable) Group description

grants DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrant[]

(Updatable) Grants assigned to group

owners DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwner[]

(Updatable) Group owners

passwordPolicies DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicy[]

(Updatable) Password Policy associated with this Group.

syncedFromApps DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromApp[]

(Updatable) The entity that created this Group.

app_roles DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRole]

(Updatable) A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated

creation_mechanism str

(Updatable) Source from which this group got created.

description str

(Updatable) Group description

grants DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrant]

(Updatable) Grants assigned to group

owners DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwner]

(Updatable) Group owners

password_policies DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicy]

(Updatable) Password Policy associated with this Group.

synced_from_apps DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromApp]

(Updatable) The entity that created this Group.

appRoles List<Property Map>

(Updatable) A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated

creationMechanism String

(Updatable) Source from which this group got created.

description String

(Updatable) Group description

grants List<Property Map>

(Updatable) Grants assigned to group

owners List<Property Map>

(Updatable) Group owners

passwordPolicies List<Property Map>

(Updatable) Password Policy associated with this Group.

syncedFromApps List<Property Map>

(Updatable) The entity that created this Group.

DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRole

Value string

(Updatable) The ID of the App.

AdminRole bool

(Updatable) If true, then the role provides administrative access privileges. READ-ONLY.

AppId string

(Updatable) App identifier

AppName string

(Updatable) Name of parent App. READ-ONLY.

Display string

(Updatable) App Display Name

LegacyGroupName string

(Updatable) The name of the legacy group associated with this AppRole.

Ref string

(Updatable) App URI

Type string

(Updatable) The type of the entity that created this Group.

Value string

(Updatable) The ID of the App.

AdminRole bool

(Updatable) If true, then the role provides administrative access privileges. READ-ONLY.

AppId string

(Updatable) App identifier

AppName string

(Updatable) Name of parent App. READ-ONLY.

Display string

(Updatable) App Display Name

LegacyGroupName string

(Updatable) The name of the legacy group associated with this AppRole.

Ref string

(Updatable) App URI

Type string

(Updatable) The type of the entity that created this Group.

value String

(Updatable) The ID of the App.

adminRole Boolean

(Updatable) If true, then the role provides administrative access privileges. READ-ONLY.

appId String

(Updatable) App identifier

appName String

(Updatable) Name of parent App. READ-ONLY.

display String

(Updatable) App Display Name

legacyGroupName String

(Updatable) The name of the legacy group associated with this AppRole.

ref String

(Updatable) App URI

type String

(Updatable) The type of the entity that created this Group.

value string

(Updatable) The ID of the App.

adminRole boolean

(Updatable) If true, then the role provides administrative access privileges. READ-ONLY.

appId string

(Updatable) App identifier

appName string

(Updatable) Name of parent App. READ-ONLY.

display string

(Updatable) App Display Name

legacyGroupName string

(Updatable) The name of the legacy group associated with this AppRole.

ref string

(Updatable) App URI

type string

(Updatable) The type of the entity that created this Group.

value str

(Updatable) The ID of the App.

admin_role bool

(Updatable) If true, then the role provides administrative access privileges. READ-ONLY.

app_id str

(Updatable) App identifier

app_name str

(Updatable) Name of parent App. READ-ONLY.

display str

(Updatable) App Display Name

legacy_group_name str

(Updatable) The name of the legacy group associated with this AppRole.

ref str

(Updatable) App URI

type str

(Updatable) The type of the entity that created this Group.

value String

(Updatable) The ID of the App.

adminRole Boolean

(Updatable) If true, then the role provides administrative access privileges. READ-ONLY.

appId String

(Updatable) App identifier

appName String

(Updatable) Name of parent App. READ-ONLY.

display String

(Updatable) App Display Name

legacyGroupName String

(Updatable) The name of the legacy group associated with this AppRole.

ref String

(Updatable) App URI

type String

(Updatable) The type of the entity that created this Group.

DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupGrant

AppId string

(Updatable) App identifier

GrantMechanism string

(Updatable) Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted.\nA customer or the UI should use only grantMechanism values that start with 'ADMINISTRATOR':\n - 'ADMINISTRATOR_TO_USER' is for a direct grant to a specific User.\n - 'ADMINISTRATOR_TO_GROUP' is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group.\n - 'ADMINISTRATOR_TO_APP' is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App.

Ref string

(Updatable) App URI

Value string

(Updatable) The ID of the App.

AppId string

(Updatable) App identifier

GrantMechanism string

(Updatable) Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted.\nA customer or the UI should use only grantMechanism values that start with 'ADMINISTRATOR':\n - 'ADMINISTRATOR_TO_USER' is for a direct grant to a specific User.\n - 'ADMINISTRATOR_TO_GROUP' is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group.\n - 'ADMINISTRATOR_TO_APP' is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App.

Ref string

(Updatable) App URI

Value string

(Updatable) The ID of the App.

appId String

(Updatable) App identifier

grantMechanism String

(Updatable) Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted.\nA customer or the UI should use only grantMechanism values that start with 'ADMINISTRATOR':\n - 'ADMINISTRATOR_TO_USER' is for a direct grant to a specific User.\n - 'ADMINISTRATOR_TO_GROUP' is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group.\n - 'ADMINISTRATOR_TO_APP' is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App.

ref String

(Updatable) App URI

value String

(Updatable) The ID of the App.

appId string

(Updatable) App identifier

grantMechanism string

(Updatable) Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted.\nA customer or the UI should use only grantMechanism values that start with 'ADMINISTRATOR':\n - 'ADMINISTRATOR_TO_USER' is for a direct grant to a specific User.\n - 'ADMINISTRATOR_TO_GROUP' is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group.\n - 'ADMINISTRATOR_TO_APP' is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App.

ref string

(Updatable) App URI

value string

(Updatable) The ID of the App.

app_id str

(Updatable) App identifier

grant_mechanism str

(Updatable) Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted.\nA customer or the UI should use only grantMechanism values that start with 'ADMINISTRATOR':\n - 'ADMINISTRATOR_TO_USER' is for a direct grant to a specific User.\n - 'ADMINISTRATOR_TO_GROUP' is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group.\n - 'ADMINISTRATOR_TO_APP' is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App.

ref str

(Updatable) App URI

value str

(Updatable) The ID of the App.

appId String

(Updatable) App identifier

grantMechanism String

(Updatable) Each value of grantMechanism indicates how (or by what component) some App (or App-Entitlement) was granted.\nA customer or the UI should use only grantMechanism values that start with 'ADMINISTRATOR':\n - 'ADMINISTRATOR_TO_USER' is for a direct grant to a specific User.\n - 'ADMINISTRATOR_TO_GROUP' is for a grant to a specific Group, which results in indirect grants to Users who are members of that Group.\n - 'ADMINISTRATOR_TO_APP' is for a grant to a specific App. The grantee (client) App gains access to the granted (server) App.

ref String

(Updatable) App URI

value String

(Updatable) The ID of the App.

DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupOwner

Type string

(Updatable) The type of the entity that created this Group.

Value string

(Updatable) The ID of the App.

Display string

(Updatable) App Display Name

Ref string

(Updatable) App URI

Type string

(Updatable) The type of the entity that created this Group.

Value string

(Updatable) The ID of the App.

Display string

(Updatable) App Display Name

Ref string

(Updatable) App URI

type String

(Updatable) The type of the entity that created this Group.

value String

(Updatable) The ID of the App.

display String

(Updatable) App Display Name

ref String

(Updatable) App URI

type string

(Updatable) The type of the entity that created this Group.

value string

(Updatable) The ID of the App.

display string

(Updatable) App Display Name

ref string

(Updatable) App URI

type str

(Updatable) The type of the entity that created this Group.

value str

(Updatable) The ID of the App.

display str

(Updatable) App Display Name

ref str

(Updatable) App URI

type String

(Updatable) The type of the entity that created this Group.

value String

(Updatable) The ID of the App.

display String

(Updatable) App Display Name

ref String

(Updatable) App URI

DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicy

Value string

(Updatable) The ID of the App.

Name string

(Updatable) PasswordPolicy Name

Priority int

(Updatable) PasswordPolicy priority

Ref string

(Updatable) App URI

Value string

(Updatable) The ID of the App.

Name string

(Updatable) PasswordPolicy Name

Priority int

(Updatable) PasswordPolicy priority

Ref string

(Updatable) App URI

value String

(Updatable) The ID of the App.

name String

(Updatable) PasswordPolicy Name

priority Integer

(Updatable) PasswordPolicy priority

ref String

(Updatable) App URI

value string

(Updatable) The ID of the App.

name string

(Updatable) PasswordPolicy Name

priority number

(Updatable) PasswordPolicy priority

ref string

(Updatable) App URI

value str

(Updatable) The ID of the App.

name str

(Updatable) PasswordPolicy Name

priority int

(Updatable) PasswordPolicy priority

ref str

(Updatable) App URI

value String

(Updatable) The ID of the App.

name String

(Updatable) PasswordPolicy Name

priority Number

(Updatable) PasswordPolicy priority

ref String

(Updatable) App URI

DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromApp

Type string

(Updatable) The type of the entity that created this Group.

Value string

(Updatable) The ID of the App.

Display string

(Updatable) App Display Name

Ref string

(Updatable) App URI

Type string

(Updatable) The type of the entity that created this Group.

Value string

(Updatable) The ID of the App.

Display string

(Updatable) App Display Name

Ref string

(Updatable) App URI

type String

(Updatable) The type of the entity that created this Group.

value String

(Updatable) The ID of the App.

display String

(Updatable) App Display Name

ref String

(Updatable) App URI

type string

(Updatable) The type of the entity that created this Group.

value string

(Updatable) The ID of the App.

display string

(Updatable) App Display Name

ref string

(Updatable) App URI

type str

(Updatable) The type of the entity that created this Group.

value str

(Updatable) The ID of the App.

display str

(Updatable) App Display Name

ref str

(Updatable) App URI

type String

(Updatable) The type of the entity that created this Group.

value String

(Updatable) The ID of the App.

display String

(Updatable) App Display Name

ref String

(Updatable) App URI

DomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroup

GidNumber int

(Updatable) Integer uniquely identifying a group in a POSIX administrative domain

GidNumber int

(Updatable) Integer uniquely identifying a group in a POSIX administrative domain

gidNumber Integer

(Updatable) Integer uniquely identifying a group in a POSIX administrative domain

gidNumber number

(Updatable) Integer uniquely identifying a group in a POSIX administrative domain

gid_number int

(Updatable) Integer uniquely identifying a group in a POSIX administrative domain

gidNumber Number

(Updatable) Integer uniquely identifying a group in a POSIX administrative domain

DomainsGroupUrnietfparamsscimschemasoracleidcsextensionrequestableGroup

Requestable bool

(Updatable) Flag controlling whether group membership can be request by user through self service console.

Requestable bool

(Updatable) Flag controlling whether group membership can be request by user through self service console.

requestable Boolean

(Updatable) Flag controlling whether group membership can be request by user through self service console.

requestable boolean

(Updatable) Flag controlling whether group membership can be request by user through self service console.

requestable bool

(Updatable) Flag controlling whether group membership can be request by user through self service console.

requestable Boolean

(Updatable) Flag controlling whether group membership can be request by user through self service console.

Import

Groups can be imported using the id, e.g.

 $ pulumi import oci:Identity/domainsGroup:DomainsGroup test_group "idcsEndpoint/{idcsEndpoint}/groups/{groupId}"

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes

This Pulumi package is based on the oci Terraform Provider.