import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Identity Propagation Trust resource in Oracle Cloud Infrastructure Identity Domains service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/identity-domains/latest/IdentityPropagationTrust * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/identity_domains * * Register a new Identity Propagation Trust configuration. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testIdentityPropagationTrust = new oci.identity.DomainsIdentityPropagationTrust("test_identity_propagation_trust", { * idcsEndpoint: testDomain.url, * issuer: identityPropagationTrustIssuer, * name: identityPropagationTrustName, * schemas: ["urn:ietf:params:scim:schemas:oracle:idcs:IdentityPropagationTrust"], * type: identityPropagationTrustType, * caCertChain: { * rootCas: identityPropagationTrustCaCertChainRootCas, * intermediateCas: identityPropagationTrustCaCertChainIntermediateCas, * }, * accountId: "accountId", * active: identityPropagationTrustActive === "true", * allowImpersonation: identityPropagationTrustAllowImpersonation === "true", * attributeSets: ["all"], * attributes: "", * authorization: identityPropagationTrustAuthorization, * claimPropagations: identityPropagationTrustClaimPropagations, * claimValidations: [{ * name: identityPropagationTrustClaimValidationsName, * value: identityPropagationTrustClaimValidationsValue, * }], * clientClaimName: identityPropagationTrustClientClaimName, * clientClaimValues: ["clientClaimValues"], * clockSkewSeconds: Number(identityPropagationTrustClockSkewSeconds), * description: identityPropagationTrustDescription, * impersonatingResource: identityPropagationTrustImpersonatingResource, * impersonationServiceUsers: [{ * rule: identityPropagationTrustImpersonationServiceUsersRule, * value: testIdentityPropagationTrustUser.id, * ocid: identityPropagationTrustImpersonationServiceUsersOcid, * }], * keytab: { * secretOcid: identityPropagationTrustKeytabSecretOcid, * secretVersion: Number(identityPropagationTrustKeytabSecretVersion), * }, * oauthClients: ["oauthClients"], * ocid: identityPropagationTrustOcid, * publicCertificate: identityPropagationTrustPublicCertificate, * publicKeyEndpoint: identityPropagationTrustPublicKeyEndpoint, * resourceTypeSchemaVersion: identityPropagationTrustResourceTypeSchemaVersion, * subjectClaimName: identityPropagationTrustSubjectClaimName, * subjectMappingAttribute: identityPropagationTrustSubjectMappingAttribute, * subjectType: identityPropagationTrustSubjectType, * tags: [{ * key: identityPropagationTrustTagsKey, * value: identityPropagationTrustTagsValue, * }], * }); * ``` * * ## Import * * IdentityPropagationTrusts can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:Identity/domainsIdentityPropagationTrust:DomainsIdentityPropagationTrust test_identity_propagation_trust "idcsEndpoint/{idcsEndpoint}/identityPropagationTrusts/{identityPropagationTrustId}" * ``` */ export declare class DomainsIdentityPropagationTrust extends pulumi.CustomResource { /** * Get an existing DomainsIdentityPropagationTrust resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: DomainsIdentityPropagationTrustState, opts?: pulumi.CustomResourceOptions): DomainsIdentityPropagationTrust; /** * Returns true if the given object is an instance of DomainsIdentityPropagationTrust. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is DomainsIdentityPropagationTrust; /** * (Updatable) The Identity cloud provider service identifier, for example, the Azure Tenancy ID, AWS Account ID, or GCP Project ID. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * caseExact: true * * idcsSearchable: true * * uniqueness: none */ readonly accountId: pulumi.Output; /** * (Updatable) If true, specifies that this Identity Propagation Trust is in an enabled state. The default value is false. * * **SCIM++ Properties:** * * type: boolean * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * idcsSearchable: true */ readonly active: pulumi.Output; /** * (Updatable) Allow customers to define whether the resulting token should contain the authenticated user as the subject or whether the token should impersonate another Application Principal in IAM. * * **SCIM++ Properties:** * * type: boolean * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * idcsSearchable: false */ readonly allowImpersonation: pulumi.Output; /** * (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive. */ readonly attributeSets: pulumi.Output; /** * (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always. */ readonly attributes: pulumi.Output; /** * (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested. */ readonly authorization: pulumi.Output; /** * (Updatable) Certificate trust store. This is required if identity propagation type is X509. * * **Added In:** 2508041610 * * **SCIM++ Properties:** * * caseExact: true * * type: complex * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none */ readonly caCertChain: pulumi.Output; /** * (Updatable) A list of claims to propagate in RPST * * **Added In:** 2509172316 * * **SCIM++ Properties:** * * idcsSearchable: false * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: string * * uniqueness: none */ readonly claimPropagations: pulumi.Output; /** * (Updatable) A list of claim validations * * **Added In:** 2509172316 * * **SCIM++ Properties:** * * idcsCompositeKey: [name] * * idcsSearchable: false * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none */ readonly claimValidations: pulumi.Output; /** * (Updatable) The claim name that identifies to whom the JWT/SAML token is issued. If AWS, then \"aud\" or \"client_id\". If Azure, then \"appid\". If GCP, then \"aud\". * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * idcsSearchable: false */ readonly clientClaimName: pulumi.Output; /** * (Updatable) The value that corresponds to the client claim name used to identify to whom the token is issued. * * **SCIM++ Properties:** * * type: string * * multiValued: true * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * caseExact: true * * idcsSearchable: false */ readonly clientClaimValues: pulumi.Output; /** * (Updatable) The clock skew (in secs) that's allowed for the token issue and expiry time. * * **Added In:** 2308181911 * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: false * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: integer * * uniqueness: none */ readonly clockSkewSeconds: pulumi.Output; /** * (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: false * * multiValued: false * * mutability: readOnly * * required: false * * returned: default * * type: string * * uniqueness: none */ readonly compartmentOcid: pulumi.Output; /** * (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readOnly * * required: false * * returned: default * * type: boolean * * uniqueness: none */ readonly deleteInProgress: pulumi.Output; /** * (Updatable) The description of the Identity Propagation Trust. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * caseExact: false * * idcsSearchable: false */ readonly description: pulumi.Output; /** * (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: false * * multiValued: false * * mutability: readOnly * * required: false * * returned: default * * type: string * * uniqueness: none */ readonly domainOcid: pulumi.Output; /** * (Updatable) The User or App who created the Resource * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readOnly * * required: true * * returned: default * * type: complex */ readonly idcsCreatedBies: pulumi.Output; /** * The basic endpoint for the identity domain */ readonly idcsEndpoint: pulumi.Output; /** * (Updatable) The User or App who modified the Resource * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readOnly * * required: false * * returned: default * * type: complex */ readonly idcsLastModifiedBies: pulumi.Output; /** * (Updatable) The release number when the resource was upgraded. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: false * * multiValued: false * * mutability: readOnly * * required: false * * returned: request * * type: string * * uniqueness: none */ readonly idcsLastUpgradedInRelease: pulumi.Output; /** * (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. * * **SCIM++ Properties:** * * idcsSearchable: false * * multiValued: true * * mutability: readOnly * * required: false * * returned: request * * type: string * * uniqueness: none */ readonly idcsPreventedOperations: pulumi.Output; /** * (Updatable) Defines the external workload that acts as impersonating resource principal. * * **Added In:** 2509172316 * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * caseExact: true * * idcsSearchable: false */ readonly impersonatingResource: pulumi.Output; /** * (Updatable) The Impersonating Principal. * * **SCIM++ Properties:** * * idcsCompositeKey: [rule, value] * * idcsSearchable: false * * multiValued: true * * mutability: readWrite * * required: false * * returned: request * * type: complex * * uniqueness: none */ readonly impersonationServiceUsers: pulumi.Output; /** * (Updatable) The issuer claim of the Identity provider. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: true * * mutability: readWrite * * returned: always * * caseExact: true * * idcsSearchable: true * * uniqueness: server */ readonly issuer: pulumi.Output; /** * (Updatable) The keytab stored in the tenancy's Vault. This is required if the identity propagation type is 'SPNEGO'. * * **SCIM++ Properties:** * * idcsCompositeKey: [secretOcid] * * idcsSearchable: false * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none */ readonly keytab: pulumi.Output; /** * (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readOnly * * required: false * * returned: default * * idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]] * * type: complex */ readonly metas: pulumi.Output; /** * The name of the the Identity Propagation Trust. * * **SCIM++ Properties:** * * type: string * * caseExact: false * * idcsSearchable: true * * multiValued: false * * required: true * * mutability: immutable * * returned: default * * uniqueness: none */ readonly name: pulumi.Output; /** * (Updatable) The value of all the authorized OAuth Clients. * * **SCIM++ Properties:** * * idcsSearchable: false * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: string * * uniqueness: none */ readonly oauthClients: pulumi.Output; /** * (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource. * * **SCIM++ Properties:** * * caseExact: true * * idcsSearchable: true * * multiValued: false * * mutability: immutable * * required: false * * returned: default * * type: string * * uniqueness: global */ readonly ocid: pulumi.Output; /** * (Updatable) Store the public key if public key cert. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * idcsSearchable: false */ readonly publicCertificate: pulumi.Output; /** * (Updatable) The cloud provider's public key API of SAML and OIDC providers for signature validation. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * caseExact: false * * idcsSearchable: false */ readonly publicKeyEndpoint: pulumi.Output; /** * (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned. */ readonly resourceTypeSchemaVersion: pulumi.Output; /** * (Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard \"enterprise\" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: false * * multiValued: true * * mutability: readWrite * * required: true * * returned: default * * type: string * * uniqueness: none */ readonly schemas: pulumi.Output; /** * (Updatable) Used for locating the subject claim from the incoming token. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * caseExact: true * * idcsSearchable: false */ readonly subjectClaimName: pulumi.Output; /** * (Updatable) Subject Mapping Attribute to which the value from subject claim name value would be used for identity lookup. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * idcsSearchable: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none */ readonly subjectMappingAttribute: pulumi.Output; /** * (Updatable) The type of the resource against which lookup will be made in the identity domain in IAM for the incoming subject claim value. * * **SCIM++ Properties:** * * idcsSearchable: false * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: string * * uniqueness: none */ readonly subjectType: pulumi.Output; /** * (Updatable) A list of tags on this resource. * * **SCIM++ Properties:** * * idcsCompositeKey: [key, value] * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: request * * type: complex * * uniqueness: none */ readonly tags: pulumi.Output; /** * (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: false * * multiValued: false * * mutability: readOnly * * required: false * * returned: default * * type: string * * uniqueness: none */ readonly tenancyOcid: pulumi.Output; /** * (Updatable) The type of the inbound token from the Identity cloud provider. * * **SCIM++ Properties:** * * caseExact: true * * idcsSearchable: false * * required: true * * mutability: readWrite * * returned: default * * type: string * * multiValued: false * * uniqueness: none * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly type: pulumi.Output; /** * Create a DomainsIdentityPropagationTrust resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: DomainsIdentityPropagationTrustArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering DomainsIdentityPropagationTrust resources. */ export interface DomainsIdentityPropagationTrustState { /** * (Updatable) The Identity cloud provider service identifier, for example, the Azure Tenancy ID, AWS Account ID, or GCP Project ID. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * caseExact: true * * idcsSearchable: true * * uniqueness: none */ accountId?: pulumi.Input; /** * (Updatable) If true, specifies that this Identity Propagation Trust is in an enabled state. The default value is false. * * **SCIM++ Properties:** * * type: boolean * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * idcsSearchable: true */ active?: pulumi.Input; /** * (Updatable) Allow customers to define whether the resulting token should contain the authenticated user as the subject or whether the token should impersonate another Application Principal in IAM. * * **SCIM++ Properties:** * * type: boolean * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * idcsSearchable: false */ allowImpersonation?: pulumi.Input; /** * (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive. */ attributeSets?: pulumi.Input[] | undefined>; /** * (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always. */ attributes?: pulumi.Input; /** * (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested. */ authorization?: pulumi.Input; /** * (Updatable) Certificate trust store. This is required if identity propagation type is X509. * * **Added In:** 2508041610 * * **SCIM++ Properties:** * * caseExact: true * * type: complex * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none */ caCertChain?: pulumi.Input; /** * (Updatable) A list of claims to propagate in RPST * * **Added In:** 2509172316 * * **SCIM++ Properties:** * * idcsSearchable: false * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: string * * uniqueness: none */ claimPropagations?: pulumi.Input[] | undefined>; /** * (Updatable) A list of claim validations * * **Added In:** 2509172316 * * **SCIM++ Properties:** * * idcsCompositeKey: [name] * * idcsSearchable: false * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none */ claimValidations?: pulumi.Input[] | undefined>; /** * (Updatable) The claim name that identifies to whom the JWT/SAML token is issued. If AWS, then \"aud\" or \"client_id\". If Azure, then \"appid\". If GCP, then \"aud\". * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * idcsSearchable: false */ clientClaimName?: pulumi.Input; /** * (Updatable) The value that corresponds to the client claim name used to identify to whom the token is issued. * * **SCIM++ Properties:** * * type: string * * multiValued: true * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * caseExact: true * * idcsSearchable: false */ clientClaimValues?: pulumi.Input[] | undefined>; /** * (Updatable) The clock skew (in secs) that's allowed for the token issue and expiry time. * * **Added In:** 2308181911 * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: false * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: integer * * uniqueness: none */ clockSkewSeconds?: pulumi.Input; /** * (Updatable) Oracle Cloud Infrastructure Compartment Id (ocid) in which the resource lives. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: false * * multiValued: false * * mutability: readOnly * * required: false * * returned: default * * type: string * * uniqueness: none */ compartmentOcid?: pulumi.Input; /** * (Updatable) A boolean flag indicating this resource in the process of being deleted. Usually set to true when synchronous deletion of the resource would take too long. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readOnly * * required: false * * returned: default * * type: boolean * * uniqueness: none */ deleteInProgress?: pulumi.Input; /** * (Updatable) The description of the Identity Propagation Trust. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * caseExact: false * * idcsSearchable: false */ description?: pulumi.Input; /** * (Updatable) Oracle Cloud Infrastructure Domain Id (ocid) in which the resource lives. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: false * * multiValued: false * * mutability: readOnly * * required: false * * returned: default * * type: string * * uniqueness: none */ domainOcid?: pulumi.Input; /** * (Updatable) The User or App who created the Resource * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readOnly * * required: true * * returned: default * * type: complex */ idcsCreatedBies?: pulumi.Input[] | undefined>; /** * The basic endpoint for the identity domain */ idcsEndpoint?: pulumi.Input; /** * (Updatable) The User or App who modified the Resource * * **SCIM++ Properties:** * * idcsSearchable: true * * multiValued: false * * mutability: readOnly * * required: false * * returned: default * * type: complex */ idcsLastModifiedBies?: pulumi.Input[] | undefined>; /** * (Updatable) The release number when the resource was upgraded. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: false * * multiValued: false * * mutability: readOnly * * required: false * * returned: request * * type: string * * uniqueness: none */ idcsLastUpgradedInRelease?: pulumi.Input; /** * (Updatable) Each value of this attribute specifies an operation that only an internal client may perform on this particular resource. * * **SCIM++ Properties:** * * idcsSearchable: false * * multiValued: true * * mutability: readOnly * * required: false * * returned: request * * type: string * * uniqueness: none */ idcsPreventedOperations?: pulumi.Input[] | undefined>; /** * (Updatable) Defines the external workload that acts as impersonating resource principal. * * **Added In:** 2509172316 * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * caseExact: true * * idcsSearchable: false */ impersonatingResource?: pulumi.Input; /** * (Updatable) The Impersonating Principal. * * **SCIM++ Properties:** * * idcsCompositeKey: [rule, value] * * idcsSearchable: false * * multiValued: true * * mutability: readWrite * * required: false * * returned: request * * type: complex * * uniqueness: none */ impersonationServiceUsers?: pulumi.Input[] | undefined>; /** * (Updatable) The issuer claim of the Identity provider. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: true * * mutability: readWrite * * returned: always * * caseExact: true * * idcsSearchable: true * * uniqueness: server */ issuer?: pulumi.Input; /** * (Updatable) The keytab stored in the tenancy's Vault. This is required if the identity propagation type is 'SPNEGO'. * * **SCIM++ Properties:** * * idcsCompositeKey: [secretOcid] * * idcsSearchable: false * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none */ keytab?: pulumi.Input; /** * (Updatable) A complex attribute that contains resource metadata. All sub-attributes are OPTIONAL. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: true * * multiValued: false * * mutability: readOnly * * required: false * * returned: default * * idcsCsvAttributeNameMappings: [[columnHeaderName:Created Date, mapsTo:meta.created]] * * type: complex */ metas?: pulumi.Input[] | undefined>; /** * The name of the the Identity Propagation Trust. * * **SCIM++ Properties:** * * type: string * * caseExact: false * * idcsSearchable: true * * multiValued: false * * required: true * * mutability: immutable * * returned: default * * uniqueness: none */ name?: pulumi.Input; /** * (Updatable) The value of all the authorized OAuth Clients. * * **SCIM++ Properties:** * * idcsSearchable: false * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: string * * uniqueness: none */ oauthClients?: pulumi.Input[] | undefined>; /** * (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource. * * **SCIM++ Properties:** * * caseExact: true * * idcsSearchable: true * * multiValued: false * * mutability: immutable * * required: false * * returned: default * * type: string * * uniqueness: global */ ocid?: pulumi.Input; /** * (Updatable) Store the public key if public key cert. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * idcsSearchable: false */ publicCertificate?: pulumi.Input; /** * (Updatable) The cloud provider's public key API of SAML and OIDC providers for signature validation. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * caseExact: false * * idcsSearchable: false */ publicKeyEndpoint?: pulumi.Input; /** * (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned. */ resourceTypeSchemaVersion?: pulumi.Input; /** * (Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard \"enterprise\" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: false * * multiValued: true * * mutability: readWrite * * required: true * * returned: default * * type: string * * uniqueness: none */ schemas?: pulumi.Input[] | undefined>; /** * (Updatable) Used for locating the subject claim from the incoming token. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * caseExact: true * * idcsSearchable: false */ subjectClaimName?: pulumi.Input; /** * (Updatable) Subject Mapping Attribute to which the value from subject claim name value would be used for identity lookup. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * idcsSearchable: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none */ subjectMappingAttribute?: pulumi.Input; /** * (Updatable) The type of the resource against which lookup will be made in the identity domain in IAM for the incoming subject claim value. * * **SCIM++ Properties:** * * idcsSearchable: false * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: string * * uniqueness: none */ subjectType?: pulumi.Input; /** * (Updatable) A list of tags on this resource. * * **SCIM++ Properties:** * * idcsCompositeKey: [key, value] * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: request * * type: complex * * uniqueness: none */ tags?: pulumi.Input[] | undefined>; /** * (Updatable) Oracle Cloud Infrastructure Tenant Id (ocid) in which the resource lives. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: false * * multiValued: false * * mutability: readOnly * * required: false * * returned: default * * type: string * * uniqueness: none */ tenancyOcid?: pulumi.Input; /** * (Updatable) The type of the inbound token from the Identity cloud provider. * * **SCIM++ Properties:** * * caseExact: true * * idcsSearchable: false * * required: true * * mutability: readWrite * * returned: default * * type: string * * multiValued: false * * uniqueness: none * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ type?: pulumi.Input; } /** * The set of arguments for constructing a DomainsIdentityPropagationTrust resource. */ export interface DomainsIdentityPropagationTrustArgs { /** * (Updatable) The Identity cloud provider service identifier, for example, the Azure Tenancy ID, AWS Account ID, or GCP Project ID. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * caseExact: true * * idcsSearchable: true * * uniqueness: none */ accountId?: pulumi.Input; /** * (Updatable) If true, specifies that this Identity Propagation Trust is in an enabled state. The default value is false. * * **SCIM++ Properties:** * * type: boolean * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * idcsSearchable: true */ active?: pulumi.Input; /** * (Updatable) Allow customers to define whether the resulting token should contain the authenticated user as the subject or whether the token should impersonate another Application Principal in IAM. * * **SCIM++ Properties:** * * type: boolean * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * idcsSearchable: false */ allowImpersonation?: pulumi.Input; /** * (Updatable) A multi-valued list of strings indicating the return type of attribute definition. The specified set of attributes can be fetched by the return type of the attribute. One or more values can be given together to fetch more than one group of attributes. If 'attributes' query parameter is also available, union of the two is fetched. Valid values - all, always, never, request, default. Values are case-insensitive. */ attributeSets?: pulumi.Input[] | undefined>; /** * (Updatable) A comma-delimited string that specifies the names of resource attributes that should be returned in the response. By default, a response that contains resource attributes contains only attributes that are defined in the schema for that resource type as returned=always or returned=default. An attribute that is defined as returned=request is returned in a response only if the request specifies its name in the value of this query parameter. If a request specifies this query parameter, the response contains the attributes that this query parameter specifies, as well as any attribute that is defined as returned=always. */ attributes?: pulumi.Input; /** * (Updatable) The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested. */ authorization?: pulumi.Input; /** * (Updatable) Certificate trust store. This is required if identity propagation type is X509. * * **Added In:** 2508041610 * * **SCIM++ Properties:** * * caseExact: true * * type: complex * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none */ caCertChain?: pulumi.Input; /** * (Updatable) A list of claims to propagate in RPST * * **Added In:** 2509172316 * * **SCIM++ Properties:** * * idcsSearchable: false * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: string * * uniqueness: none */ claimPropagations?: pulumi.Input[] | undefined>; /** * (Updatable) A list of claim validations * * **Added In:** 2509172316 * * **SCIM++ Properties:** * * idcsCompositeKey: [name] * * idcsSearchable: false * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none */ claimValidations?: pulumi.Input[] | undefined>; /** * (Updatable) The claim name that identifies to whom the JWT/SAML token is issued. If AWS, then \"aud\" or \"client_id\". If Azure, then \"appid\". If GCP, then \"aud\". * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * idcsSearchable: false */ clientClaimName?: pulumi.Input; /** * (Updatable) The value that corresponds to the client claim name used to identify to whom the token is issued. * * **SCIM++ Properties:** * * type: string * * multiValued: true * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * caseExact: true * * idcsSearchable: false */ clientClaimValues?: pulumi.Input[] | undefined>; /** * (Updatable) The clock skew (in secs) that's allowed for the token issue and expiry time. * * **Added In:** 2308181911 * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: false * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: integer * * uniqueness: none */ clockSkewSeconds?: pulumi.Input; /** * (Updatable) The description of the Identity Propagation Trust. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * caseExact: false * * idcsSearchable: false */ description?: pulumi.Input; /** * The basic endpoint for the identity domain */ idcsEndpoint: pulumi.Input; /** * (Updatable) Defines the external workload that acts as impersonating resource principal. * * **Added In:** 2509172316 * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * caseExact: true * * idcsSearchable: false */ impersonatingResource?: pulumi.Input; /** * (Updatable) The Impersonating Principal. * * **SCIM++ Properties:** * * idcsCompositeKey: [rule, value] * * idcsSearchable: false * * multiValued: true * * mutability: readWrite * * required: false * * returned: request * * type: complex * * uniqueness: none */ impersonationServiceUsers?: pulumi.Input[] | undefined>; /** * (Updatable) The issuer claim of the Identity provider. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: true * * mutability: readWrite * * returned: always * * caseExact: true * * idcsSearchable: true * * uniqueness: server */ issuer: pulumi.Input; /** * (Updatable) The keytab stored in the tenancy's Vault. This is required if the identity propagation type is 'SPNEGO'. * * **SCIM++ Properties:** * * idcsCompositeKey: [secretOcid] * * idcsSearchable: false * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: complex * * uniqueness: none */ keytab?: pulumi.Input; /** * The name of the the Identity Propagation Trust. * * **SCIM++ Properties:** * * type: string * * caseExact: false * * idcsSearchable: true * * multiValued: false * * required: true * * mutability: immutable * * returned: default * * uniqueness: none */ name?: pulumi.Input; /** * (Updatable) The value of all the authorized OAuth Clients. * * **SCIM++ Properties:** * * idcsSearchable: false * * multiValued: true * * mutability: readWrite * * required: false * * returned: default * * type: string * * uniqueness: none */ oauthClients?: pulumi.Input[] | undefined>; /** * (Updatable) Unique Oracle Cloud Infrastructure identifier for the SCIM Resource. * * **SCIM++ Properties:** * * caseExact: true * * idcsSearchable: true * * multiValued: false * * mutability: immutable * * required: false * * returned: default * * type: string * * uniqueness: global */ ocid?: pulumi.Input; /** * (Updatable) Store the public key if public key cert. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * idcsSearchable: false */ publicCertificate?: pulumi.Input; /** * (Updatable) The cloud provider's public key API of SAML and OIDC providers for signature validation. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * caseExact: false * * idcsSearchable: false */ publicKeyEndpoint?: pulumi.Input; /** * (Updatable) An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned. */ resourceTypeSchemaVersion?: pulumi.Input; /** * (Updatable) REQUIRED. The schemas attribute is an array of Strings which allows introspection of the supported schema version for a SCIM representation as well any schema extensions supported by that representation. Each String value must be a unique URI. This specification defines URIs for User, Group, and a standard \"enterprise\" extension. All representations of SCIM schema MUST include a non-zero value array with value(s) of the URIs supported by that representation. Duplicate values MUST NOT be included. Value order is not specified and MUST not impact behavior. * * **SCIM++ Properties:** * * caseExact: false * * idcsSearchable: false * * multiValued: true * * mutability: readWrite * * required: true * * returned: default * * type: string * * uniqueness: none */ schemas: pulumi.Input[]>; /** * (Updatable) Used for locating the subject claim from the incoming token. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none * * caseExact: true * * idcsSearchable: false */ subjectClaimName?: pulumi.Input; /** * (Updatable) Subject Mapping Attribute to which the value from subject claim name value would be used for identity lookup. * * **SCIM++ Properties:** * * type: string * * multiValued: false * * idcsSearchable: false * * required: false * * mutability: readWrite * * returned: default * * uniqueness: none */ subjectMappingAttribute?: pulumi.Input; /** * (Updatable) The type of the resource against which lookup will be made in the identity domain in IAM for the incoming subject claim value. * * **SCIM++ Properties:** * * idcsSearchable: false * * multiValued: false * * mutability: readWrite * * required: false * * returned: default * * type: string * * uniqueness: none */ subjectType?: pulumi.Input; /** * (Updatable) A list of tags on this resource. * * **SCIM++ Properties:** * * idcsCompositeKey: [key, value] * * idcsSearchable: true * * multiValued: true * * mutability: readWrite * * required: false * * returned: request * * type: complex * * uniqueness: none */ tags?: pulumi.Input[] | undefined>; /** * (Updatable) The type of the inbound token from the Identity cloud provider. * * **SCIM++ Properties:** * * caseExact: true * * idcsSearchable: false * * required: true * * mutability: readWrite * * returned: default * * type: string * * multiValued: false * * uniqueness: none * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ type: pulumi.Input; } //# sourceMappingURL=domainsIdentityPropagationTrust.d.ts.map