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

oci.Identity.DomainsDynamicResourceGroup

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

Create a DynamicResourceGroup

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.DomainsDynamicResourceGroup;
import com.pulumi.oci.Identity.DomainsDynamicResourceGroupArgs;
import com.pulumi.oci.Identity.inputs.DomainsDynamicResourceGroupTagArgs;
import com.pulumi.oci.Identity.inputs.DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs;
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 testDynamicResourceGroup = new DomainsDynamicResourceGroup("testDynamicResourceGroup", DomainsDynamicResourceGroupArgs.builder()        
            .displayName(var_.dynamic_resource_group_display_name())
            .idcsEndpoint(data.oci_identity_domain().test_domain().url())
            .matchingRule(var_.dynamic_resource_group_matching_rule())
            .schemas("urn:ietf:params:scim:schemas:oracle:idcs:DynamicResourceGroup")
            .attributeSets()
            .attributes("")
            .authorization(var_.dynamic_resource_group_authorization())
            .description(var_.dynamic_resource_group_description())
            .id(var_.dynamic_resource_group_id())
            .ocid(var_.dynamic_resource_group_ocid())
            .resourceTypeSchemaVersion(var_.dynamic_resource_group_resource_type_schema_version())
            .tags(DomainsDynamicResourceGroupTagArgs.builder()
                .key(var_.dynamic_resource_group_tags_key())
                .value(var_.dynamic_resource_group_tags_value())
                .build())
            .urnietfparamsscimschemasoracleidcsextensionOciTags(DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs.builder()
                .definedTags(DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsDefinedTagArgs.builder()
                    .key(var_.dynamic_resource_group_urnietfparamsscimschemasoracleidcsextension_oci_tags_defined_tags_key())
                    .namespace(var_.dynamic_resource_group_urnietfparamsscimschemasoracleidcsextension_oci_tags_defined_tags_namespace())
                    .value(var_.dynamic_resource_group_urnietfparamsscimschemasoracleidcsextension_oci_tags_defined_tags_value())
                    .build())
                .freeformTags(DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsFreeformTagArgs.builder()
                    .key(var_.dynamic_resource_group_urnietfparamsscimschemasoracleidcsextension_oci_tags_freeform_tags_key())
                    .value(var_.dynamic_resource_group_urnietfparamsscimschemasoracleidcsextension_oci_tags_freeform_tags_value())
                    .build())
                .build())
            .build());

    }
}

Coming soon!

Coming soon!

resources:
  testDynamicResourceGroup:
    type: oci:Identity:DomainsDynamicResourceGroup
    properties:
      #Required
      displayName: ${var.dynamic_resource_group_display_name}
      idcsEndpoint: ${data.oci_identity_domain.test_domain.url}
      matchingRule: ${var.dynamic_resource_group_matching_rule}
      schemas:
        - urn:ietf:params:scim:schemas:oracle:idcs:DynamicResourceGroup
      #Optional
      attributeSets: []
      attributes:
      authorization: ${var.dynamic_resource_group_authorization}
      description: ${var.dynamic_resource_group_description}
      id: ${var.dynamic_resource_group_id}
      ocid: ${var.dynamic_resource_group_ocid}
      resourceTypeSchemaVersion: ${var.dynamic_resource_group_resource_type_schema_version}
      tags:
        - key: ${var.dynamic_resource_group_tags_key}
          value: ${var.dynamic_resource_group_tags_value}
      urnietfparamsscimschemasoracleidcsextensionOciTags:
        definedTags:
          - key: ${var.dynamic_resource_group_urnietfparamsscimschemasoracleidcsextension_oci_tags_defined_tags_key}
            namespace: ${var.dynamic_resource_group_urnietfparamsscimschemasoracleidcsextension_oci_tags_defined_tags_namespace}
            value: ${var.dynamic_resource_group_urnietfparamsscimschemasoracleidcsextension_oci_tags_defined_tags_value}
        freeformTags:
          - key: ${var.dynamic_resource_group_urnietfparamsscimschemasoracleidcsextension_oci_tags_freeform_tags_key}
            value: ${var.dynamic_resource_group_urnietfparamsscimschemasoracleidcsextension_oci_tags_freeform_tags_value}

Create DomainsDynamicResourceGroup Resource

new DomainsDynamicResourceGroup(name: string, args: DomainsDynamicResourceGroupArgs, opts?: CustomResourceOptions);
@overload
def DomainsDynamicResourceGroup(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                attribute_sets: Optional[Sequence[str]] = None,
                                attributes: Optional[str] = None,
                                authorization: Optional[str] = None,
                                description: Optional[str] = None,
                                display_name: Optional[str] = None,
                                idcs_endpoint: Optional[str] = None,
                                matching_rule: Optional[str] = None,
                                ocid: Optional[str] = None,
                                resource_type_schema_version: Optional[str] = None,
                                schemas: Optional[Sequence[str]] = None,
                                tags: Optional[Sequence[_identity.DomainsDynamicResourceGroupTagArgs]] = None,
                                urnietfparamsscimschemasoracleidcsextension_oci_tags: Optional[_identity.DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs] = None)
@overload
def DomainsDynamicResourceGroup(resource_name: str,
                                args: DomainsDynamicResourceGroupArgs,
                                opts: Optional[ResourceOptions] = None)
func NewDomainsDynamicResourceGroup(ctx *Context, name string, args DomainsDynamicResourceGroupArgs, opts ...ResourceOption) (*DomainsDynamicResourceGroup, error)
public DomainsDynamicResourceGroup(string name, DomainsDynamicResourceGroupArgs args, CustomResourceOptions? opts = null)
public DomainsDynamicResourceGroup(String name, DomainsDynamicResourceGroupArgs args)
public DomainsDynamicResourceGroup(String name, DomainsDynamicResourceGroupArgs args, CustomResourceOptions options)
type: oci:Identity:DomainsDynamicResourceGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

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

DomainsDynamicResourceGroup 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 DomainsDynamicResourceGroup resource accepts the following input properties:

DisplayName string

(Updatable) User-friendly, mutable identifier

IdcsEndpoint string

The basic endpoint for the identity domain

MatchingRule string

(Updatable) Store as a string the matching-rule for this Dynamic Resource Group. This may match any number of Apps in this Domain, as well as matching any number of Oracle Cloud Infrastructure resources that are not in any Domain but that are in the Oracle Cloud Infrastructure Compartment that contains this Domain.

Schemas List<string>

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

AttributeSets List<string>

(Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

Attributes string

(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

Authorization string

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

Description string

(Updatable) text that explains the purpose of this Dynamic Resource Group

Ocid string

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

ResourceTypeSchemaVersion string

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

Tags List<DomainsDynamicResourceGroupTagArgs>

(Updatable) A list of tags on this resource.

UrnietfparamsscimschemasoracleidcsextensionOciTags DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

DisplayName string

(Updatable) User-friendly, mutable identifier

IdcsEndpoint string

The basic endpoint for the identity domain

MatchingRule string

(Updatable) Store as a string the matching-rule for this Dynamic Resource Group. This may match any number of Apps in this Domain, as well as matching any number of Oracle Cloud Infrastructure resources that are not in any Domain but that are in the Oracle Cloud Infrastructure Compartment that contains this Domain.

Schemas []string

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

AttributeSets []string

(Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

Attributes string

(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

Authorization string

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

Description string

(Updatable) text that explains the purpose of this Dynamic Resource Group

Ocid string

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

ResourceTypeSchemaVersion string

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

Tags []DomainsDynamicResourceGroupTagArgs

(Updatable) A list of tags on this resource.

UrnietfparamsscimschemasoracleidcsextensionOciTags DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

displayName String

(Updatable) User-friendly, mutable identifier

idcsEndpoint String

The basic endpoint for the identity domain

matchingRule String

(Updatable) Store as a string the matching-rule for this Dynamic Resource Group. This may match any number of Apps in this Domain, as well as matching any number of Oracle Cloud Infrastructure resources that are not in any Domain but that are in the Oracle Cloud Infrastructure Compartment that contains this Domain.

schemas List<String>

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

attributeSets List<String>

(Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

attributes String

(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

authorization String

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

description String

(Updatable) text that explains the purpose of this Dynamic Resource Group

ocid String

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

resourceTypeSchemaVersion String

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

tags List<DomainsDynamicResourceGroupTagArgs>

(Updatable) A list of tags on this resource.

urnietfparamsscimschemasoracleidcsextensionOciTags DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

displayName string

(Updatable) User-friendly, mutable identifier

idcsEndpoint string

The basic endpoint for the identity domain

matchingRule string

(Updatable) Store as a string the matching-rule for this Dynamic Resource Group. This may match any number of Apps in this Domain, as well as matching any number of Oracle Cloud Infrastructure resources that are not in any Domain but that are in the Oracle Cloud Infrastructure Compartment that contains this Domain.

schemas string[]

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

attributeSets string[]

(Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

attributes string

(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

authorization string

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

description string

(Updatable) text that explains the purpose of this Dynamic Resource Group

ocid string

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

resourceTypeSchemaVersion string

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

tags DomainsDynamicResourceGroupTagArgs[]

(Updatable) A list of tags on this resource.

urnietfparamsscimschemasoracleidcsextensionOciTags DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

display_name str

(Updatable) User-friendly, mutable identifier

idcs_endpoint str

The basic endpoint for the identity domain

matching_rule str

(Updatable) Store as a string the matching-rule for this Dynamic Resource Group. This may match any number of Apps in this Domain, as well as matching any number of Oracle Cloud Infrastructure resources that are not in any Domain but that are in the Oracle Cloud Infrastructure Compartment that contains this Domain.

schemas Sequence[str]

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

attribute_sets Sequence[str]

(Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

attributes str

(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

authorization str

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

description str

(Updatable) text that explains the purpose of this Dynamic Resource Group

ocid str

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

resource_type_schema_version str

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

tags DomainsDynamicResourceGroupTagArgs]

(Updatable) A list of tags on this resource.

urnietfparamsscimschemasoracleidcsextension_oci_tags DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

displayName String

(Updatable) User-friendly, mutable identifier

idcsEndpoint String

The basic endpoint for the identity domain

matchingRule String

(Updatable) Store as a string the matching-rule for this Dynamic Resource Group. This may match any number of Apps in this Domain, as well as matching any number of Oracle Cloud Infrastructure resources that are not in any Domain but that are in the Oracle Cloud Infrastructure Compartment that contains this Domain.

schemas List<String>

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

attributeSets List<String>

(Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

attributes String

(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

authorization String

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

description String

(Updatable) text that explains the purpose of this Dynamic Resource Group

ocid String

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

resourceTypeSchemaVersion String

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

tags List<Property Map>

(Updatable) A list of tags on this resource.

urnietfparamsscimschemasoracleidcsextensionOciTags Property Map

(Updatable) Oracle Cloud Infrastructure Tags.

Outputs

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

CompartmentOcid string

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

DeleteInProgress bool

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

DomainOcid string

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

DynamicGroupAppRoles List<DomainsDynamicResourceGroupDynamicGroupAppRole>

(Updatable) A list of appRoles that are currently granted to this Dynamic Resource Group. The Identity service will assert these AppRoles for any resource that satisfies the matching-rule of this DynamicResourceGroup.

Grants List<DomainsDynamicResourceGroupGrant>

(Updatable) Grants assigned to group

Id string

The provider-assigned unique ID for this managed resource.

IdcsCreatedBies List<DomainsDynamicResourceGroupIdcsCreatedBy>

(Updatable) The User or App who created the Resource

IdcsLastModifiedBies List<DomainsDynamicResourceGroupIdcsLastModifiedBy>

(Updatable) The User or App who modified the Resource

IdcsLastUpgradedInRelease string

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

IdcsPreventedOperations List<string>

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

Metas List<DomainsDynamicResourceGroupMeta>

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

TenancyOcid string

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

CompartmentOcid string

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

DeleteInProgress bool

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

DomainOcid string

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

DynamicGroupAppRoles []DomainsDynamicResourceGroupDynamicGroupAppRole

(Updatable) A list of appRoles that are currently granted to this Dynamic Resource Group. The Identity service will assert these AppRoles for any resource that satisfies the matching-rule of this DynamicResourceGroup.

Grants []DomainsDynamicResourceGroupGrant

(Updatable) Grants assigned to group

Id string

The provider-assigned unique ID for this managed resource.

IdcsCreatedBies []DomainsDynamicResourceGroupIdcsCreatedBy

(Updatable) The User or App who created the Resource

IdcsLastModifiedBies []DomainsDynamicResourceGroupIdcsLastModifiedBy

(Updatable) The User or App who modified the Resource

IdcsLastUpgradedInRelease string

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

IdcsPreventedOperations []string

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

Metas []DomainsDynamicResourceGroupMeta

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

TenancyOcid string

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

compartmentOcid String

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

deleteInProgress Boolean

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

domainOcid String

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

dynamicGroupAppRoles List<DomainsDynamicResourceGroupDynamicGroupAppRole>

(Updatable) A list of appRoles that are currently granted to this Dynamic Resource Group. The Identity service will assert these AppRoles for any resource that satisfies the matching-rule of this DynamicResourceGroup.

grants List<DomainsDynamicResourceGroupGrant>

(Updatable) Grants assigned to group

id String

The provider-assigned unique ID for this managed resource.

idcsCreatedBies List<DomainsDynamicResourceGroupIdcsCreatedBy>

(Updatable) The User or App who created the Resource

idcsLastModifiedBies List<DomainsDynamicResourceGroupIdcsLastModifiedBy>

(Updatable) The User or App who modified the Resource

idcsLastUpgradedInRelease String

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

idcsPreventedOperations List<String>

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

metas List<DomainsDynamicResourceGroupMeta>

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

tenancyOcid String

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

compartmentOcid string

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

deleteInProgress boolean

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

domainOcid string

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

dynamicGroupAppRoles DomainsDynamicResourceGroupDynamicGroupAppRole[]

(Updatable) A list of appRoles that are currently granted to this Dynamic Resource Group. The Identity service will assert these AppRoles for any resource that satisfies the matching-rule of this DynamicResourceGroup.

grants DomainsDynamicResourceGroupGrant[]

(Updatable) Grants assigned to group

id string

The provider-assigned unique ID for this managed resource.

idcsCreatedBies DomainsDynamicResourceGroupIdcsCreatedBy[]

(Updatable) The User or App who created the Resource

idcsLastModifiedBies DomainsDynamicResourceGroupIdcsLastModifiedBy[]

(Updatable) The User or App who modified the Resource

idcsLastUpgradedInRelease string

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

idcsPreventedOperations string[]

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

metas DomainsDynamicResourceGroupMeta[]

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

tenancyOcid string

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

compartment_ocid str

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

delete_in_progress bool

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

domain_ocid str

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

dynamic_group_app_roles DomainsDynamicResourceGroupDynamicGroupAppRole]

(Updatable) A list of appRoles that are currently granted to this Dynamic Resource Group. The Identity service will assert these AppRoles for any resource that satisfies the matching-rule of this DynamicResourceGroup.

grants DomainsDynamicResourceGroupGrant]

(Updatable) Grants assigned to group

id str

The provider-assigned unique ID for this managed resource.

idcs_created_bies DomainsDynamicResourceGroupIdcsCreatedBy]

(Updatable) The User or App who created the Resource

idcs_last_modified_bies DomainsDynamicResourceGroupIdcsLastModifiedBy]

(Updatable) The User or App who modified the Resource

idcs_last_upgraded_in_release str

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

idcs_prevented_operations Sequence[str]

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

metas DomainsDynamicResourceGroupMeta]

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

compartmentOcid String

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

deleteInProgress Boolean

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

domainOcid String

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

dynamicGroupAppRoles List<Property Map>

(Updatable) A list of appRoles that are currently granted to this Dynamic Resource Group. The Identity service will assert these AppRoles for any resource that satisfies the matching-rule of this DynamicResourceGroup.

grants List<Property Map>

(Updatable) Grants assigned to group

id String

The provider-assigned unique ID for this managed resource.

idcsCreatedBies List<Property Map>

(Updatable) The User or App who created the Resource

idcsLastModifiedBies List<Property Map>

(Updatable) The User or App who modified the Resource

idcsLastUpgradedInRelease String

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

idcsPreventedOperations List<String>

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

metas List<Property Map>

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

tenancyOcid String

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

Look up Existing DomainsDynamicResourceGroup Resource

Get an existing DomainsDynamicResourceGroup 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?: DomainsDynamicResourceGroupState, opts?: CustomResourceOptions): DomainsDynamicResourceGroup
@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,
        description: Optional[str] = None,
        display_name: Optional[str] = None,
        domain_ocid: Optional[str] = None,
        dynamic_group_app_roles: Optional[Sequence[_identity.DomainsDynamicResourceGroupDynamicGroupAppRoleArgs]] = None,
        grants: Optional[Sequence[_identity.DomainsDynamicResourceGroupGrantArgs]] = None,
        idcs_created_bies: Optional[Sequence[_identity.DomainsDynamicResourceGroupIdcsCreatedByArgs]] = None,
        idcs_endpoint: Optional[str] = None,
        idcs_last_modified_bies: Optional[Sequence[_identity.DomainsDynamicResourceGroupIdcsLastModifiedByArgs]] = None,
        idcs_last_upgraded_in_release: Optional[str] = None,
        idcs_prevented_operations: Optional[Sequence[str]] = None,
        matching_rule: Optional[str] = None,
        metas: Optional[Sequence[_identity.DomainsDynamicResourceGroupMetaArgs]] = None,
        ocid: Optional[str] = None,
        resource_type_schema_version: Optional[str] = None,
        schemas: Optional[Sequence[str]] = None,
        tags: Optional[Sequence[_identity.DomainsDynamicResourceGroupTagArgs]] = None,
        tenancy_ocid: Optional[str] = None,
        urnietfparamsscimschemasoracleidcsextension_oci_tags: Optional[_identity.DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs] = None) -> DomainsDynamicResourceGroup
func GetDomainsDynamicResourceGroup(ctx *Context, name string, id IDInput, state *DomainsDynamicResourceGroupState, opts ...ResourceOption) (*DomainsDynamicResourceGroup, error)
public static DomainsDynamicResourceGroup Get(string name, Input<string> id, DomainsDynamicResourceGroupState? state, CustomResourceOptions? opts = null)
public static DomainsDynamicResourceGroup get(String name, Output<String> id, DomainsDynamicResourceGroupState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name
The unique name of the resulting resource.
id
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
AttributeSets List<string>

(Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

Attributes string

(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

Authorization string

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

CompartmentOcid string

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

DeleteInProgress bool

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

Description string

(Updatable) text that explains the purpose of this Dynamic Resource Group

DisplayName string

(Updatable) User-friendly, mutable identifier

DomainOcid string

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

DynamicGroupAppRoles List<DomainsDynamicResourceGroupDynamicGroupAppRoleArgs>

(Updatable) A list of appRoles that are currently granted to this Dynamic Resource Group. The Identity service will assert these AppRoles for any resource that satisfies the matching-rule of this DynamicResourceGroup.

Grants List<DomainsDynamicResourceGroupGrantArgs>

(Updatable) Grants assigned to group

IdcsCreatedBies List<DomainsDynamicResourceGroupIdcsCreatedByArgs>

(Updatable) The User or App who created the Resource

IdcsEndpoint string

The basic endpoint for the identity domain

IdcsLastModifiedBies List<DomainsDynamicResourceGroupIdcsLastModifiedByArgs>

(Updatable) The User or App who modified the Resource

IdcsLastUpgradedInRelease string

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

IdcsPreventedOperations List<string>

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

MatchingRule string

(Updatable) Store as a string the matching-rule for this Dynamic Resource Group. This may match any number of Apps in this Domain, as well as matching any number of Oracle Cloud Infrastructure resources that are not in any Domain but that are in the Oracle Cloud Infrastructure Compartment that contains this Domain.

Metas List<DomainsDynamicResourceGroupMetaArgs>

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

Ocid string

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

ResourceTypeSchemaVersion string

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

Schemas List<string>

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

Tags List<DomainsDynamicResourceGroupTagArgs>

(Updatable) A list of tags on this resource.

TenancyOcid string

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

UrnietfparamsscimschemasoracleidcsextensionOciTags DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

AttributeSets []string

(Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

Attributes string

(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

Authorization string

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

CompartmentOcid string

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

DeleteInProgress bool

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

Description string

(Updatable) text that explains the purpose of this Dynamic Resource Group

DisplayName string

(Updatable) User-friendly, mutable identifier

DomainOcid string

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

DynamicGroupAppRoles []DomainsDynamicResourceGroupDynamicGroupAppRoleArgs

(Updatable) A list of appRoles that are currently granted to this Dynamic Resource Group. The Identity service will assert these AppRoles for any resource that satisfies the matching-rule of this DynamicResourceGroup.

Grants []DomainsDynamicResourceGroupGrantArgs

(Updatable) Grants assigned to group

IdcsCreatedBies []DomainsDynamicResourceGroupIdcsCreatedByArgs

(Updatable) The User or App who created the Resource

IdcsEndpoint string

The basic endpoint for the identity domain

IdcsLastModifiedBies []DomainsDynamicResourceGroupIdcsLastModifiedByArgs

(Updatable) The User or App who modified the Resource

IdcsLastUpgradedInRelease string

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

IdcsPreventedOperations []string

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

MatchingRule string

(Updatable) Store as a string the matching-rule for this Dynamic Resource Group. This may match any number of Apps in this Domain, as well as matching any number of Oracle Cloud Infrastructure resources that are not in any Domain but that are in the Oracle Cloud Infrastructure Compartment that contains this Domain.

Metas []DomainsDynamicResourceGroupMetaArgs

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

Ocid string

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

ResourceTypeSchemaVersion string

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

Schemas []string

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

Tags []DomainsDynamicResourceGroupTagArgs

(Updatable) A list of tags on this resource.

TenancyOcid string

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

UrnietfparamsscimschemasoracleidcsextensionOciTags DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

attributeSets List<String>

(Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

attributes String

(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

authorization String

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

compartmentOcid String

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

deleteInProgress Boolean

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

description String

(Updatable) text that explains the purpose of this Dynamic Resource Group

displayName String

(Updatable) User-friendly, mutable identifier

domainOcid String

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

dynamicGroupAppRoles List<DomainsDynamicResourceGroupDynamicGroupAppRoleArgs>

(Updatable) A list of appRoles that are currently granted to this Dynamic Resource Group. The Identity service will assert these AppRoles for any resource that satisfies the matching-rule of this DynamicResourceGroup.

grants List<DomainsDynamicResourceGroupGrantArgs>

(Updatable) Grants assigned to group

idcsCreatedBies List<DomainsDynamicResourceGroupIdcsCreatedByArgs>

(Updatable) The User or App who created the Resource

idcsEndpoint String

The basic endpoint for the identity domain

idcsLastModifiedBies List<DomainsDynamicResourceGroupIdcsLastModifiedByArgs>

(Updatable) The User or App who modified the Resource

idcsLastUpgradedInRelease String

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

idcsPreventedOperations List<String>

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

matchingRule String

(Updatable) Store as a string the matching-rule for this Dynamic Resource Group. This may match any number of Apps in this Domain, as well as matching any number of Oracle Cloud Infrastructure resources that are not in any Domain but that are in the Oracle Cloud Infrastructure Compartment that contains this Domain.

metas List<DomainsDynamicResourceGroupMetaArgs>

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

ocid String

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

resourceTypeSchemaVersion String

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

schemas List<String>

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

tags List<DomainsDynamicResourceGroupTagArgs>

(Updatable) A list of tags on this resource.

tenancyOcid String

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

urnietfparamsscimschemasoracleidcsextensionOciTags DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

attributeSets string[]

(Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

attributes string

(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

authorization string

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

compartmentOcid string

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

deleteInProgress boolean

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

description string

(Updatable) text that explains the purpose of this Dynamic Resource Group

displayName string

(Updatable) User-friendly, mutable identifier

domainOcid string

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

dynamicGroupAppRoles DomainsDynamicResourceGroupDynamicGroupAppRoleArgs[]

(Updatable) A list of appRoles that are currently granted to this Dynamic Resource Group. The Identity service will assert these AppRoles for any resource that satisfies the matching-rule of this DynamicResourceGroup.

grants DomainsDynamicResourceGroupGrantArgs[]

(Updatable) Grants assigned to group

idcsCreatedBies DomainsDynamicResourceGroupIdcsCreatedByArgs[]

(Updatable) The User or App who created the Resource

idcsEndpoint string

The basic endpoint for the identity domain

idcsLastModifiedBies DomainsDynamicResourceGroupIdcsLastModifiedByArgs[]

(Updatable) The User or App who modified the Resource

idcsLastUpgradedInRelease string

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

idcsPreventedOperations string[]

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

matchingRule string

(Updatable) Store as a string the matching-rule for this Dynamic Resource Group. This may match any number of Apps in this Domain, as well as matching any number of Oracle Cloud Infrastructure resources that are not in any Domain but that are in the Oracle Cloud Infrastructure Compartment that contains this Domain.

metas DomainsDynamicResourceGroupMetaArgs[]

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

ocid string

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

resourceTypeSchemaVersion string

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

schemas string[]

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

tags DomainsDynamicResourceGroupTagArgs[]

(Updatable) A list of tags on this resource.

tenancyOcid string

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

urnietfparamsscimschemasoracleidcsextensionOciTags DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

attribute_sets Sequence[str]

(Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

attributes str

(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

authorization str

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

compartment_ocid str

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

delete_in_progress bool

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

description str

(Updatable) text that explains the purpose of this Dynamic Resource Group

display_name str

(Updatable) User-friendly, mutable identifier

domain_ocid str

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

dynamic_group_app_roles DomainsDynamicResourceGroupDynamicGroupAppRoleArgs]

(Updatable) A list of appRoles that are currently granted to this Dynamic Resource Group. The Identity service will assert these AppRoles for any resource that satisfies the matching-rule of this DynamicResourceGroup.

grants DomainsDynamicResourceGroupGrantArgs]

(Updatable) Grants assigned to group

idcs_created_bies DomainsDynamicResourceGroupIdcsCreatedByArgs]

(Updatable) The User or App who created the Resource

idcs_endpoint str

The basic endpoint for the identity domain

idcs_last_modified_bies DomainsDynamicResourceGroupIdcsLastModifiedByArgs]

(Updatable) The User or App who modified the Resource

idcs_last_upgraded_in_release str

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

idcs_prevented_operations Sequence[str]

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

matching_rule str

(Updatable) Store as a string the matching-rule for this Dynamic Resource Group. This may match any number of Apps in this Domain, as well as matching any number of Oracle Cloud Infrastructure resources that are not in any Domain but that are in the Oracle Cloud Infrastructure Compartment that contains this Domain.

metas DomainsDynamicResourceGroupMetaArgs]

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

ocid str

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

resource_type_schema_version str

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

schemas Sequence[str]

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

tags DomainsDynamicResourceGroupTagArgs]

(Updatable) A list of tags on this resource.

tenancy_ocid str

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

urnietfparamsscimschemasoracleidcsextension_oci_tags DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsArgs

(Updatable) Oracle Cloud Infrastructure Tags.

attributeSets List<String>

(Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive.

attributes String

(Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.

authorization String

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

compartmentOcid String

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

deleteInProgress Boolean

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

description String

(Updatable) text that explains the purpose of this Dynamic Resource Group

displayName String

(Updatable) User-friendly, mutable identifier

domainOcid String

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

dynamicGroupAppRoles List<Property Map>

(Updatable) A list of appRoles that are currently granted to this Dynamic Resource Group. The Identity service will assert these AppRoles for any resource that satisfies the matching-rule of this DynamicResourceGroup.

grants List<Property Map>

(Updatable) Grants assigned to group

idcsCreatedBies List<Property Map>

(Updatable) The User or App who created the Resource

idcsEndpoint String

The basic endpoint for the identity domain

idcsLastModifiedBies List<Property Map>

(Updatable) The User or App who modified the Resource

idcsLastUpgradedInRelease String

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

idcsPreventedOperations List<String>

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

matchingRule String

(Updatable) Store as a string the matching-rule for this Dynamic Resource Group. This may match any number of Apps in this Domain, as well as matching any number of Oracle Cloud Infrastructure resources that are not in any Domain but that are in the Oracle Cloud Infrastructure Compartment that contains this Domain.

metas List<Property Map>

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

ocid String

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

resourceTypeSchemaVersion String

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

schemas List<String>

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

tags List<Property Map>

(Updatable) A list of tags on this resource.

tenancyOcid String

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

urnietfparamsscimschemasoracleidcsextensionOciTags Property Map

(Updatable) Oracle Cloud Infrastructure Tags.

Supporting Types

DomainsDynamicResourceGroupDynamicGroupAppRole

Value string

(Updatable) Oracle Cloud Infrastructure Tag value

AdminRole bool

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

AppId string

(Updatable) App identifier

AppName string

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

Display string

(Updatable) The displayName of the User or App who modified this Resource

LegacyGroupName string

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

Ref string

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

Value string

(Updatable) Oracle Cloud Infrastructure Tag value

AdminRole bool

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

AppId string

(Updatable) App identifier

AppName string

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

Display string

(Updatable) The displayName of the User or App who modified this Resource

LegacyGroupName string

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

Ref string

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

value String

(Updatable) Oracle Cloud Infrastructure Tag value

adminRole Boolean

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

appId String

(Updatable) App identifier

appName String

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

display String

(Updatable) The displayName of the User or App who modified this Resource

legacyGroupName String

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

ref String

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

value string

(Updatable) Oracle Cloud Infrastructure Tag value

adminRole boolean

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

appId string

(Updatable) App identifier

appName string

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

display string

(Updatable) The displayName of the User or App who modified this Resource

legacyGroupName string

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

ref string

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

value str

(Updatable) Oracle Cloud Infrastructure Tag value

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) The displayName of the User or App who modified this Resource

legacy_group_name str

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

ref str

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

value String

(Updatable) Oracle Cloud Infrastructure Tag value

adminRole Boolean

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

appId String

(Updatable) App identifier

appName String

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

display String

(Updatable) The displayName of the User or App who modified this Resource

legacyGroupName String

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

ref String

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

DomainsDynamicResourceGroupGrant

AppId string

(Updatable) App identifier

GrantMechanism string

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

Ref string

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

Value string

(Updatable) Oracle Cloud Infrastructure Tag value

AppId string

(Updatable) App identifier

GrantMechanism string

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

Ref string

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

Value string

(Updatable) Oracle Cloud Infrastructure Tag value

appId String

(Updatable) App identifier

grantMechanism String

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

ref String

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

value String

(Updatable) Oracle Cloud Infrastructure Tag value

appId string

(Updatable) App identifier

grantMechanism string

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

ref string

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

value string

(Updatable) Oracle Cloud Infrastructure Tag value

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) The URI of the SCIM resource that represents the User or App who modified this Resource

value str

(Updatable) Oracle Cloud Infrastructure Tag value

appId String

(Updatable) App identifier

grantMechanism String

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

ref String

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

value String

(Updatable) Oracle Cloud Infrastructure Tag value

DomainsDynamicResourceGroupIdcsCreatedBy

Value string

(Updatable) Oracle Cloud Infrastructure Tag value

Display string

(Updatable) The displayName of the User or App who modified this Resource

Ocid string

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

Ref string

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

Type string

(Updatable) The type of resource, User or App, that modified this Resource

Value string

(Updatable) Oracle Cloud Infrastructure Tag value

Display string

(Updatable) The displayName of the User or App who modified this Resource

Ocid string

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

Ref string

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

Type string

(Updatable) The type of resource, User or App, that modified this Resource

value String

(Updatable) Oracle Cloud Infrastructure Tag value

display String

(Updatable) The displayName of the User or App who modified this Resource

ocid String

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

ref String

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

type String

(Updatable) The type of resource, User or App, that modified this Resource

value string

(Updatable) Oracle Cloud Infrastructure Tag value

display string

(Updatable) The displayName of the User or App who modified this Resource

ocid string

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

ref string

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

type string

(Updatable) The type of resource, User or App, that modified this Resource

value str

(Updatable) Oracle Cloud Infrastructure Tag value

display str

(Updatable) The displayName of the User or App who modified this Resource

ocid str

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

ref str

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

type str

(Updatable) The type of resource, User or App, that modified this Resource

value String

(Updatable) Oracle Cloud Infrastructure Tag value

display String

(Updatable) The displayName of the User or App who modified this Resource

ocid String

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

ref String

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

type String

(Updatable) The type of resource, User or App, that modified this Resource

DomainsDynamicResourceGroupIdcsLastModifiedBy

Value string

(Updatable) Oracle Cloud Infrastructure Tag value

Display string

(Updatable) The displayName of the User or App who modified this Resource

Ocid string

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

Ref string

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

Type string

(Updatable) The type of resource, User or App, that modified this Resource

Value string

(Updatable) Oracle Cloud Infrastructure Tag value

Display string

(Updatable) The displayName of the User or App who modified this Resource

Ocid string

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

Ref string

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

Type string

(Updatable) The type of resource, User or App, that modified this Resource

value String

(Updatable) Oracle Cloud Infrastructure Tag value

display String

(Updatable) The displayName of the User or App who modified this Resource

ocid String

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

ref String

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

type String

(Updatable) The type of resource, User or App, that modified this Resource

value string

(Updatable) Oracle Cloud Infrastructure Tag value

display string

(Updatable) The displayName of the User or App who modified this Resource

ocid string

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

ref string

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

type string

(Updatable) The type of resource, User or App, that modified this Resource

value str

(Updatable) Oracle Cloud Infrastructure Tag value

display str

(Updatable) The displayName of the User or App who modified this Resource

ocid str

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

ref str

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

type str

(Updatable) The type of resource, User or App, that modified this Resource

value String

(Updatable) Oracle Cloud Infrastructure Tag value

display String

(Updatable) The displayName of the User or App who modified this Resource

ocid String

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

ref String

(Updatable) The URI of the SCIM resource that represents the User or App who modified this Resource

type String

(Updatable) The type of resource, User or App, that modified this Resource

DomainsDynamicResourceGroupMeta

Created string

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

LastModified string

(Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.

Location string

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

ResourceType string

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

Version string

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

Created string

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

LastModified string

(Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.

Location string

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

ResourceType string

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

Version string

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

created String

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

lastModified String

(Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.

location String

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

resourceType String

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

version String

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

created string

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

lastModified string

(Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.

location string

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

resourceType string

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

version string

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

created str

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

last_modified str

(Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.

location str

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

resource_type str

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

version str

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

created String

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

lastModified String

(Updatable) The most recent DateTime that the details of this Resource were updated at the Service Provider. If this Resource has never been modified since its initial creation, the value MUST be the same as the value of created. The attribute MUST be a DateTime.

location String

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

resourceType String

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

version String

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

DomainsDynamicResourceGroupTag

Key string

(Updatable) Oracle Cloud Infrastructure Tag key

Value string

(Updatable) Oracle Cloud Infrastructure Tag value

Key string

(Updatable) Oracle Cloud Infrastructure Tag key

Value string

(Updatable) Oracle Cloud Infrastructure Tag value

key String

(Updatable) Oracle Cloud Infrastructure Tag key

value String

(Updatable) Oracle Cloud Infrastructure Tag value

key string

(Updatable) Oracle Cloud Infrastructure Tag key

value string

(Updatable) Oracle Cloud Infrastructure Tag value

key str

(Updatable) Oracle Cloud Infrastructure Tag key

value str

(Updatable) Oracle Cloud Infrastructure Tag value

key String

(Updatable) Oracle Cloud Infrastructure Tag key

value String

(Updatable) Oracle Cloud Infrastructure Tag value

DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTags

DefinedTags List<DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsDefinedTag>

(Updatable) Oracle Cloud Infrastructure Defined Tags

FreeformTags List<DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsFreeformTag>

(Updatable) Oracle Cloud Infrastructure Freeform Tags

TagSlug string

(Updatable) Oracle Cloud Infrastructure Tag slug

DefinedTags []DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsDefinedTag

(Updatable) Oracle Cloud Infrastructure Defined Tags

FreeformTags []DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsFreeformTag

(Updatable) Oracle Cloud Infrastructure Freeform Tags

TagSlug string

(Updatable) Oracle Cloud Infrastructure Tag slug

definedTags List<DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsDefinedTag>

(Updatable) Oracle Cloud Infrastructure Defined Tags

freeformTags List<DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsFreeformTag>

(Updatable) Oracle Cloud Infrastructure Freeform Tags

tagSlug String

(Updatable) Oracle Cloud Infrastructure Tag slug

definedTags DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsDefinedTag[]

(Updatable) Oracle Cloud Infrastructure Defined Tags

freeformTags DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsFreeformTag[]

(Updatable) Oracle Cloud Infrastructure Freeform Tags

tagSlug string

(Updatable) Oracle Cloud Infrastructure Tag slug

defined_tags DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsDefinedTag]

(Updatable) Oracle Cloud Infrastructure Defined Tags

freeform_tags DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsFreeformTag]

(Updatable) Oracle Cloud Infrastructure Freeform Tags

tag_slug str

(Updatable) Oracle Cloud Infrastructure Tag slug

definedTags List<Property Map>

(Updatable) Oracle Cloud Infrastructure Defined Tags

freeformTags List<Property Map>

(Updatable) Oracle Cloud Infrastructure Freeform Tags

tagSlug String

(Updatable) Oracle Cloud Infrastructure Tag slug

DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsDefinedTag

Key string

(Updatable) Oracle Cloud Infrastructure Tag key

Namespace string

(Updatable) Oracle Cloud Infrastructure Tag namespace

Value string

(Updatable) Oracle Cloud Infrastructure Tag value

Key string

(Updatable) Oracle Cloud Infrastructure Tag key

Namespace string

(Updatable) Oracle Cloud Infrastructure Tag namespace

Value string

(Updatable) Oracle Cloud Infrastructure Tag value

key String

(Updatable) Oracle Cloud Infrastructure Tag key

namespace String

(Updatable) Oracle Cloud Infrastructure Tag namespace

value String

(Updatable) Oracle Cloud Infrastructure Tag value

key string

(Updatable) Oracle Cloud Infrastructure Tag key

namespace string

(Updatable) Oracle Cloud Infrastructure Tag namespace

value string

(Updatable) Oracle Cloud Infrastructure Tag value

key str

(Updatable) Oracle Cloud Infrastructure Tag key

namespace str

(Updatable) Oracle Cloud Infrastructure Tag namespace

value str

(Updatable) Oracle Cloud Infrastructure Tag value

key String

(Updatable) Oracle Cloud Infrastructure Tag key

namespace String

(Updatable) Oracle Cloud Infrastructure Tag namespace

value String

(Updatable) Oracle Cloud Infrastructure Tag value

DomainsDynamicResourceGroupUrnietfparamsscimschemasoracleidcsextensionOciTagsFreeformTag

Key string

(Updatable) Oracle Cloud Infrastructure Tag key

Value string

(Updatable) Oracle Cloud Infrastructure Tag value

Key string

(Updatable) Oracle Cloud Infrastructure Tag key

Value string

(Updatable) Oracle Cloud Infrastructure Tag value

key String

(Updatable) Oracle Cloud Infrastructure Tag key

value String

(Updatable) Oracle Cloud Infrastructure Tag value

key string

(Updatable) Oracle Cloud Infrastructure Tag key

value string

(Updatable) Oracle Cloud Infrastructure Tag value

key str

(Updatable) Oracle Cloud Infrastructure Tag key

value str

(Updatable) Oracle Cloud Infrastructure Tag value

key String

(Updatable) Oracle Cloud Infrastructure Tag key

value String

(Updatable) Oracle Cloud Infrastructure Tag value

Import

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

 $ pulumi import oci:Identity/domainsDynamicResourceGroup:DomainsDynamicResourceGroup test_dynamic_resource_group "idcsEndpoint/{idcsEndpoint}/dynamicResourceGroups/{dynamicResourceGroupId}"

Package Details

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

This Pulumi package is based on the oci Terraform Provider.