import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Security Attributes in Oracle Cloud Infrastructure Security Attribute service. * * Lists the security attributes in the specified namespace. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSecurityAttributes = oci.securityattribute.getSecurityAttributes({ * securityAttributeNamespaceId: testSecurityAttributeNamespace.id, * state: securityAttributeState, * }); * ``` */ export declare function getSecurityAttributes(args: GetSecurityAttributesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSecurityAttributes. */ export interface GetSecurityAttributesArgs { filters?: inputs.SecurityAttribute.GetSecurityAttributesFilter[]; /** * The OCID of the security attribute namespace. */ securityAttributeNamespaceId: string; /** * A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. */ state?: string; } /** * A collection of values returned by getSecurityAttributes. */ export interface GetSecurityAttributesResult { readonly filters?: outputs.SecurityAttribute.GetSecurityAttributesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The OCID of the security attribute namespace that contains the security attribute definition. */ readonly securityAttributeNamespaceId: string; /** * The list of security_attributes. */ readonly securityAttributes: outputs.SecurityAttribute.GetSecurityAttributesSecurityAttribute[]; /** * The security attribute's current state. After creating a security attribute, make sure its `lifecycleState` is ACTIVE before using it. After retiring a security attribute, make sure its `lifecycleState` is INACTIVE before using it. If you delete a security attribute, you cannot delete another security attribute until the deleted security attribute's `lifecycleState` changes from DELETING to DELETED. */ readonly state?: string; } /** * This data source provides the list of Security Attributes in Oracle Cloud Infrastructure Security Attribute service. * * Lists the security attributes in the specified namespace. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSecurityAttributes = oci.securityattribute.getSecurityAttributes({ * securityAttributeNamespaceId: testSecurityAttributeNamespace.id, * state: securityAttributeState, * }); * ``` */ export declare function getSecurityAttributesOutput(args: GetSecurityAttributesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSecurityAttributes. */ export interface GetSecurityAttributesOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The OCID of the security attribute namespace. */ securityAttributeNamespaceId: pulumi.Input; /** * A filter to only return resources that match the given lifecycle state. The state value is case-insensitive. */ state?: pulumi.Input; } //# sourceMappingURL=getSecurityAttributes.d.ts.map