import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides the list of Security Question Settings in Oracle Cloud Infrastructure Identity Domains service. * * Search for security question settings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSecurityQuestionSettings = oci.identity.getDomainsSecurityQuestionSettings({ * idcsEndpoint: testDomain.url, * attributeSets: ["all"], * attributes: "", * authorization: securityQuestionSettingAuthorization, * resourceTypeSchemaVersion: securityQuestionSettingResourceTypeSchemaVersion, * }); * ``` */ export declare function getDomainsSecurityQuestionSettings(args: GetDomainsSecurityQuestionSettingsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getDomainsSecurityQuestionSettings. */ export interface GetDomainsSecurityQuestionSettingsArgs { /** * 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?: 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. */ attributes?: string; /** * The Authorization field value consists of credentials containing the authentication information of the user agent for the realm of the resource being requested. */ authorization?: string; compartmentId?: string; /** * The basic endpoint for the identity domain */ idcsEndpoint: string; /** * An endpoint-specific schema version number to use in the Request. Allowed version values are Earliest Version or Latest Version as specified in each REST API endpoint description, or any sequential number inbetween. All schema attributes/body parameters are a part of version 1. After version 1, any attributes added or deprecated will be tagged with the version that they were added to or deprecated in. If no version is provided, the latest schema version is returned. */ resourceTypeSchemaVersion?: string; } /** * A collection of values returned by getDomainsSecurityQuestionSettings. */ export interface GetDomainsSecurityQuestionSettingsResult { readonly attributeSets?: string[]; readonly attributes?: string; readonly authorization?: string; readonly compartmentId?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly idcsEndpoint: string; readonly itemsPerPage: number; readonly resourceTypeSchemaVersion?: 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. */ readonly schemas: string[]; /** * The list of security_question_settings. */ readonly securityQuestionSettings: outputs.Identity.GetDomainsSecurityQuestionSettingsSecurityQuestionSetting[]; readonly startIndex: number; readonly totalResults: number; } /** * This data source provides the list of Security Question Settings in Oracle Cloud Infrastructure Identity Domains service. * * Search for security question settings. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSecurityQuestionSettings = oci.identity.getDomainsSecurityQuestionSettings({ * idcsEndpoint: testDomain.url, * attributeSets: ["all"], * attributes: "", * authorization: securityQuestionSettingAuthorization, * resourceTypeSchemaVersion: securityQuestionSettingResourceTypeSchemaVersion, * }); * ``` */ export declare function getDomainsSecurityQuestionSettingsOutput(args: GetDomainsSecurityQuestionSettingsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getDomainsSecurityQuestionSettings. */ export interface GetDomainsSecurityQuestionSettingsOutputArgs { /** * 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>; /** * 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; /** * 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; compartmentId?: pulumi.Input; /** * The basic endpoint for the identity domain */ idcsEndpoint: pulumi.Input; /** * 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; } //# sourceMappingURL=getDomainsSecurityQuestionSettings.d.ts.map