Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi
oci.Identity.getDomainsAccountMgmtInfo
Explore with Pulumi AI
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi
This data source provides details about a specific Account Mgmt Info resource in Oracle Cloud Infrastructure Identity Domains service.
Get Account Mgmt Info
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testAccountMgmtInfo = oci.Identity.getDomainsAccountMgmtInfo({
accountMgmtInfoId: testAccountMgmtInfoOciIdentityDomainsAccountMgmtInfo.id,
idcsEndpoint: testDomain.url,
attributeSets: ["all"],
attributes: "",
authorization: accountMgmtInfoAuthorization,
resourceTypeSchemaVersion: accountMgmtInfoResourceTypeSchemaVersion,
});
import pulumi
import pulumi_oci as oci
test_account_mgmt_info = oci.Identity.get_domains_account_mgmt_info(account_mgmt_info_id=test_account_mgmt_info_oci_identity_domains_account_mgmt_info["id"],
idcs_endpoint=test_domain["url"],
attribute_sets=["all"],
attributes="",
authorization=account_mgmt_info_authorization,
resource_type_schema_version=account_mgmt_info_resource_type_schema_version)
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.GetDomainsAccountMgmtInfo(ctx, &identity.GetDomainsAccountMgmtInfoArgs{
AccountMgmtInfoId: testAccountMgmtInfoOciIdentityDomainsAccountMgmtInfo.Id,
IdcsEndpoint: testDomain.Url,
AttributeSets: []string{
"all",
},
Attributes: pulumi.StringRef(""),
Authorization: pulumi.StringRef(accountMgmtInfoAuthorization),
ResourceTypeSchemaVersion: pulumi.StringRef(accountMgmtInfoResourceTypeSchemaVersion),
}, 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 testAccountMgmtInfo = Oci.Identity.GetDomainsAccountMgmtInfo.Invoke(new()
{
AccountMgmtInfoId = testAccountMgmtInfoOciIdentityDomainsAccountMgmtInfo.Id,
IdcsEndpoint = testDomain.Url,
AttributeSets = new[]
{
"all",
},
Attributes = "",
Authorization = accountMgmtInfoAuthorization,
ResourceTypeSchemaVersion = accountMgmtInfoResourceTypeSchemaVersion,
});
});
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.GetDomainsAccountMgmtInfoArgs;
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 testAccountMgmtInfo = IdentityFunctions.getDomainsAccountMgmtInfo(GetDomainsAccountMgmtInfoArgs.builder()
.accountMgmtInfoId(testAccountMgmtInfoOciIdentityDomainsAccountMgmtInfo.id())
.idcsEndpoint(testDomain.url())
.attributeSets("all")
.attributes("")
.authorization(accountMgmtInfoAuthorization)
.resourceTypeSchemaVersion(accountMgmtInfoResourceTypeSchemaVersion)
.build());
}
}
variables:
testAccountMgmtInfo:
fn::invoke:
Function: oci:Identity:getDomainsAccountMgmtInfo
Arguments:
accountMgmtInfoId: ${testAccountMgmtInfoOciIdentityDomainsAccountMgmtInfo.id}
idcsEndpoint: ${testDomain.url}
attributeSets:
- all
attributes:
authorization: ${accountMgmtInfoAuthorization}
resourceTypeSchemaVersion: ${accountMgmtInfoResourceTypeSchemaVersion}
Using getDomainsAccountMgmtInfo
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 getDomainsAccountMgmtInfo(args: GetDomainsAccountMgmtInfoArgs, opts?: InvokeOptions): Promise<GetDomainsAccountMgmtInfoResult>
function getDomainsAccountMgmtInfoOutput(args: GetDomainsAccountMgmtInfoOutputArgs, opts?: InvokeOptions): Output<GetDomainsAccountMgmtInfoResult>
def get_domains_account_mgmt_info(account_mgmt_info_id: Optional[str] = None,
attribute_sets: Optional[Sequence[str]] = None,
attributes: Optional[str] = None,
authorization: Optional[str] = None,
idcs_endpoint: Optional[str] = None,
resource_type_schema_version: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDomainsAccountMgmtInfoResult
def get_domains_account_mgmt_info_output(account_mgmt_info_id: Optional[pulumi.Input[str]] = None,
attribute_sets: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
attributes: Optional[pulumi.Input[str]] = None,
authorization: Optional[pulumi.Input[str]] = None,
idcs_endpoint: Optional[pulumi.Input[str]] = None,
resource_type_schema_version: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDomainsAccountMgmtInfoResult]
func GetDomainsAccountMgmtInfo(ctx *Context, args *GetDomainsAccountMgmtInfoArgs, opts ...InvokeOption) (*GetDomainsAccountMgmtInfoResult, error)
func GetDomainsAccountMgmtInfoOutput(ctx *Context, args *GetDomainsAccountMgmtInfoOutputArgs, opts ...InvokeOption) GetDomainsAccountMgmtInfoResultOutput
> Note: This function is named GetDomainsAccountMgmtInfo
in the Go SDK.
public static class GetDomainsAccountMgmtInfo
{
public static Task<GetDomainsAccountMgmtInfoResult> InvokeAsync(GetDomainsAccountMgmtInfoArgs args, InvokeOptions? opts = null)
public static Output<GetDomainsAccountMgmtInfoResult> Invoke(GetDomainsAccountMgmtInfoInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetDomainsAccountMgmtInfoResult> getDomainsAccountMgmtInfo(GetDomainsAccountMgmtInfoArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:Identity/getDomainsAccountMgmtInfo:getDomainsAccountMgmtInfo
arguments:
# arguments dictionary
The following arguments are supported:
- Account
Mgmt stringInfo Id - ID of the resource
- Idcs
Endpoint string - The basic endpoint for the identity domain
- Attribute
Sets List<string> - 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
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Resource
Type stringSchema Version - 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.
- Account
Mgmt stringInfo Id - ID of the resource
- Idcs
Endpoint string - The basic endpoint for the identity domain
- Attribute
Sets []string - 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
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- Resource
Type stringSchema Version - 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.
- account
Mgmt StringInfo Id - ID of the resource
- idcs
Endpoint String - The basic endpoint for the identity domain
- attribute
Sets List<String> - 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
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- resource
Type StringSchema Version - 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.
- account
Mgmt stringInfo Id - ID of the resource
- idcs
Endpoint string - The basic endpoint for the identity domain
- attribute
Sets string[] - 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
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- string
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- resource
Type stringSchema Version - 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.
- account_
mgmt_ strinfo_ id - ID of the resource
- idcs_
endpoint str - The basic endpoint for the identity domain
- attribute_
sets Sequence[str] - 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
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- str
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- resource_
type_ strschema_ version - 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.
- account
Mgmt StringInfo Id - ID of the resource
- idcs
Endpoint String - The basic endpoint for the identity domain
- attribute
Sets List<String> - 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
- A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always.
- String
- The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested.
- resource
Type StringSchema Version - 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.
getDomainsAccountMgmtInfo Result
The following output properties are available:
- Account
Mgmt stringInfo Id - Account
Type string - Type of Account
- 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<Get
Domains Account Mgmt Info App> - Application on which the account is based
- Compartment
Ocid string - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- Composite
Key string - Unique key for this AccountMgmtInfo, which is used to prevent duplicate AccountMgmtInfo resources. Key is composed of a subset of app, owner and accountType.
- Delete
In boolProgress - 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.
- Do
Not boolBack Fill Grants - If true, a back-fill grant will not be created for a connected managed app as part of account creation.
- Do
Not boolPerform Action On Target - If true, the operation will not be performed on the target
- Domain
Ocid 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
- The provider-assigned unique ID for this managed resource.
- Idcs
Created List<GetBies Domains Account Mgmt Info Idcs Created By> - The User or App who created the Resource
- Idcs
Endpoint string - Idcs
Last List<GetModified Bies Domains Account Mgmt Info Idcs Last Modified By> - The User or App who modified the Resource
- Idcs
Last stringUpgraded In Release - The release number when the resource was upgraded.
- Idcs
Prevented List<string>Operations - 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 string - Last accessed timestamp of an application
- Matching
Owners List<GetDomains Account Mgmt Info Matching Owner> - Matching owning users of the account
- Metas
List<Get
Domains Account Mgmt Info Meta> - A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- Name string
- Name of the Account
- Object
Classes List<GetDomains Account Mgmt Info Object Class> - Object-class of the Account
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- Operation
Context string - The context in which the operation is performed on the account.
- Owners
List<Get
Domains Account Mgmt Info Owner> - Owning user of the account
- Preview
Only bool - If true, then the response to the account creation operation on a connected managed app returns a preview of the account data that is evaluated by the attribute value generation policy. Note that an account will not be created on the target application when this attribute is set to true.
- Resource
Types List<GetDomains Account Mgmt Info Resource Type> - Resource Type of the Account
- Schemas List<string>
- 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.
- Sync
Response string - Last recorded sync response for the account
- Sync
Situation string - Last recorded sync situation for the account
- Sync
Timestamp string - Last sync timestamp of the account
- List<Get
Domains Account Mgmt Info Tag> - A list of tags on this resource.
- Tenancy
Ocid string - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Uid string
- Unique identifier of the Account
- User
Wallet List<GetArtifacts Domains Account Mgmt Info User Wallet Artifact> - The UserWalletArtifact that contains the credentials that the system will use when performing Secure Form-Fill to log the user in to this application
- Attribute
Sets List<string> - Attributes string
- string
- Resource
Type stringSchema Version
- Account
Mgmt stringInfo Id - Account
Type string - Type of Account
- 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
[]Get
Domains Account Mgmt Info App - Application on which the account is based
- Compartment
Ocid string - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- Composite
Key string - Unique key for this AccountMgmtInfo, which is used to prevent duplicate AccountMgmtInfo resources. Key is composed of a subset of app, owner and accountType.
- Delete
In boolProgress - 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.
- Do
Not boolBack Fill Grants - If true, a back-fill grant will not be created for a connected managed app as part of account creation.
- Do
Not boolPerform Action On Target - If true, the operation will not be performed on the target
- Domain
Ocid 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
- The provider-assigned unique ID for this managed resource.
- Idcs
Created []GetBies Domains Account Mgmt Info Idcs Created By - The User or App who created the Resource
- Idcs
Endpoint string - Idcs
Last []GetModified Bies Domains Account Mgmt Info Idcs Last Modified By - The User or App who modified the Resource
- Idcs
Last stringUpgraded In Release - The release number when the resource was upgraded.
- Idcs
Prevented []stringOperations - 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 string - Last accessed timestamp of an application
- Matching
Owners []GetDomains Account Mgmt Info Matching Owner - Matching owning users of the account
- Metas
[]Get
Domains Account Mgmt Info Meta - A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- Name string
- Name of the Account
- Object
Classes []GetDomains Account Mgmt Info Object Class - Object-class of the Account
- Ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- Operation
Context string - The context in which the operation is performed on the account.
- Owners
[]Get
Domains Account Mgmt Info Owner - Owning user of the account
- Preview
Only bool - If true, then the response to the account creation operation on a connected managed app returns a preview of the account data that is evaluated by the attribute value generation policy. Note that an account will not be created on the target application when this attribute is set to true.
- Resource
Types []GetDomains Account Mgmt Info Resource Type - Resource Type of the Account
- Schemas []string
- 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.
- Sync
Response string - Last recorded sync response for the account
- Sync
Situation string - Last recorded sync situation for the account
- Sync
Timestamp string - Last sync timestamp of the account
- []Get
Domains Account Mgmt Info Tag - A list of tags on this resource.
- Tenancy
Ocid string - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- Uid string
- Unique identifier of the Account
- User
Wallet []GetArtifacts Domains Account Mgmt Info User Wallet Artifact - The UserWalletArtifact that contains the credentials that the system will use when performing Secure Form-Fill to log the user in to this application
- Attribute
Sets []string - Attributes string
- string
- Resource
Type stringSchema Version
- account
Mgmt StringInfo Id - account
Type String - Type of Account
- 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<Get
Domains Account Mgmt Info App> - Application on which the account is based
- compartment
Ocid String - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- composite
Key String - Unique key for this AccountMgmtInfo, which is used to prevent duplicate AccountMgmtInfo resources. Key is composed of a subset of app, owner and accountType.
- delete
In BooleanProgress - 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.
- do
Not BooleanBack Fill Grants - If true, a back-fill grant will not be created for a connected managed app as part of account creation.
- do
Not BooleanPerform Action On Target - If true, the operation will not be performed on the target
- domain
Ocid 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
- The provider-assigned unique ID for this managed resource.
- idcs
Created List<GetBies Domains Account Mgmt Info Idcs Created By> - The User or App who created the Resource
- idcs
Endpoint String - idcs
Last List<GetModified Bies Domains Account Mgmt Info Idcs Last Modified By> - The User or App who modified the Resource
- idcs
Last StringUpgraded In Release - The release number when the resource was upgraded.
- idcs
Prevented List<String>Operations - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- is
Account 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
- last
Accessed String - Last accessed timestamp of an application
- matching
Owners List<GetDomains Account Mgmt Info Matching Owner> - Matching owning users of the account
- metas
List<Get
Domains Account Mgmt Info Meta> - A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- name String
- Name of the Account
- object
Classes List<GetDomains Account Mgmt Info Object Class> - Object-class of the Account
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- operation
Context String - The context in which the operation is performed on the account.
- owners
List<Get
Domains Account Mgmt Info Owner> - Owning user of the account
- preview
Only Boolean - If true, then the response to the account creation operation on a connected managed app returns a preview of the account data that is evaluated by the attribute value generation policy. Note that an account will not be created on the target application when this attribute is set to true.
- resource
Types List<GetDomains Account Mgmt Info Resource Type> - Resource Type of the Account
- schemas List<String>
- 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.
- sync
Response String - Last recorded sync response for the account
- sync
Situation String - Last recorded sync situation for the account
- sync
Timestamp String - Last sync timestamp of the account
- List<Get
Domains Account Mgmt Info Tag> - A list of tags on this resource.
- tenancy
Ocid String - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- uid String
- Unique identifier of the Account
- user
Wallet List<GetArtifacts Domains Account Mgmt Info User Wallet Artifact> - The UserWalletArtifact that contains the credentials that the system will use when performing Secure Form-Fill to log the user in to this application
- attribute
Sets List<String> - attributes String
- String
- resource
Type StringSchema Version
- account
Mgmt stringInfo Id - account
Type string - Type of Account
- 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
Get
Domains Account Mgmt Info App[] - Application on which the account is based
- compartment
Ocid string - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- composite
Key string - Unique key for this AccountMgmtInfo, which is used to prevent duplicate AccountMgmtInfo resources. Key is composed of a subset of app, owner and accountType.
- delete
In booleanProgress - 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.
- do
Not booleanBack Fill Grants - If true, a back-fill grant will not be created for a connected managed app as part of account creation.
- do
Not booleanPerform Action On Target - If true, the operation will not be performed on the target
- domain
Ocid 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
- The provider-assigned unique ID for this managed resource.
- idcs
Created GetBies Domains Account Mgmt Info Idcs Created By[] - The User or App who created the Resource
- idcs
Endpoint string - idcs
Last GetModified Bies Domains Account Mgmt Info Idcs Last Modified By[] - The User or App who modified the Resource
- idcs
Last stringUpgraded In Release - The release number when the resource was upgraded.
- idcs
Prevented string[]Operations - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- is
Account 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
- last
Accessed string - Last accessed timestamp of an application
- matching
Owners GetDomains Account Mgmt Info Matching Owner[] - Matching owning users of the account
- metas
Get
Domains Account Mgmt Info Meta[] - A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- name string
- Name of the Account
- object
Classes GetDomains Account Mgmt Info Object Class[] - Object-class of the Account
- ocid string
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- operation
Context string - The context in which the operation is performed on the account.
- owners
Get
Domains Account Mgmt Info Owner[] - Owning user of the account
- preview
Only boolean - If true, then the response to the account creation operation on a connected managed app returns a preview of the account data that is evaluated by the attribute value generation policy. Note that an account will not be created on the target application when this attribute is set to true.
- resource
Types GetDomains Account Mgmt Info Resource Type[] - Resource Type of the Account
- schemas string[]
- 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.
- sync
Response string - Last recorded sync response for the account
- sync
Situation string - Last recorded sync situation for the account
- sync
Timestamp string - Last sync timestamp of the account
- Get
Domains Account Mgmt Info Tag[] - A list of tags on this resource.
- tenancy
Ocid string - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- uid string
- Unique identifier of the Account
- user
Wallet GetArtifacts Domains Account Mgmt Info User Wallet Artifact[] - The UserWalletArtifact that contains the credentials that the system will use when performing Secure Form-Fill to log the user in to this application
- attribute
Sets string[] - attributes string
- string
- resource
Type stringSchema Version
- account_
mgmt_ strinfo_ id - account_
type str - Type of Account
- 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.
Get Domains Account Mgmt Info App] - Application on which the account is based
- compartment_
ocid str - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- composite_
key str - Unique key for this AccountMgmtInfo, which is used to prevent duplicate AccountMgmtInfo resources. Key is composed of a subset of app, owner and accountType.
- delete_
in_ boolprogress - 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.
- do_
not_ boolback_ fill_ grants - If true, a back-fill grant will not be created for a connected managed app as part of account creation.
- do_
not_ boolperform_ action_ on_ target - If true, the operation will not be performed on the target
- 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
- The provider-assigned unique ID for this managed resource.
- idcs_
created_ Sequence[identity.bies Get Domains Account Mgmt Info Idcs Created By] - The User or App who created the Resource
- idcs_
endpoint str - idcs_
last_ Sequence[identity.modified_ bies Get Domains Account Mgmt Info Idcs Last Modified By] - The User or App who modified the Resource
- idcs_
last_ strupgraded_ in_ release - The release number when the resource was upgraded.
- idcs_
prevented_ Sequence[str]operations - 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
- matching_
owners Sequence[identity.Get Domains Account Mgmt Info Matching Owner] - Matching owning users of the account
- metas
Sequence[identity.
Get Domains Account Mgmt Info Meta] - A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- name str
- Name of the Account
- object_
classes Sequence[identity.Get Domains Account Mgmt Info Object Class] - Object-class of the Account
- ocid str
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- operation_
context str - The context in which the operation is performed on the account.
- owners
Sequence[identity.
Get Domains Account Mgmt Info Owner] - Owning user of the account
- preview_
only bool - If true, then the response to the account creation operation on a connected managed app returns a preview of the account data that is evaluated by the attribute value generation policy. Note that an account will not be created on the target application when this attribute is set to true.
- resource_
types Sequence[identity.Get Domains Account Mgmt Info Resource Type] - Resource Type of the Account
- schemas Sequence[str]
- 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.
- sync_
response str - Last recorded sync response for the account
- sync_
situation str - Last recorded sync situation for the account
- sync_
timestamp str - Last sync timestamp of the account
- Sequence[identity.
Get Domains Account Mgmt Info Tag] - 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_ Sequence[identity.artifacts Get Domains Account Mgmt Info User Wallet Artifact] - The UserWalletArtifact that contains the credentials that the system will use when performing Secure Form-Fill to log the user in to this application
- attribute_
sets Sequence[str] - attributes str
- str
- resource_
type_ strschema_ version
- account
Mgmt StringInfo Id - account
Type String - Type of Account
- 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
- compartment
Ocid String - Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives.
- composite
Key String - Unique key for this AccountMgmtInfo, which is used to prevent duplicate AccountMgmtInfo resources. Key is composed of a subset of app, owner and accountType.
- delete
In BooleanProgress - 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.
- do
Not BooleanBack Fill Grants - If true, a back-fill grant will not be created for a connected managed app as part of account creation.
- do
Not BooleanPerform Action On Target - If true, the operation will not be performed on the target
- domain
Ocid 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
- The provider-assigned unique ID for this managed resource.
- idcs
Created List<Property Map>Bies - The User or App who created the Resource
- idcs
Endpoint String - idcs
Last List<Property Map>Modified Bies - The User or App who modified the Resource
- idcs
Last StringUpgraded In Release - The release number when the resource was upgraded.
- idcs
Prevented List<String>Operations - Each value of this attribute specifies an operation that only an internal client may perform on this particular resource.
- is
Account 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
- last
Accessed String - Last accessed timestamp of an application
- matching
Owners List<Property Map> - Matching owning users of the account
- metas List<Property Map>
- A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL.
- name String
- Name of the Account
- object
Classes List<Property Map> - Object-class of the Account
- ocid String
- Unique Oracle Cloud Infrastructure identifier for the SCIM Resource.
- operation
Context String - The context in which the operation is performed on the account.
- owners List<Property Map>
- Owning user of the account
- preview
Only Boolean - If true, then the response to the account creation operation on a connected managed app returns a preview of the account data that is evaluated by the attribute value generation policy. Note that an account will not be created on the target application when this attribute is set to true.
- resource
Types List<Property Map> - Resource Type of the Account
- schemas List<String>
- 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.
- sync
Response String - Last recorded sync response for the account
- sync
Situation String - Last recorded sync situation for the account
- sync
Timestamp String - Last sync timestamp of the account
- List<Property Map>
- A list of tags on this resource.
- tenancy
Ocid String - Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives.
- uid String
- Unique identifier of the Account
- user
Wallet List<Property Map>Artifacts - The UserWalletArtifact that contains the credentials that the system will use when performing Secure Form-Fill to log the user in to this application
- attribute
Sets List<String> - attributes String
- String
- resource
Type StringSchema Version
Supporting Types
GetDomainsAccountMgmtInfoApp
- 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 string - Application icon.
- App
Thumbnail string - Application thumbnail.
- Audience string
- The base URI for all of the scopes defined in this App. The value of 'audience' is combined with the 'value' of each scope to form an 'fqs' or fully qualified scope.
- Description string
- Application description
- Display string
- Resource Type display name
- Is
Alias boolApp - If true, this App is an AliasApp and it cannot be granted to an end user directly
- bool
- If true, sync from the managed app will be performed as authoritative sync.
- Is
Login boolTarget - If true, this App allows runtime services to log end users in to this App automatically
- Is
Managed boolApp - If true, indicates that access to this App requires an account. That is, in order to log in to the App, a User must use an application-specific identity that is maintained in the remote identity-repository of that App.
- Is
Oauth boolResource - If true, indicates that this application acts as an OAuth Resource.
- Is
Opc boolService - If true, this application is an Oracle Public Cloud service-instance.
- Is
Unmanaged boolApp - If true, indicates that this application accepts an Oracle Identity Cloud Service user as a login-identity (does not require an account) and relies on authorization of the user's memberships in AppRoles
- Login
Mechanism 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 the Security Assertion Markup Language protocol.
- Meter
As boolOpc Service - If true, customer is not billed for runtime operations of the app.
- Ref string
- UserWalletArtifact URI
- Service
Type stringUrn - This Uniform Resource Name (URN) value identifies the type of Oracle Public Cloud service of which this app is an instance.
- Show
In boolMy Apps - If true, this App will be displayed in the MyApps page of each end-user who has access to the 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 string - Application icon.
- App
Thumbnail string - Application thumbnail.
- Audience string
- The base URI for all of the scopes defined in this App. The value of 'audience' is combined with the 'value' of each scope to form an 'fqs' or fully qualified scope.
- Description string
- Application description
- Display string
- Resource Type display name
- Is
Alias boolApp - If true, this App is an AliasApp and it cannot be granted to an end user directly
- bool
- If true, sync from the managed app will be performed as authoritative sync.
- Is
Login boolTarget - If true, this App allows runtime services to log end users in to this App automatically
- Is
Managed boolApp - If true, indicates that access to this App requires an account. That is, in order to log in to the App, a User must use an application-specific identity that is maintained in the remote identity-repository of that App.
- Is
Oauth boolResource - If true, indicates that this application acts as an OAuth Resource.
- Is
Opc boolService - If true, this application is an Oracle Public Cloud service-instance.
- Is
Unmanaged boolApp - If true, indicates that this application accepts an Oracle Identity Cloud Service user as a login-identity (does not require an account) and relies on authorization of the user's memberships in AppRoles
- Login
Mechanism 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 the Security Assertion Markup Language protocol.
- Meter
As boolOpc Service - If true, customer is not billed for runtime operations of the app.
- Ref string
- UserWalletArtifact URI
- Service
Type stringUrn - This Uniform Resource Name (URN) value identifies the type of Oracle Public Cloud service of which this app is an instance.
- Show
In boolMy Apps - If true, this App will be displayed in the MyApps page of each end-user who has access to the 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.
- app
Icon String - Application icon.
- app
Thumbnail String - Application thumbnail.
- audience String
- The base URI for all of the scopes defined in this App. The value of 'audience' is combined with the 'value' of each scope to form an 'fqs' or fully qualified scope.
- description String
- Application description
- display String
- Resource Type display name
- is
Alias BooleanApp - If true, this App is an AliasApp and it cannot be granted to an end user directly
- Boolean
- If true, sync from the managed app will be performed as authoritative sync.
- is
Login BooleanTarget - If true, this App allows runtime services to log end users in to this App automatically
- is
Managed BooleanApp - If true, indicates that access to this App requires an account. That is, in order to log in to the App, a User must use an application-specific identity that is maintained in the remote identity-repository of that App.
- is
Oauth BooleanResource - If true, indicates that this application acts as an OAuth Resource.
- is
Opc BooleanService - If true, this application is an Oracle Public Cloud service-instance.
- is
Unmanaged BooleanApp - If true, indicates that this application accepts an Oracle Identity Cloud Service user as a login-identity (does not require an account) and relies on authorization of the user's memberships in AppRoles
- login
Mechanism 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 the Security Assertion Markup Language protocol.
- meter
As BooleanOpc Service - If true, customer is not billed for runtime operations of the app.
- ref String
- UserWalletArtifact URI
- service
Type StringUrn - This Uniform Resource Name (URN) value identifies the type of Oracle Public Cloud service of which this app is an instance.
- show
In BooleanMy Apps - If true, this App will be displayed in the MyApps page of each end-user who has access to the 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.
- app
Icon string - Application icon.
- app
Thumbnail string - Application thumbnail.
- audience string
- The base URI for all of the scopes defined in this App. The value of 'audience' is combined with the 'value' of each scope to form an 'fqs' or fully qualified scope.
- description string
- Application description
- display string
- Resource Type display name
- is
Alias booleanApp - If true, this App is an AliasApp and it cannot be granted to an end user directly
- boolean
- If true, sync from the managed app will be performed as authoritative sync.
- is
Login booleanTarget - If true, this App allows runtime services to log end users in to this App automatically
- is
Managed booleanApp - If true, indicates that access to this App requires an account. That is, in order to log in to the App, a User must use an application-specific identity that is maintained in the remote identity-repository of that App.
- is
Oauth booleanResource - If true, indicates that this application acts as an OAuth Resource.
- is
Opc booleanService - If true, this application is an Oracle Public Cloud service-instance.
- is
Unmanaged booleanApp - If true, indicates that this application accepts an Oracle Identity Cloud Service user as a login-identity (does not require an account) and relies on authorization of the user's memberships in AppRoles
- login
Mechanism 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 the Security Assertion Markup Language protocol.
- meter
As booleanOpc Service - If true, customer is not billed for runtime operations of the app.
- ref string
- UserWalletArtifact URI
- service
Type stringUrn - This Uniform Resource Name (URN) value identifies the type of Oracle Public Cloud service of which this app is an instance.
- show
In booleanMy Apps - If true, this App will be displayed in the MyApps page of each end-user who has access to the 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.
- audience str
- The base URI for all of the scopes defined in this App. The value of 'audience' is combined with the 'value' of each scope to form an 'fqs' or fully qualified scope.
- description str
- Application description
- display str
- Resource Type display name
- is_
alias_ boolapp - If true, this App is an AliasApp and it cannot be granted to an end user directly
- bool
- If true, sync from the managed app will be performed as authoritative sync.
- is_
login_ booltarget - If true, this App allows runtime services to log end users in to this App automatically
- is_
managed_ boolapp - If true, indicates that access to this App requires an account. That is, in order to log in to the App, a User must use an application-specific identity that is maintained in the remote identity-repository of that App.
- is_
oauth_ boolresource - If true, indicates that this application acts as an OAuth Resource.
- is_
opc_ boolservice - If true, this application is an Oracle Public Cloud service-instance.
- is_
unmanaged_ boolapp - If true, indicates that this application accepts an Oracle Identity Cloud Service user as a login-identity (does not require an account) and relies on authorization of the user's memberships in AppRoles
- 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 the Security Assertion Markup Language protocol.
- meter_
as_ boolopc_ service - If true, customer is not billed for runtime operations of the app.
- ref str
- UserWalletArtifact URI
- service_
type_ strurn - This Uniform Resource Name (URN) value identifies the type of Oracle Public Cloud service of which this app is an instance.
- show_
in_ boolmy_ apps - If true, this App will be displayed in the MyApps page of each end-user who has access to the 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.
- app
Icon String - Application icon.
- app
Thumbnail String - Application thumbnail.
- audience String
- The base URI for all of the scopes defined in this App. The value of 'audience' is combined with the 'value' of each scope to form an 'fqs' or fully qualified scope.
- description String
- Application description
- display String
- Resource Type display name
- is
Alias BooleanApp - If true, this App is an AliasApp and it cannot be granted to an end user directly
- Boolean
- If true, sync from the managed app will be performed as authoritative sync.
- is
Login BooleanTarget - If true, this App allows runtime services to log end users in to this App automatically
- is
Managed BooleanApp - If true, indicates that access to this App requires an account. That is, in order to log in to the App, a User must use an application-specific identity that is maintained in the remote identity-repository of that App.
- is
Oauth BooleanResource - If true, indicates that this application acts as an OAuth Resource.
- is
Opc BooleanService - If true, this application is an Oracle Public Cloud service-instance.
- is
Unmanaged BooleanApp - If true, indicates that this application accepts an Oracle Identity Cloud Service user as a login-identity (does not require an account) and relies on authorization of the user's memberships in AppRoles
- login
Mechanism 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 the Security Assertion Markup Language protocol.
- meter
As BooleanOpc Service - If true, customer is not billed for runtime operations of the app.
- ref String
- UserWalletArtifact URI
- service
Type StringUrn - This Uniform Resource Name (URN) value identifies the type of Oracle Public Cloud service of which this app is an instance.
- show
In BooleanMy Apps - If true, this App will be displayed in the MyApps page of each end-user who has access to the App.
- value String
- UserWalletArtifact identifier
GetDomainsAccountMgmtInfoIdcsCreatedBy
GetDomainsAccountMgmtInfoIdcsLastModifiedBy
GetDomainsAccountMgmtInfoMatchingOwner
GetDomainsAccountMgmtInfoMeta
- Created string
- The DateTime the Resource was added to the Service Provider
- Last
Modified 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.
- Resource
Type string - Resource Type of the Account
- 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
- Last
Modified 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.
- Resource
Type string - Resource Type of the Account
- 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
- last
Modified 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.
- resource
Type String - Resource Type of the Account
- 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
- last
Modified 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.
- resource
Type string - Resource Type of the Account
- 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 - Resource Type of the Account
- 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
- last
Modified 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.
- resource
Type String - Resource Type of the Account
- version String
- The version of the Resource being returned. This value must be the same as the ETag HTTP response header.
GetDomainsAccountMgmtInfoObjectClass
GetDomainsAccountMgmtInfoOwner
GetDomainsAccountMgmtInfoResourceType
GetDomainsAccountMgmtInfoTag
GetDomainsAccountMgmtInfoUserWalletArtifact
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi