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:
- Display
Name string (Updatable) Group display name
- Idcs
Endpoint 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.
- Attribute
Sets List<string> (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- External
Id 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<Domains
Group Member Args> (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 stringDisplay Name (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.
- Resource
Type stringSchema Version (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- List<Domains
Group Tag Args> (Updatable) A list of tags on this resource.
- Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Args (Updatable) Oracle Cloud Infrastructure Tags.
- Urnietfparamsscimschemasoracleidcsextensiondynamic
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondynamic Group Args (Updatable) Dynamic Group
- Urnietfparamsscimschemasoracleidcsextensiongroup
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group Args (Updatable) Idcs Group
- Urnietfparamsscimschemasoracleidcsextensionposix
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionposix Group Args (Updatable) POSIX Group extension
- Urnietfparamsscimschemasoracleidcsextensionrequestable
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionrequestable Group Args (Updatable) Requestable Group
- Display
Name string (Updatable) Group display name
- Idcs
Endpoint 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.
- Attribute
Sets []string (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- External
Id 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
[]Domains
Group Member Args (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 stringDisplay Name (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.
- Resource
Type stringSchema Version (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- []Domains
Group Tag Args (Updatable) A list of tags on this resource.
- Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Args (Updatable) Oracle Cloud Infrastructure Tags.
- Urnietfparamsscimschemasoracleidcsextensiondynamic
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondynamic Group Args (Updatable) Dynamic Group
- Urnietfparamsscimschemasoracleidcsextensiongroup
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group Args (Updatable) Idcs Group
- Urnietfparamsscimschemasoracleidcsextensionposix
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionposix Group Args (Updatable) POSIX Group extension
- Urnietfparamsscimschemasoracleidcsextensionrequestable
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionrequestable Group Args (Updatable) Requestable Group
- display
Name String (Updatable) Group display name
- idcs
Endpoint 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.
- attribute
Sets List<String> (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- external
Id 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<Domains
Group Member Args> (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 StringDisplay Name (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.
- resource
Type StringSchema Version (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- List<Domains
Group Tag Args> (Updatable) A list of tags on this resource.
- Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Args (Updatable) Oracle Cloud Infrastructure Tags.
- urnietfparamsscimschemasoracleidcsextensiondynamic
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondynamic Group Args (Updatable) Dynamic Group
- urnietfparamsscimschemasoracleidcsextensiongroup
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group Args (Updatable) Idcs Group
- urnietfparamsscimschemasoracleidcsextensionposix
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionposix Group Args (Updatable) POSIX Group extension
- urnietfparamsscimschemasoracleidcsextensionrequestable
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionrequestable Group Args (Updatable) Requestable Group
- display
Name string (Updatable) Group display name
- idcs
Endpoint 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.
- attribute
Sets string[] (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes string
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- external
Id 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
Domains
Group Member Args[] (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 stringDisplay Name (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.
- resource
Type stringSchema Version (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- Domains
Group Tag Args[] (Updatable) A list of tags on this resource.
- Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Args (Updatable) Oracle Cloud Infrastructure Tags.
- urnietfparamsscimschemasoracleidcsextensiondynamic
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondynamic Group Args (Updatable) Dynamic Group
- urnietfparamsscimschemasoracleidcsextensiongroup
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group Args (Updatable) Idcs Group
- urnietfparamsscimschemasoracleidcsextensionposix
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionposix Group Args (Updatable) POSIX Group extension
- urnietfparamsscimschemasoracleidcsextensionrequestable
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionrequestable Group Args (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.
- 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
Domains
Group Member Args] (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_ strdisplay_ name (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_ strschema_ version (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- Domains
Group Tag Args] (Updatable) A list of tags on this resource.
- Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Args (Updatable) Oracle Cloud Infrastructure Tags.
- urnietfparamsscimschemasoracleidcsextensiondynamic_
group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondynamic Group Args (Updatable) Dynamic Group
- urnietfparamsscimschemasoracleidcsextensiongroup_
group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group Args (Updatable) Idcs Group
- urnietfparamsscimschemasoracleidcsextensionposix_
group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionposix Group Args (Updatable) POSIX Group extension
- urnietfparamsscimschemasoracleidcsextensionrequestable_
group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionrequestable Group Args (Updatable) Requestable Group
- display
Name String (Updatable) Group display name
- idcs
Endpoint 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.
- attribute
Sets List<String> (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- external
Id 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]
- non
Unique StringDisplay Name (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.
- resource
Type StringSchema Version (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- List<Property Map>
(Updatable) A list of tags on this resource.
- Property Map
(Updatable) Oracle Cloud Infrastructure Tags.
- urnietfparamsscimschemasoracleidcsextensiondynamic
Group Property Map (Updatable) Dynamic Group
- urnietfparamsscimschemasoracleidcsextensiongroup
Group Property Map (Updatable) Idcs Group
- urnietfparamsscimschemasoracleidcsextensionposix
Group Property Map (Updatable) POSIX Group extension
- urnietfparamsscimschemasoracleidcsextensionrequestable
Group Property Map (Updatable) Requestable Group
Outputs
All input properties are implicitly available as output properties. Additionally, the DomainsGroup resource produces the following output properties:
- Compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- Delete
In boolProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- Domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- Id string
The provider-assigned unique ID for this managed resource.
- Idcs
Created List<DomainsBies Group Idcs Created By> (Updatable) The User or App who created the Resource
- Idcs
Last List<DomainsModified Bies Group Idcs Last Modified By> (Updatable) The User or App who modified the Resource
- Idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- Idcs
Prevented List<string>Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- Metas
List<Domains
Group Meta> (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- Tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Urnietfparamsscimschemasoracleidcsextensiondbcs
Groups List<DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondbcs Group> (Updatable) Schema for Database Service Resource
- Compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- Delete
In boolProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- Domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- Id string
The provider-assigned unique ID for this managed resource.
- Idcs
Created []DomainsBies Group Idcs Created By (Updatable) The User or App who created the Resource
- Idcs
Last []DomainsModified Bies Group Idcs Last Modified By (Updatable) The User or App who modified the Resource
- Idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- Idcs
Prevented []stringOperations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- Metas
[]Domains
Group Meta (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- Tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Urnietfparamsscimschemasoracleidcsextensiondbcs
Groups []DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondbcs Group (Updatable) Schema for Database Service Resource
- compartment
Ocid String (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- delete
In BooleanProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- domain
Ocid String (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- id String
The provider-assigned unique ID for this managed resource.
- idcs
Created List<DomainsBies Group Idcs Created By> (Updatable) The User or App who created the Resource
- idcs
Last List<DomainsModified Bies Group Idcs Last Modified By> (Updatable) The User or App who modified the Resource
- idcs
Last StringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- idcs
Prevented List<String>Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- metas
List<Domains
Group Meta> (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- tenancy
Ocid String (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- urnietfparamsscimschemasoracleidcsextensiondbcs
Groups List<DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondbcs Group> (Updatable) Schema for Database Service Resource
- compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- delete
In booleanProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- id string
The provider-assigned unique ID for this managed resource.
- idcs
Created DomainsBies Group Idcs Created By[] (Updatable) The User or App who created the Resource
- idcs
Last DomainsModified Bies Group Idcs Last Modified By[] (Updatable) The User or App who modified the Resource
- idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- idcs
Prevented string[]Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- metas
Domains
Group Meta[] (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- urnietfparamsscimschemasoracleidcsextensiondbcs
Groups DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondbcs Group[] (Updatable) Schema for Database Service Resource
- compartment_
ocid str (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- delete_
in_ boolprogress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- 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_ Domainsbies Group Idcs Created By] (Updatable) The User or App who created the Resource
- idcs_
last_ Domainsmodified_ bies Group Idcs Last Modified By] (Updatable) The User or App who modified the Resource
- idcs_
last_ strupgraded_ in_ release (Updatable) The release number when the resource was upgraded.
- idcs_
prevented_ Sequence[str]operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- metas
Domains
Group Meta] (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 DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondbcs Group] (Updatable) Schema for Database Service Resource
- compartment
Ocid String (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- delete
In BooleanProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- domain
Ocid String (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- id String
The provider-assigned unique ID for this managed resource.
- idcs
Created List<Property Map>Bies (Updatable) The User or App who created the Resource
- idcs
Last List<Property Map>Modified Bies (Updatable) The User or App who modified the Resource
- idcs
Last StringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- idcs
Prevented List<String>Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- metas List<Property Map>
(Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- tenancy
Ocid String (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- urnietfparamsscimschemasoracleidcsextensiondbcs
Groups 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.
- Attribute
Sets List<string> (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- Delete
In boolProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- Display
Name string (Updatable) Group display name
- Domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- External
Id 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.
- Idcs
Created List<DomainsBies Group Idcs Created By Args> (Updatable) The User or App who created the Resource
- Idcs
Endpoint string The basic endpoint for the identity domain
- Idcs
Last List<DomainsModified Bies Group Idcs Last Modified By Args> (Updatable) The User or App who modified the Resource
- Idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- Idcs
Prevented List<string>Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- Members
List<Domains
Group Member Args> (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<Domains
Group Meta Args> (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- Non
Unique stringDisplay Name (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.
- Resource
Type stringSchema Version (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- Schemas List<string>
(Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.
- List<Domains
Group Tag Args> (Updatable) A list of tags on this resource.
- Tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Args (Updatable) Oracle Cloud Infrastructure Tags.
- Urnietfparamsscimschemasoracleidcsextensiondbcs
Groups List<DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondbcs Group Args> (Updatable) Schema for Database Service Resource
- Urnietfparamsscimschemasoracleidcsextensiondynamic
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondynamic Group Args (Updatable) Dynamic Group
- Urnietfparamsscimschemasoracleidcsextensiongroup
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group Args (Updatable) Idcs Group
- Urnietfparamsscimschemasoracleidcsextensionposix
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionposix Group Args (Updatable) POSIX Group extension
- Urnietfparamsscimschemasoracleidcsextensionrequestable
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionrequestable Group Args (Updatable) Requestable Group
- Attribute
Sets []string (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- Attributes string
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- Delete
In boolProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- Display
Name string (Updatable) Group display name
- Domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- External
Id 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.
- Idcs
Created []DomainsBies Group Idcs Created By Args (Updatable) The User or App who created the Resource
- Idcs
Endpoint string The basic endpoint for the identity domain
- Idcs
Last []DomainsModified Bies Group Idcs Last Modified By Args (Updatable) The User or App who modified the Resource
- Idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- Idcs
Prevented []stringOperations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- Members
[]Domains
Group Member Args (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
[]Domains
Group Meta Args (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- Non
Unique stringDisplay Name (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.
- Resource
Type stringSchema Version (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- Schemas []string
(Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.
- []Domains
Group Tag Args (Updatable) A list of tags on this resource.
- Tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Args (Updatable) Oracle Cloud Infrastructure Tags.
- Urnietfparamsscimschemasoracleidcsextensiondbcs
Groups []DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondbcs Group Args (Updatable) Schema for Database Service Resource
- Urnietfparamsscimschemasoracleidcsextensiondynamic
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondynamic Group Args (Updatable) Dynamic Group
- Urnietfparamsscimschemasoracleidcsextensiongroup
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group Args (Updatable) Idcs Group
- Urnietfparamsscimschemasoracleidcsextensionposix
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionposix Group Args (Updatable) POSIX Group extension
- Urnietfparamsscimschemasoracleidcsextensionrequestable
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionrequestable Group Args (Updatable) Requestable Group
- attribute
Sets List<String> (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- compartment
Ocid String (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- delete
In BooleanProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- display
Name String (Updatable) Group display name
- domain
Ocid String (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- external
Id 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.
- idcs
Created List<DomainsBies Group Idcs Created By Args> (Updatable) The User or App who created the Resource
- idcs
Endpoint String The basic endpoint for the identity domain
- idcs
Last List<DomainsModified Bies Group Idcs Last Modified By Args> (Updatable) The User or App who modified the Resource
- idcs
Last StringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- idcs
Prevented List<String>Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- members
List<Domains
Group Member Args> (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<Domains
Group Meta Args> (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- non
Unique StringDisplay Name (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.
- resource
Type StringSchema Version (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- schemas List<String>
(Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.
- List<Domains
Group Tag Args> (Updatable) A list of tags on this resource.
- tenancy
Ocid String (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Args (Updatable) Oracle Cloud Infrastructure Tags.
- urnietfparamsscimschemasoracleidcsextensiondbcs
Groups List<DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondbcs Group Args> (Updatable) Schema for Database Service Resource
- urnietfparamsscimschemasoracleidcsextensiondynamic
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondynamic Group Args (Updatable) Dynamic Group
- urnietfparamsscimschemasoracleidcsextensiongroup
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group Args (Updatable) Idcs Group
- urnietfparamsscimschemasoracleidcsextensionposix
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionposix Group Args (Updatable) POSIX Group extension
- urnietfparamsscimschemasoracleidcsextensionrequestable
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionrequestable Group Args (Updatable) Requestable Group
- attribute
Sets string[] (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes string
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- compartment
Ocid string (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- delete
In booleanProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- display
Name string (Updatable) Group display name
- domain
Ocid string (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- external
Id 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.
- idcs
Created DomainsBies Group Idcs Created By Args[] (Updatable) The User or App who created the Resource
- idcs
Endpoint string The basic endpoint for the identity domain
- idcs
Last DomainsModified Bies Group Idcs Last Modified By Args[] (Updatable) The User or App who modified the Resource
- idcs
Last stringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- idcs
Prevented string[]Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- members
Domains
Group Member Args[] (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
Domains
Group Meta Args[] (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- non
Unique stringDisplay Name (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.
- resource
Type stringSchema Version (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- schemas string[]
(Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.
- Domains
Group Tag Args[] (Updatable) A list of tags on this resource.
- tenancy
Ocid string (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Args (Updatable) Oracle Cloud Infrastructure Tags.
- urnietfparamsscimschemasoracleidcsextensiondbcs
Groups DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondbcs Group Args[] (Updatable) Schema for Database Service Resource
- urnietfparamsscimschemasoracleidcsextensiondynamic
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondynamic Group Args (Updatable) Dynamic Group
- urnietfparamsscimschemasoracleidcsextensiongroup
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group Args (Updatable) Idcs Group
- urnietfparamsscimschemasoracleidcsextensionposix
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionposix Group Args (Updatable) POSIX Group extension
- urnietfparamsscimschemasoracleidcsextensionrequestable
Group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionrequestable Group Args (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.
- 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_ boolprogress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- 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_ Domainsbies Group Idcs Created By Args] (Updatable) The User or App who created the Resource
- idcs_
endpoint str The basic endpoint for the identity domain
- idcs_
last_ Domainsmodified_ bies Group Idcs Last Modified By Args] (Updatable) The User or App who modified the Resource
- idcs_
last_ strupgraded_ in_ release (Updatable) The release number when the resource was upgraded.
- idcs_
prevented_ Sequence[str]operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- members
Domains
Group Member Args] (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
Domains
Group Meta Args] (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- non_
unique_ strdisplay_ name (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_ strschema_ version (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- schemas Sequence[str]
(Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.
- Domains
Group Tag Args] (Updatable) A list of tags on this resource.
- tenancy_
ocid str (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Args (Updatable) Oracle Cloud Infrastructure Tags.
- urnietfparamsscimschemasoracleidcsextensiondbcs_
groups DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondbcs Group Args] (Updatable) Schema for Database Service Resource
- urnietfparamsscimschemasoracleidcsextensiondynamic_
group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiondynamic Group Args (Updatable) Dynamic Group
- urnietfparamsscimschemasoracleidcsextensiongroup_
group DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group Args (Updatable) Idcs Group
- urnietfparamsscimschemasoracleidcsextensionposix_
group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionposix Group Args (Updatable) POSIX Group extension
- urnietfparamsscimschemasoracleidcsextensionrequestable_
group DomainsGroup Urnietfparamsscimschemasoracleidcsextensionrequestable Group Args (Updatable) Requestable Group
- attribute
Sets List<String> (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.
- attributes String
(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
(Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- compartment
Ocid String (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- delete
In BooleanProgress (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long.
- display
Name String (Updatable) Group display name
- domain
Ocid String (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
- external
Id 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.
- idcs
Created List<Property Map>Bies (Updatable) The User or App who created the Resource
- idcs
Endpoint String The basic endpoint for the identity domain
- idcs
Last List<Property Map>Modified Bies (Updatable) The User or App who modified the Resource
- idcs
Last StringUpgraded In Release (Updatable) The release number when the resource was upgraded.
- idcs
Prevented List<String>Operations (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- 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.
- non
Unique StringDisplay Name (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.
- resource
Type StringSchema Version (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned.
- schemas List<String>
(Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard "enterprise" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior.
- List<Property Map>
(Updatable) A list of tags on this resource.
- tenancy
Ocid String (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Property Map
(Updatable) Oracle Cloud Infrastructure Tags.
- urnietfparamsscimschemasoracleidcsextensiondbcs
Groups List<Property Map> (Updatable) Schema for Database Service Resource
- urnietfparamsscimschemasoracleidcsextensiondynamic
Group Property Map (Updatable) Dynamic Group
- urnietfparamsscimschemasoracleidcsextensiongroup
Group Property Map (Updatable) Idcs Group
- urnietfparamsscimschemasoracleidcsextensionposix
Group Property Map (Updatable) POSIX Group extension
- urnietfparamsscimschemasoracleidcsextensionrequestable
Group Property Map (Updatable) Requestable Group
Supporting Types
DomainsGroupIdcsCreatedBy
DomainsGroupIdcsLastModifiedBy
DomainsGroupMember
- Type string
(Updatable) The type of the entity that created this Group.
- Value string
(Updatable) The ID of the App.
- Date
Added string (Updatable) The DateTime the member was added to the Group.
- Display string
(Updatable) App Display Name
- Membership
Ocid 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.
- Date
Added string (Updatable) The DateTime the member was added to the Group.
- Display string
(Updatable) App Display Name
- Membership
Ocid 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.
- date
Added String (Updatable) The DateTime the member was added to the Group.
- display String
(Updatable) App Display Name
- membership
Ocid 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.
- date
Added string (Updatable) The DateTime the member was added to the Group.
- display string
(Updatable) App Display Name
- membership
Ocid 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.
- date
Added String (Updatable) The DateTime the member was added to the Group.
- display String
(Updatable) App Display Name
- membership
Ocid 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
- Last
Modified string (Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- Location string
(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- Resource
Type 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
- Last
Modified string (Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- Location string
(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- Resource
Type 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
- last
Modified String (Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location String
(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource
Type 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
- last
Modified string (Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location string
(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource
Type 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
- last
Modified String (Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.
- location String
(Updatable) The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
- resource
Type 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
DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTags
- List<Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Defined Tag> (Updatable) Oracle Cloud Infrastructure Defined Tags
- List<Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Freeform Tag> (Updatable) Oracle Cloud Infrastructure Freeform Tags
- string
(Updatable) Oracle Cloud Infrastructure Tag slug
- []Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Defined Tag (Updatable) Oracle Cloud Infrastructure Defined Tags
- []Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Freeform Tag (Updatable) Oracle Cloud Infrastructure Freeform Tags
- string
(Updatable) Oracle Cloud Infrastructure Tag slug
- List<Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Defined Tag> (Updatable) Oracle Cloud Infrastructure Defined Tags
- List<Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Freeform Tag> (Updatable) Oracle Cloud Infrastructure Freeform Tags
- String
(Updatable) Oracle Cloud Infrastructure Tag slug
- Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Defined Tag[] (Updatable) Oracle Cloud Infrastructure Defined Tags
- Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Freeform Tag[] (Updatable) Oracle Cloud Infrastructure Freeform Tags
- string
(Updatable) Oracle Cloud Infrastructure Tag slug
- Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Defined Tag] (Updatable) Oracle Cloud Infrastructure Defined Tags
- Domains
Group Urnietfparamsscimschemasoracleidcsextension Oci Tags Freeform Tag] (Updatable) Oracle Cloud Infrastructure Freeform Tags
- tag_
slug str (Updatable) Oracle Cloud Infrastructure Tag slug
- List<Property Map>
(Updatable) Oracle Cloud Infrastructure Defined Tags
- List<Property Map>
(Updatable) Oracle Cloud Infrastructure Freeform Tags
- String
(Updatable) Oracle Cloud Infrastructure Tag slug
DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsDefinedTag
DomainsGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsFreeformTag
DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroup
- Domain
Level stringSchema (Updatable) DBCS Domain-level schema-name. This attribute refers implicitly to a value of 'domainLevelSchemaNames' for a particular DB Domain.
- Domain
Level List<DomainsSchema Names Group Urnietfparamsscimschemasoracleidcsextensiondbcs Group Domain Level Schema Name> (Updatable) DBCS Domain-level schema-names. Each value is specific to a DB Domain.
- Instance
Level stringSchema (Updatable) DBCS instance-level schema-name. This attribute refers implicitly to a value of 'instanceLevelSchemaNames' for a particular DB Instance.
- Instance
Level List<DomainsSchema Names Group Urnietfparamsscimschemasoracleidcsextensiondbcs Group Instance Level Schema Name> (Updatable) DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.
- Domain
Level stringSchema (Updatable) DBCS Domain-level schema-name. This attribute refers implicitly to a value of 'domainLevelSchemaNames' for a particular DB Domain.
- Domain
Level []DomainsSchema Names Group Urnietfparamsscimschemasoracleidcsextensiondbcs Group Domain Level Schema Name (Updatable) DBCS Domain-level schema-names. Each value is specific to a DB Domain.
- Instance
Level stringSchema (Updatable) DBCS instance-level schema-name. This attribute refers implicitly to a value of 'instanceLevelSchemaNames' for a particular DB Instance.
- Instance
Level []DomainsSchema Names Group Urnietfparamsscimschemasoracleidcsextensiondbcs Group Instance Level Schema Name (Updatable) DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.
- domain
Level StringSchema (Updatable) DBCS Domain-level schema-name. This attribute refers implicitly to a value of 'domainLevelSchemaNames' for a particular DB Domain.
- domain
Level List<DomainsSchema Names Group Urnietfparamsscimschemasoracleidcsextensiondbcs Group Domain Level Schema Name> (Updatable) DBCS Domain-level schema-names. Each value is specific to a DB Domain.
- instance
Level StringSchema (Updatable) DBCS instance-level schema-name. This attribute refers implicitly to a value of 'instanceLevelSchemaNames' for a particular DB Instance.
- instance
Level List<DomainsSchema Names Group Urnietfparamsscimschemasoracleidcsextensiondbcs Group Instance Level Schema Name> (Updatable) DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.
- domain
Level stringSchema (Updatable) DBCS Domain-level schema-name. This attribute refers implicitly to a value of 'domainLevelSchemaNames' for a particular DB Domain.
- domain
Level DomainsSchema Names Group Urnietfparamsscimschemasoracleidcsextensiondbcs Group Domain Level Schema Name[] (Updatable) DBCS Domain-level schema-names. Each value is specific to a DB Domain.
- instance
Level stringSchema (Updatable) DBCS instance-level schema-name. This attribute refers implicitly to a value of 'instanceLevelSchemaNames' for a particular DB Instance.
- instance
Level DomainsSchema Names Group Urnietfparamsscimschemasoracleidcsextensiondbcs Group Instance Level Schema Name[] (Updatable) DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.
- domain_
level_ strschema (Updatable) DBCS Domain-level schema-name. This attribute refers implicitly to a value of 'domainLevelSchemaNames' for a particular DB Domain.
- domain_
level_ Domainsschema_ names Group Urnietfparamsscimschemasoracleidcsextensiondbcs Group Domain Level Schema Name] (Updatable) DBCS Domain-level schema-names. Each value is specific to a DB Domain.
- instance_
level_ strschema (Updatable) DBCS instance-level schema-name. This attribute refers implicitly to a value of 'instanceLevelSchemaNames' for a particular DB Instance.
- instance_
level_ Domainsschema_ names Group Urnietfparamsscimschemasoracleidcsextensiondbcs Group Instance Level Schema Name] (Updatable) DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.
- domain
Level StringSchema (Updatable) DBCS Domain-level schema-name. This attribute refers implicitly to a value of 'domainLevelSchemaNames' for a particular DB Domain.
- domain
Level List<Property Map>Schema Names (Updatable) DBCS Domain-level schema-names. Each value is specific to a DB Domain.
- instance
Level StringSchema (Updatable) DBCS instance-level schema-name. This attribute refers implicitly to a value of 'instanceLevelSchemaNames' for a particular DB Instance.
- instance
Level List<Property Map>Schema Names (Updatable) DBCS instance-level schema-names. Each schema-name is specific to a DB Instance.
DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupDomainLevelSchemaName
- Domain
Name string (Updatable) DBCS Domain Name
- Schema
Name string (Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.
- Domain
Name string (Updatable) DBCS Domain Name
- Schema
Name string (Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.
- domain
Name String (Updatable) DBCS Domain Name
- schema
Name String (Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.
- domain
Name string (Updatable) DBCS Domain Name
- schema
Name 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.
- domain
Name String (Updatable) DBCS Domain Name
- schema
Name String (Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.
DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondbcsGroupInstanceLevelSchemaName
- Db
Instance stringId (Updatable) App Id of DBCS App instance
- Schema
Name string (Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.
- Db
Instance stringId (Updatable) App Id of DBCS App instance
- Schema
Name string (Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.
- db
Instance StringId (Updatable) App Id of DBCS App instance
- schema
Name String (Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.
- db
Instance stringId (Updatable) App Id of DBCS App instance
- schema
Name string (Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.
- db_
instance_ strid (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.
- db
Instance StringId (Updatable) App Id of DBCS App instance
- schema
Name String (Updatable) The DBCS schema-name granted to this Group for the DB instance that 'dbInstanceId' specifies.
DomainsGroupUrnietfparamsscimschemasoracleidcsextensiondynamicGroup
- Membership
Rule string (Updatable) Membership rule
- Membership
Type string (Updatable) Membership type
- Membership
Rule string (Updatable) Membership rule
- Membership
Type string (Updatable) Membership type
- membership
Rule String (Updatable) Membership rule
- membership
Type String (Updatable) Membership type
- membership
Rule string (Updatable) Membership rule
- membership
Type string (Updatable) Membership type
- membership_
rule str (Updatable) Membership rule
- membership_
type str (Updatable) Membership type
- membership
Rule String (Updatable) Membership rule
- membership
Type String (Updatable) Membership type
DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroup
- App
Roles List<DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group App Role> (Updatable) A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
- Creation
Mechanism string (Updatable) Source from which this group got created.
- Description string
(Updatable) Group description
- Grants
List<Domains
Group Urnietfparamsscimschemasoracleidcsextensiongroup Group Grant> (Updatable) Grants assigned to group
- Owners
List<Domains
Group Urnietfparamsscimschemasoracleidcsextensiongroup Group Owner> (Updatable) Group owners
- Password
Policies List<DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group Password Policy> (Updatable) Password Policy associated with this Group.
- Synced
From List<DomainsApps Group Urnietfparamsscimschemasoracleidcsextensiongroup Group Synced From App> (Updatable) The entity that created this Group.
- App
Roles []DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group App Role (Updatable) A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
- Creation
Mechanism string (Updatable) Source from which this group got created.
- Description string
(Updatable) Group description
- Grants
[]Domains
Group Urnietfparamsscimschemasoracleidcsextensiongroup Group Grant (Updatable) Grants assigned to group
- Owners
[]Domains
Group Urnietfparamsscimschemasoracleidcsextensiongroup Group Owner (Updatable) Group owners
- Password
Policies []DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group Password Policy (Updatable) Password Policy associated with this Group.
- Synced
From []DomainsApps Group Urnietfparamsscimschemasoracleidcsextensiongroup Group Synced From App (Updatable) The entity that created this Group.
- app
Roles List<DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group App Role> (Updatable) A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
- creation
Mechanism String (Updatable) Source from which this group got created.
- description String
(Updatable) Group description
- grants
List<Domains
Group Urnietfparamsscimschemasoracleidcsextensiongroup Group Grant> (Updatable) Grants assigned to group
- owners
List<Domains
Group Urnietfparamsscimschemasoracleidcsextensiongroup Group Owner> (Updatable) Group owners
- password
Policies List<DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group Password Policy> (Updatable) Password Policy associated with this Group.
- synced
From List<DomainsApps Group Urnietfparamsscimschemasoracleidcsextensiongroup Group Synced From App> (Updatable) The entity that created this Group.
- app
Roles DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group App Role[] (Updatable) A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
- creation
Mechanism string (Updatable) Source from which this group got created.
- description string
(Updatable) Group description
- grants
Domains
Group Urnietfparamsscimschemasoracleidcsextensiongroup Group Grant[] (Updatable) Grants assigned to group
- owners
Domains
Group Urnietfparamsscimschemasoracleidcsextensiongroup Group Owner[] (Updatable) Group owners
- password
Policies DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group Password Policy[] (Updatable) Password Policy associated with this Group.
- synced
From DomainsApps Group Urnietfparamsscimschemasoracleidcsextensiongroup Group Synced From App[] (Updatable) The entity that created this Group.
- app_
roles DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group App Role] (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
Domains
Group Urnietfparamsscimschemasoracleidcsextensiongroup Group Grant] (Updatable) Grants assigned to group
- owners
Domains
Group Urnietfparamsscimschemasoracleidcsextensiongroup Group Owner] (Updatable) Group owners
- password_
policies DomainsGroup Urnietfparamsscimschemasoracleidcsextensiongroup Group Password Policy] (Updatable) Password Policy associated with this Group.
- synced_
from_ Domainsapps Group Urnietfparamsscimschemasoracleidcsextensiongroup Group Synced From App] (Updatable) The entity that created this Group.
- app
Roles List<Property Map> (Updatable) A list of appRoles that the user belongs to, either thorough direct membership, nested groups, or dynamically calculated
- creation
Mechanism 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
- password
Policies List<Property Map> (Updatable) Password Policy associated with this Group.
- synced
From List<Property Map>Apps (Updatable) The entity that created this Group.
DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupAppRole
- Value string
(Updatable) The ID of the App.
- Admin
Role bool (Updatable) If true, then the role provides administrative access privileges. READ-ONLY.
- App
Id string (Updatable) App identifier
- App
Name string (Updatable) Name of parent App. READ-ONLY.
- Display string
(Updatable) App Display Name
- Legacy
Group stringName (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.
- Admin
Role bool (Updatable) If true, then the role provides administrative access privileges. READ-ONLY.
- App
Id string (Updatable) App identifier
- App
Name string (Updatable) Name of parent App. READ-ONLY.
- Display string
(Updatable) App Display Name
- Legacy
Group stringName (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.
- admin
Role Boolean (Updatable) If true, then the role provides administrative access privileges. READ-ONLY.
- app
Id String (Updatable) App identifier
- app
Name String (Updatable) Name of parent App. READ-ONLY.
- display String
(Updatable) App Display Name
- legacy
Group StringName (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.
- admin
Role boolean (Updatable) If true, then the role provides administrative access privileges. READ-ONLY.
- app
Id string (Updatable) App identifier
- app
Name string (Updatable) Name of parent App. READ-ONLY.
- display string
(Updatable) App Display Name
- legacy
Group stringName (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_ strname (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.
- admin
Role Boolean (Updatable) If true, then the role provides administrative access privileges. READ-ONLY.
- app
Id String (Updatable) App identifier
- app
Name String (Updatable) Name of parent App. READ-ONLY.
- display String
(Updatable) App Display Name
- legacy
Group StringName (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
- App
Id string (Updatable) App identifier
- Grant
Mechanism 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 string (Updatable) App identifier
- Grant
Mechanism 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 String (Updatable) App identifier
- grant
Mechanism 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 string (Updatable) App identifier
- grant
Mechanism 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.
- app
Id String (Updatable) App identifier
- grant
Mechanism 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
DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupPasswordPolicy
DomainsGroupUrnietfparamsscimschemasoracleidcsextensiongroupGroupSyncedFromApp
DomainsGroupUrnietfparamsscimschemasoracleidcsextensionposixGroup
- Gid
Number int (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
- gid
Number Integer (Updatable) Integer uniquely identifying a group in a POSIX administrative domain
- gid
Number 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
- gid
Number 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.