1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Identity
  5. getDomainsMyApps
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

oci.Identity.getDomainsMyApps

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

    This data source provides the list of My Apps in Oracle Cloud Infrastructure Identity Domains service.

    Search My Apps

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testMyApps = oci.Identity.getDomainsMyApps({
        idcsEndpoint: testDomain.url,
        myAppCount: myAppMyAppCount,
        myAppFilter: myAppMyAppFilter,
        authorization: myAppAuthorization,
        resourceTypeSchemaVersion: myAppResourceTypeSchemaVersion,
        startIndex: myAppStartIndex,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_my_apps = oci.Identity.get_domains_my_apps(idcs_endpoint=test_domain["url"],
        my_app_count=my_app_my_app_count,
        my_app_filter=my_app_my_app_filter,
        authorization=my_app_authorization,
        resource_type_schema_version=my_app_resource_type_schema_version,
        start_index=my_app_start_index)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Identity"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Identity.GetDomainsMyApps(ctx, &identity.GetDomainsMyAppsArgs{
    			IdcsEndpoint:              testDomain.Url,
    			MyAppCount:                pulumi.IntRef(myAppMyAppCount),
    			MyAppFilter:               pulumi.StringRef(myAppMyAppFilter),
    			Authorization:             pulumi.StringRef(myAppAuthorization),
    			ResourceTypeSchemaVersion: pulumi.StringRef(myAppResourceTypeSchemaVersion),
    			StartIndex:                pulumi.IntRef(myAppStartIndex),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testMyApps = Oci.Identity.GetDomainsMyApps.Invoke(new()
        {
            IdcsEndpoint = testDomain.Url,
            MyAppCount = myAppMyAppCount,
            MyAppFilter = myAppMyAppFilter,
            Authorization = myAppAuthorization,
            ResourceTypeSchemaVersion = myAppResourceTypeSchemaVersion,
            StartIndex = myAppStartIndex,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Identity.IdentityFunctions;
    import com.pulumi.oci.Identity.inputs.GetDomainsMyAppsArgs;
    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) {
            final var testMyApps = IdentityFunctions.getDomainsMyApps(GetDomainsMyAppsArgs.builder()
                .idcsEndpoint(testDomain.url())
                .myAppCount(myAppMyAppCount)
                .myAppFilter(myAppMyAppFilter)
                .authorization(myAppAuthorization)
                .resourceTypeSchemaVersion(myAppResourceTypeSchemaVersion)
                .startIndex(myAppStartIndex)
                .build());
    
        }
    }
    
    variables:
      testMyApps:
        fn::invoke:
          Function: oci:Identity:getDomainsMyApps
          Arguments:
            idcsEndpoint: ${testDomain.url}
            myAppCount: ${myAppMyAppCount}
            myAppFilter: ${myAppMyAppFilter}
            authorization: ${myAppAuthorization}
            resourceTypeSchemaVersion: ${myAppResourceTypeSchemaVersion}
            startIndex: ${myAppStartIndex}
    

    Using getDomainsMyApps

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getDomainsMyApps(args: GetDomainsMyAppsArgs, opts?: InvokeOptions): Promise<GetDomainsMyAppsResult>
    function getDomainsMyAppsOutput(args: GetDomainsMyAppsOutputArgs, opts?: InvokeOptions): Output<GetDomainsMyAppsResult>
    def get_domains_my_apps(authorization: Optional[str] = None,
                            compartment_id: Optional[str] = None,
                            idcs_endpoint: Optional[str] = None,
                            my_app_count: Optional[int] = None,
                            my_app_filter: Optional[str] = None,
                            resource_type_schema_version: Optional[str] = None,
                            sort_by: Optional[str] = None,
                            sort_order: Optional[str] = None,
                            start_index: Optional[int] = None,
                            opts: Optional[InvokeOptions] = None) -> GetDomainsMyAppsResult
    def get_domains_my_apps_output(authorization: Optional[pulumi.Input[str]] = None,
                            compartment_id: Optional[pulumi.Input[str]] = None,
                            idcs_endpoint: Optional[pulumi.Input[str]] = None,
                            my_app_count: Optional[pulumi.Input[int]] = None,
                            my_app_filter: Optional[pulumi.Input[str]] = None,
                            resource_type_schema_version: Optional[pulumi.Input[str]] = None,
                            sort_by: Optional[pulumi.Input[str]] = None,
                            sort_order: Optional[pulumi.Input[str]] = None,
                            start_index: Optional[pulumi.Input[int]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetDomainsMyAppsResult]
    func GetDomainsMyApps(ctx *Context, args *GetDomainsMyAppsArgs, opts ...InvokeOption) (*GetDomainsMyAppsResult, error)
    func GetDomainsMyAppsOutput(ctx *Context, args *GetDomainsMyAppsOutputArgs, opts ...InvokeOption) GetDomainsMyAppsResultOutput

    > Note: This function is named GetDomainsMyApps in the Go SDK.

    public static class GetDomainsMyApps 
    {
        public static Task<GetDomainsMyAppsResult> InvokeAsync(GetDomainsMyAppsArgs args, InvokeOptions? opts = null)
        public static Output<GetDomainsMyAppsResult> Invoke(GetDomainsMyAppsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDomainsMyAppsResult> getDomainsMyApps(GetDomainsMyAppsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Identity/getDomainsMyApps:getDomainsMyApps
      arguments:
        # arguments dictionary

    The following arguments are supported:

    IdcsEndpoint string
    The basic endpoint for the identity domain
    Authorization string
    The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
    CompartmentId string
    MyAppCount int
    OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
    MyAppFilter string
    OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
    ResourceTypeSchemaVersion string
    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.
    SortBy string
    SortOrder string
    StartIndex int
    OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
    IdcsEndpoint string
    The basic endpoint for the identity domain
    Authorization string
    The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
    CompartmentId string
    MyAppCount int
    OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
    MyAppFilter string
    OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
    ResourceTypeSchemaVersion string
    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.
    SortBy string
    SortOrder string
    StartIndex int
    OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
    idcsEndpoint String
    The basic endpoint for the identity domain
    authorization String
    The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
    compartmentId String
    myAppCount Integer
    OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
    myAppFilter String
    OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
    resourceTypeSchemaVersion String
    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.
    sortBy String
    sortOrder String
    startIndex Integer
    OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
    idcsEndpoint string
    The basic endpoint for the identity domain
    authorization string
    The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
    compartmentId string
    myAppCount number
    OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
    myAppFilter string
    OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
    resourceTypeSchemaVersion string
    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.
    sortBy string
    sortOrder string
    startIndex number
    OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
    idcs_endpoint str
    The basic endpoint for the identity domain
    authorization str
    The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
    compartment_id str
    my_app_count int
    OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
    my_app_filter str
    OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
    resource_type_schema_version str
    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.
    sort_by str
    sort_order str
    start_index int
    OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.
    idcsEndpoint String
    The basic endpoint for the identity domain
    authorization String
    The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
    compartmentId String
    myAppCount Number
    OPTIONAL. An integer that indicates the desired maximum number of query results per page. 1000 is the largest value that you can use. See the Pagination section of the System for Cross-Domain Identity Management Protocol specification for more information. (Section 3.4.2.4).
    myAppFilter String
    OPTIONAL. The filter string that is used to request a subset of resources. The filter string MUST be a valid filter expression. See the Filtering section of the SCIM specification for more information (Section 3.4.2.2). The string should contain at least one condition that each item must match in order to be returned in the search results. Each condition specifies an attribute, an operator, and a value. Conditions within a filter can be connected by logical operators (such as AND and OR). Sets of conditions can be grouped together using parentheses.
    resourceTypeSchemaVersion String
    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.
    sortBy String
    sortOrder String
    startIndex Number
    OPTIONAL. An integer that indicates the 1-based index of the first query result. See the Pagination section of the SCIM specification for more information. (Section 3.4.2.4). The number of results pages to return. The first page is 1. Specify 2 to access the second page of results, and so on.

    getDomainsMyApps Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    IdcsEndpoint string
    ItemsPerPage int
    The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
    MyApps List<GetDomainsMyAppsMyApp>
    The list of my_apps.
    Schemas List<string>
    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. 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. REQUIRED.
    TotalResults int
    The total number of results returned by the list or query operation. The value may be larger than the number of resources returned such as when returning a single page of results where multiple pages are available. REQUIRED.
    Authorization string
    CompartmentId string
    MyAppCount int
    MyAppFilter string
    ResourceTypeSchemaVersion string
    SortBy string
    SortOrder string
    StartIndex int
    The 1-based index of the first result in the current set of list results. REQUIRED when partial results returned due to pagination.
    Id string
    The provider-assigned unique ID for this managed resource.
    IdcsEndpoint string
    ItemsPerPage int
    The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
    MyApps []GetDomainsMyAppsMyApp
    The list of my_apps.
    Schemas []string
    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. 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. REQUIRED.
    TotalResults int
    The total number of results returned by the list or query operation. The value may be larger than the number of resources returned such as when returning a single page of results where multiple pages are available. REQUIRED.
    Authorization string
    CompartmentId string
    MyAppCount int
    MyAppFilter string
    ResourceTypeSchemaVersion string
    SortBy string
    SortOrder string
    StartIndex int
    The 1-based index of the first result in the current set of list results. REQUIRED when partial results returned due to pagination.
    id String
    The provider-assigned unique ID for this managed resource.
    idcsEndpoint String
    itemsPerPage Integer
    The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
    myApps List<GetDomainsMyAppsMyApp>
    The list of my_apps.
    schemas List<String>
    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. 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. REQUIRED.
    totalResults Integer
    The total number of results returned by the list or query operation. The value may be larger than the number of resources returned such as when returning a single page of results where multiple pages are available. REQUIRED.
    authorization String
    compartmentId String
    myAppCount Integer
    myAppFilter String
    resourceTypeSchemaVersion String
    sortBy String
    sortOrder String
    startIndex Integer
    The 1-based index of the first result in the current set of list results. REQUIRED when partial results returned due to pagination.
    id string
    The provider-assigned unique ID for this managed resource.
    idcsEndpoint string
    itemsPerPage number
    The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
    myApps GetDomainsMyAppsMyApp[]
    The list of my_apps.
    schemas string[]
    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. 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. REQUIRED.
    totalResults number
    The total number of results returned by the list or query operation. The value may be larger than the number of resources returned such as when returning a single page of results where multiple pages are available. REQUIRED.
    authorization string
    compartmentId string
    myAppCount number
    myAppFilter string
    resourceTypeSchemaVersion string
    sortBy string
    sortOrder string
    startIndex number
    The 1-based index of the first result in the current set of list results. REQUIRED when partial results returned due to pagination.
    id str
    The provider-assigned unique ID for this managed resource.
    idcs_endpoint str
    items_per_page int
    The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
    my_apps Sequence[identity.GetDomainsMyAppsMyApp]
    The list of my_apps.
    schemas Sequence[str]
    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. 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. REQUIRED.
    total_results int
    The total number of results returned by the list or query operation. The value may be larger than the number of resources returned such as when returning a single page of results where multiple pages are available. REQUIRED.
    authorization str
    compartment_id str
    my_app_count int
    my_app_filter str
    resource_type_schema_version str
    sort_by str
    sort_order str
    start_index int
    The 1-based index of the first result in the current set of list results. REQUIRED when partial results returned due to pagination.
    id String
    The provider-assigned unique ID for this managed resource.
    idcsEndpoint String
    itemsPerPage Number
    The number of resources returned in a list response page. REQUIRED when partial results returned due to pagination.
    myApps List<Property Map>
    The list of my_apps.
    schemas List<String>
    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. 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. REQUIRED.
    totalResults Number
    The total number of results returned by the list or query operation. The value may be larger than the number of resources returned such as when returning a single page of results where multiple pages are available. REQUIRED.
    authorization String
    compartmentId String
    myAppCount Number
    myAppFilter String
    resourceTypeSchemaVersion String
    sortBy String
    sortOrder String
    startIndex Number
    The 1-based index of the first result in the current set of list results. REQUIRED when partial results returned due to pagination.

    Supporting Types

    GetDomainsMyAppsMyApp

    AccountType string
    Type of the Acccount
    Active bool
    If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App, and only administrative operations can be performed.
    Apps List<GetDomainsMyAppsMyAppApp>
    Application on which the account is based
    CompartmentOcid string
    Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
    DeleteInProgress bool
    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
    Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
    Favorite bool
    If true, this account has been marked as a favorite of the User who owns it.
    Id string
    Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
    IdcsCreatedBies List<GetDomainsMyAppsMyAppIdcsCreatedBy>
    The User or App who created the Resource
    IdcsLastModifiedBies List<GetDomainsMyAppsMyAppIdcsLastModifiedBy>
    The User or App who modified the Resource
    IdcsLastUpgradedInRelease string
    The release number when the resource was upgraded.
    IdcsPreventedOperations List<string>
    Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
    IsAccount bool
    If true, indicates that this managed object is an account, which is an identity that represents a user in the context of a specific application.
    LastAccessed string
    Last accessed timestamp of an application
    LaunchUrl string
    The URL that will be used to launch the application.
    Metas List<GetDomainsMyAppsMyAppMeta>
    A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
    Name string
    Name of the Account
    Ocid string
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    Owners List<GetDomainsMyAppsMyAppOwner>
    Owning user of the account
    Schemas List<string>
    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. 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. REQUIRED.
    Tags List<GetDomainsMyAppsMyAppTag>
    A list of tags on this resource.
    TenancyOcid string
    Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
    Uid string
    Unique identifier of the Account.
    UserWalletArtifacts List<GetDomainsMyAppsMyAppUserWalletArtifact>
    The UserWalletArtifact that contains the credentials that the system will use in performing Secure Form-Fill to log the User into this application.
    AccountType string
    Type of the Acccount
    Active bool
    If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App, and only administrative operations can be performed.
    Apps []GetDomainsMyAppsMyAppApp
    Application on which the account is based
    CompartmentOcid string
    Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
    DeleteInProgress bool
    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
    Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
    Favorite bool
    If true, this account has been marked as a favorite of the User who owns it.
    Id string
    Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
    IdcsCreatedBies []GetDomainsMyAppsMyAppIdcsCreatedBy
    The User or App who created the Resource
    IdcsLastModifiedBies []GetDomainsMyAppsMyAppIdcsLastModifiedBy
    The User or App who modified the Resource
    IdcsLastUpgradedInRelease string
    The release number when the resource was upgraded.
    IdcsPreventedOperations []string
    Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
    IsAccount bool
    If true, indicates that this managed object is an account, which is an identity that represents a user in the context of a specific application.
    LastAccessed string
    Last accessed timestamp of an application
    LaunchUrl string
    The URL that will be used to launch the application.
    Metas []GetDomainsMyAppsMyAppMeta
    A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
    Name string
    Name of the Account
    Ocid string
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    Owners []GetDomainsMyAppsMyAppOwner
    Owning user of the account
    Schemas []string
    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. 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. REQUIRED.
    Tags []GetDomainsMyAppsMyAppTag
    A list of tags on this resource.
    TenancyOcid string
    Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
    Uid string
    Unique identifier of the Account.
    UserWalletArtifacts []GetDomainsMyAppsMyAppUserWalletArtifact
    The UserWalletArtifact that contains the credentials that the system will use in performing Secure Form-Fill to log the User into this application.
    accountType String
    Type of the Acccount
    active Boolean
    If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App, and only administrative operations can be performed.
    apps List<GetDomainsMyAppsMyAppApp>
    Application on which the account is based
    compartmentOcid String
    Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
    deleteInProgress Boolean
    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
    Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
    favorite Boolean
    If true, this account has been marked as a favorite of the User who owns it.
    id String
    Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
    idcsCreatedBies List<GetDomainsMyAppsMyAppIdcsCreatedBy>
    The User or App who created the Resource
    idcsLastModifiedBies List<GetDomainsMyAppsMyAppIdcsLastModifiedBy>
    The User or App who modified the Resource
    idcsLastUpgradedInRelease String
    The release number when the resource was upgraded.
    idcsPreventedOperations List<String>
    Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
    isAccount Boolean
    If true, indicates that this managed object is an account, which is an identity that represents a user in the context of a specific application.
    lastAccessed String
    Last accessed timestamp of an application
    launchUrl String
    The URL that will be used to launch the application.
    metas List<GetDomainsMyAppsMyAppMeta>
    A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
    name String
    Name of the Account
    ocid String
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    owners List<GetDomainsMyAppsMyAppOwner>
    Owning user of the account
    schemas List<String>
    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. 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. REQUIRED.
    tags List<GetDomainsMyAppsMyAppTag>
    A list of tags on this resource.
    tenancyOcid String
    Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
    uid String
    Unique identifier of the Account.
    userWalletArtifacts List<GetDomainsMyAppsMyAppUserWalletArtifact>
    The UserWalletArtifact that contains the credentials that the system will use in performing Secure Form-Fill to log the User into this application.
    accountType string
    Type of the Acccount
    active boolean
    If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App, and only administrative operations can be performed.
    apps GetDomainsMyAppsMyAppApp[]
    Application on which the account is based
    compartmentOcid string
    Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
    deleteInProgress boolean
    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
    Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
    favorite boolean
    If true, this account has been marked as a favorite of the User who owns it.
    id string
    Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
    idcsCreatedBies GetDomainsMyAppsMyAppIdcsCreatedBy[]
    The User or App who created the Resource
    idcsLastModifiedBies GetDomainsMyAppsMyAppIdcsLastModifiedBy[]
    The User or App who modified the Resource
    idcsLastUpgradedInRelease string
    The release number when the resource was upgraded.
    idcsPreventedOperations string[]
    Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
    isAccount boolean
    If true, indicates that this managed object is an account, which is an identity that represents a user in the context of a specific application.
    lastAccessed string
    Last accessed timestamp of an application
    launchUrl string
    The URL that will be used to launch the application.
    metas GetDomainsMyAppsMyAppMeta[]
    A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
    name string
    Name of the Account
    ocid string
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    owners GetDomainsMyAppsMyAppOwner[]
    Owning user of the account
    schemas string[]
    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. 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. REQUIRED.
    tags GetDomainsMyAppsMyAppTag[]
    A list of tags on this resource.
    tenancyOcid string
    Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
    uid string
    Unique identifier of the Account.
    userWalletArtifacts GetDomainsMyAppsMyAppUserWalletArtifact[]
    The UserWalletArtifact that contains the credentials that the system will use in performing Secure Form-Fill to log the User into this application.
    account_type str
    Type of the Acccount
    active bool
    If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App, and only administrative operations can be performed.
    apps Sequence[identity.GetDomainsMyAppsMyAppApp]
    Application on which the account is based
    compartment_ocid str
    Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
    delete_in_progress bool
    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
    Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
    favorite bool
    If true, this account has been marked as a favorite of the User who owns it.
    id str
    Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
    idcs_created_bies Sequence[identity.GetDomainsMyAppsMyAppIdcsCreatedBy]
    The User or App who created the Resource
    idcs_last_modified_bies Sequence[identity.GetDomainsMyAppsMyAppIdcsLastModifiedBy]
    The User or App who modified the Resource
    idcs_last_upgraded_in_release str
    The release number when the resource was upgraded.
    idcs_prevented_operations Sequence[str]
    Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
    is_account bool
    If true, indicates that this managed object is an account, which is an identity that represents a user in the context of a specific application.
    last_accessed str
    Last accessed timestamp of an application
    launch_url str
    The URL that will be used to launch the application.
    metas Sequence[identity.GetDomainsMyAppsMyAppMeta]
    A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
    name str
    Name of the Account
    ocid str
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    owners Sequence[identity.GetDomainsMyAppsMyAppOwner]
    Owning user of the account
    schemas Sequence[str]
    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. 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. REQUIRED.
    tags Sequence[identity.GetDomainsMyAppsMyAppTag]
    A list of tags on this resource.
    tenancy_ocid str
    Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
    uid str
    Unique identifier of the Account.
    user_wallet_artifacts Sequence[identity.GetDomainsMyAppsMyAppUserWalletArtifact]
    The UserWalletArtifact that contains the credentials that the system will use in performing Secure Form-Fill to log the User into this application.
    accountType String
    Type of the Acccount
    active Boolean
    If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App, and only administrative operations can be performed.
    apps List<Property Map>
    Application on which the account is based
    compartmentOcid String
    Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
    deleteInProgress Boolean
    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
    Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives.
    favorite Boolean
    If true, this account has been marked as a favorite of the User who owns it.
    id String
    Unique identifier for the SCIM Resource as defined by the Service Provider. Each representation of the Resource MUST include a non-empty id value. This identifier MUST be unique across the Service Provider's entire set of Resources. It MUST be a stable, non-reassignable identifier that does not change when the same Resource is returned in subsequent requests. The value of the id attribute is always issued by the Service Provider and MUST never be specified by the Service Consumer. bulkId: is a reserved keyword and MUST NOT be used in the unique identifier.
    idcsCreatedBies List<Property Map>
    The User or App who created the Resource
    idcsLastModifiedBies List<Property Map>
    The User or App who modified the Resource
    idcsLastUpgradedInRelease String
    The release number when the resource was upgraded.
    idcsPreventedOperations List<String>
    Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
    isAccount Boolean
    If true, indicates that this managed object is an account, which is an identity that represents a user in the context of a specific application.
    lastAccessed String
    Last accessed timestamp of an application
    launchUrl String
    The URL that will be used to launch the application.
    metas List<Property Map>
    A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
    name String
    Name of the Account
    ocid String
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    owners List<Property Map>
    Owning user of the account
    schemas List<String>
    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. 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. REQUIRED.
    tags List<Property Map>
    A list of tags on this resource.
    tenancyOcid String
    Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
    uid String
    Unique identifier of the Account.
    userWalletArtifacts List<Property Map>
    The UserWalletArtifact that contains the credentials that the system will use in performing Secure Form-Fill to log the User into this application.

    GetDomainsMyAppsMyAppApp

    Active bool
    If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App, and only administrative operations can be performed.
    AppIcon string
    Application icon.
    AppThumbnail string
    Application thumbnail.
    Description string
    Application description
    Display string
    User display name
    IsAliasApp bool
    If true, this App is an AliasApp and it cannot be granted to an end user directly
    IsLoginTarget bool
    If true, this App allows runtime services to log end users into this App automatically.
    IsOpcService bool
    If true, this application is an Oracle Public Cloud service-instance.
    LoginMechanism string
    The protocol that runtime services will use to log end users in to this App automatically. If 'OIDC', then runtime services use the OpenID Connect protocol. If 'SAML', then runtime services use Security Assertion Markup Language protocol.
    Ref string
    UserWalletArtifact URI
    ServiceTypeUrn string
    This Uniform Resource Name (URN) value identifies the type of Oracle Public Cloud service of which this app is an instance.
    ShowInMyApps bool
    If true, this App will be displayed in the MyApps page of each end-user who has access to this App.
    Value string
    UserWalletArtifact identifier
    Active bool
    If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App, and only administrative operations can be performed.
    AppIcon string
    Application icon.
    AppThumbnail string
    Application thumbnail.
    Description string
    Application description
    Display string
    User display name
    IsAliasApp bool
    If true, this App is an AliasApp and it cannot be granted to an end user directly
    IsLoginTarget bool
    If true, this App allows runtime services to log end users into this App automatically.
    IsOpcService bool
    If true, this application is an Oracle Public Cloud service-instance.
    LoginMechanism string
    The protocol that runtime services will use to log end users in to this App automatically. If 'OIDC', then runtime services use the OpenID Connect protocol. If 'SAML', then runtime services use Security Assertion Markup Language protocol.
    Ref string
    UserWalletArtifact URI
    ServiceTypeUrn string
    This Uniform Resource Name (URN) value identifies the type of Oracle Public Cloud service of which this app is an instance.
    ShowInMyApps bool
    If true, this App will be displayed in the MyApps page of each end-user who has access to this App.
    Value string
    UserWalletArtifact identifier
    active Boolean
    If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App, and only administrative operations can be performed.
    appIcon String
    Application icon.
    appThumbnail String
    Application thumbnail.
    description String
    Application description
    display String
    User display name
    isAliasApp Boolean
    If true, this App is an AliasApp and it cannot be granted to an end user directly
    isLoginTarget Boolean
    If true, this App allows runtime services to log end users into this App automatically.
    isOpcService Boolean
    If true, this application is an Oracle Public Cloud service-instance.
    loginMechanism String
    The protocol that runtime services will use to log end users in to this App automatically. If 'OIDC', then runtime services use the OpenID Connect protocol. If 'SAML', then runtime services use Security Assertion Markup Language protocol.
    ref String
    UserWalletArtifact URI
    serviceTypeUrn String
    This Uniform Resource Name (URN) value identifies the type of Oracle Public Cloud service of which this app is an instance.
    showInMyApps Boolean
    If true, this App will be displayed in the MyApps page of each end-user who has access to this App.
    value String
    UserWalletArtifact identifier
    active boolean
    If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App, and only administrative operations can be performed.
    appIcon string
    Application icon.
    appThumbnail string
    Application thumbnail.
    description string
    Application description
    display string
    User display name
    isAliasApp boolean
    If true, this App is an AliasApp and it cannot be granted to an end user directly
    isLoginTarget boolean
    If true, this App allows runtime services to log end users into this App automatically.
    isOpcService boolean
    If true, this application is an Oracle Public Cloud service-instance.
    loginMechanism string
    The protocol that runtime services will use to log end users in to this App automatically. If 'OIDC', then runtime services use the OpenID Connect protocol. If 'SAML', then runtime services use Security Assertion Markup Language protocol.
    ref string
    UserWalletArtifact URI
    serviceTypeUrn string
    This Uniform Resource Name (URN) value identifies the type of Oracle Public Cloud service of which this app is an instance.
    showInMyApps boolean
    If true, this App will be displayed in the MyApps page of each end-user who has access to this App.
    value string
    UserWalletArtifact identifier
    active bool
    If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App, and only administrative operations can be performed.
    app_icon str
    Application icon.
    app_thumbnail str
    Application thumbnail.
    description str
    Application description
    display str
    User display name
    is_alias_app bool
    If true, this App is an AliasApp and it cannot be granted to an end user directly
    is_login_target bool
    If true, this App allows runtime services to log end users into this App automatically.
    is_opc_service bool
    If true, this application is an Oracle Public Cloud service-instance.
    login_mechanism str
    The protocol that runtime services will use to log end users in to this App automatically. If 'OIDC', then runtime services use the OpenID Connect protocol. If 'SAML', then runtime services use Security Assertion Markup Language protocol.
    ref str
    UserWalletArtifact URI
    service_type_urn str
    This Uniform Resource Name (URN) value identifies the type of Oracle Public Cloud service of which this app is an instance.
    show_in_my_apps bool
    If true, this App will be displayed in the MyApps page of each end-user who has access to this App.
    value str
    UserWalletArtifact identifier
    active Boolean
    If true, this App is able to participate in runtime services, such as automatic-login, OAuth, and SAML. If false, all runtime services are disabled for this App, and only administrative operations can be performed.
    appIcon String
    Application icon.
    appThumbnail String
    Application thumbnail.
    description String
    Application description
    display String
    User display name
    isAliasApp Boolean
    If true, this App is an AliasApp and it cannot be granted to an end user directly
    isLoginTarget Boolean
    If true, this App allows runtime services to log end users into this App automatically.
    isOpcService Boolean
    If true, this application is an Oracle Public Cloud service-instance.
    loginMechanism String
    The protocol that runtime services will use to log end users in to this App automatically. If 'OIDC', then runtime services use the OpenID Connect protocol. If 'SAML', then runtime services use Security Assertion Markup Language protocol.
    ref String
    UserWalletArtifact URI
    serviceTypeUrn String
    This Uniform Resource Name (URN) value identifies the type of Oracle Public Cloud service of which this app is an instance.
    showInMyApps Boolean
    If true, this App will be displayed in the MyApps page of each end-user who has access to this App.
    value String
    UserWalletArtifact identifier

    GetDomainsMyAppsMyAppIdcsCreatedBy

    Display string
    User display name
    Ocid string
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    Ref string
    UserWalletArtifact URI
    Type string
    The type of resource, User or App, that modified this Resource
    Value string
    UserWalletArtifact identifier
    Display string
    User display name
    Ocid string
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    Ref string
    UserWalletArtifact URI
    Type string
    The type of resource, User or App, that modified this Resource
    Value string
    UserWalletArtifact identifier
    display String
    User display name
    ocid String
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    ref String
    UserWalletArtifact URI
    type String
    The type of resource, User or App, that modified this Resource
    value String
    UserWalletArtifact identifier
    display string
    User display name
    ocid string
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    ref string
    UserWalletArtifact URI
    type string
    The type of resource, User or App, that modified this Resource
    value string
    UserWalletArtifact identifier
    display str
    User display name
    ocid str
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    ref str
    UserWalletArtifact URI
    type str
    The type of resource, User or App, that modified this Resource
    value str
    UserWalletArtifact identifier
    display String
    User display name
    ocid String
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    ref String
    UserWalletArtifact URI
    type String
    The type of resource, User or App, that modified this Resource
    value String
    UserWalletArtifact identifier

    GetDomainsMyAppsMyAppIdcsLastModifiedBy

    Display string
    User display name
    Ocid string
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    Ref string
    UserWalletArtifact URI
    Type string
    The type of resource, User or App, that modified this Resource
    Value string
    UserWalletArtifact identifier
    Display string
    User display name
    Ocid string
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    Ref string
    UserWalletArtifact URI
    Type string
    The type of resource, User or App, that modified this Resource
    Value string
    UserWalletArtifact identifier
    display String
    User display name
    ocid String
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    ref String
    UserWalletArtifact URI
    type String
    The type of resource, User or App, that modified this Resource
    value String
    UserWalletArtifact identifier
    display string
    User display name
    ocid string
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    ref string
    UserWalletArtifact URI
    type string
    The type of resource, User or App, that modified this Resource
    value string
    UserWalletArtifact identifier
    display str
    User display name
    ocid str
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    ref str
    UserWalletArtifact URI
    type str
    The type of resource, User or App, that modified this Resource
    value str
    UserWalletArtifact identifier
    display String
    User display name
    ocid String
    Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
    ref String
    UserWalletArtifact URI
    type String
    The type of resource, User or App, that modified this Resource
    value String
    UserWalletArtifact identifier

    GetDomainsMyAppsMyAppMeta

    Created string
    The DateTime the Resource was added to the Service Provider
    LastModified string
    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
    The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
    ResourceType string
    Name of the resource type of the resource--for example, Users or Groups
    Version string
    The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
    Created string
    The DateTime the Resource was added to the Service Provider
    LastModified string
    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
    The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
    ResourceType string
    Name of the resource type of the resource--for example, Users or Groups
    Version string
    The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
    created String
    The DateTime the Resource was added to the Service Provider
    lastModified String
    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
    The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
    resourceType String
    Name of the resource type of the resource--for example, Users or Groups
    version String
    The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
    created string
    The DateTime the Resource was added to the Service Provider
    lastModified string
    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
    The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
    resourceType string
    Name of the resource type of the resource--for example, Users or Groups
    version string
    The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
    created str
    The DateTime the Resource was added to the Service Provider
    last_modified str
    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
    The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
    resource_type str
    Name of the resource type of the resource--for example, Users or Groups
    version str
    The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
    created String
    The DateTime the Resource was added to the Service Provider
    lastModified String
    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
    The URI of the Resource being returned. This value MUST be the same as the Location HTTP response header.
    resourceType String
    Name of the resource type of the resource--for example, Users or Groups
    version String
    The version of the Resource being returned. This value must be the same as the ETag HTTP response header.

    GetDomainsMyAppsMyAppOwner

    Display string
    User display name
    Ref string
    UserWalletArtifact URI
    Value string
    UserWalletArtifact identifier
    Display string
    User display name
    Ref string
    UserWalletArtifact URI
    Value string
    UserWalletArtifact identifier
    display String
    User display name
    ref String
    UserWalletArtifact URI
    value String
    UserWalletArtifact identifier
    display string
    User display name
    ref string
    UserWalletArtifact URI
    value string
    UserWalletArtifact identifier
    display str
    User display name
    ref str
    UserWalletArtifact URI
    value str
    UserWalletArtifact identifier
    display String
    User display name
    ref String
    UserWalletArtifact URI
    value String
    UserWalletArtifact identifier

    GetDomainsMyAppsMyAppTag

    Key string
    Key or name of the tag.
    Value string
    UserWalletArtifact identifier
    Key string
    Key or name of the tag.
    Value string
    UserWalletArtifact identifier
    key String
    Key or name of the tag.
    value String
    UserWalletArtifact identifier
    key string
    Key or name of the tag.
    value string
    UserWalletArtifact identifier
    key str
    Key or name of the tag.
    value str
    UserWalletArtifact identifier
    key String
    Key or name of the tag.
    value String
    UserWalletArtifact identifier

    GetDomainsMyAppsMyAppUserWalletArtifact

    Ref string
    UserWalletArtifact URI
    Value string
    UserWalletArtifact identifier
    Ref string
    UserWalletArtifact URI
    Value string
    UserWalletArtifact identifier
    ref String
    UserWalletArtifact URI
    value String
    UserWalletArtifact identifier
    ref string
    UserWalletArtifact URI
    value string
    UserWalletArtifact identifier
    ref str
    UserWalletArtifact URI
    value str
    UserWalletArtifact identifier
    ref String
    UserWalletArtifact URI
    value String
    UserWalletArtifact identifier

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi