import * as pulumi from "@pulumi/pulumi"; /** * Adding access addresses to the allowlist for public network access can effectively enhance information security * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as volcenginecc from "@volcengine/pulumi-volcenginecc"; * * const cREndpointAclPolicyDemo = new volcenginecc.cr.EndpointAclPolicy("CREndpointAclPolicyDemo", { * registry: "xxxxx", * type: "Public", * entry: "0.0.0.0/0", * description: "test acl policy", * }); * ``` * * ## Import * * ```sh * $ pulumi import volcenginecc:cr/endpointAclPolicy:EndpointAclPolicy example "registry|entry" * ``` */ export declare class EndpointAclPolicy extends pulumi.CustomResource { /** * Get an existing EndpointAclPolicy 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?: EndpointAclPolicyState, opts?: pulumi.CustomResourceOptions): EndpointAclPolicy; /** * Returns true if the given object is an instance of EndpointAclPolicy. 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 EndpointAclPolicy; /** * Description of the allowlist IPs */ readonly description: pulumi.Output; /** * Allowlist IPs to be added */ readonly entry: pulumi.Output; /** * Name of the image repository instance. On the Instance List page in the Image Repository Console, obtain the instance name */ readonly registry: pulumi.Output; /** * Network type of the allowlist; currently only Public is supported */ readonly type: pulumi.Output; /** * Create a EndpointAclPolicy 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: EndpointAclPolicyArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering EndpointAclPolicy resources. */ export interface EndpointAclPolicyState { /** * Description of the allowlist IPs */ description?: pulumi.Input; /** * Allowlist IPs to be added */ entry?: pulumi.Input; /** * Name of the image repository instance. On the Instance List page in the Image Repository Console, obtain the instance name */ registry?: pulumi.Input; /** * Network type of the allowlist; currently only Public is supported */ type?: pulumi.Input; } /** * The set of arguments for constructing a EndpointAclPolicy resource. */ export interface EndpointAclPolicyArgs { /** * Description of the allowlist IPs */ description?: pulumi.Input; /** * Allowlist IPs to be added */ entry?: pulumi.Input; /** * Name of the image repository instance. On the Instance List page in the Image Repository Console, obtain the instance name */ registry: pulumi.Input; /** * Network type of the allowlist; currently only Public is supported */ type: pulumi.Input; }