import * as pulumi from "@pulumi/pulumi"; export declare class ByoIpPrefix extends pulumi.CustomResource { /** * Get an existing ByoIpPrefix 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?: ByoIpPrefixState, opts?: pulumi.CustomResourceOptions): ByoIpPrefix; /** * Returns true if the given object is an instance of ByoIpPrefix. 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 ByoIpPrefix; /** * Identifier of a Cloudflare account. */ readonly accountId: pulumi.Output; /** * Prefix advertisement status to the Internet. This field is only not 'null' if on demand is enabled. * * @deprecated Deprecated */ readonly advertised: pulumi.Output; /** * Last time the advertisement status was changed. This field is only not 'null' if on demand is enabled. * * @deprecated Deprecated */ readonly advertisedModifiedAt: pulumi.Output; /** * Approval state of the prefix (P = pending, V = active). */ readonly approved: pulumi.Output; /** * Autonomous System Number (ASN) the prefix will be advertised under. */ readonly asn: pulumi.Output; /** * IP Prefix in Classless Inter-Domain Routing format. */ readonly cidr: pulumi.Output; readonly createdAt: pulumi.Output; /** * Whether Cloudflare is allowed to generate the LOA document on behalf of the prefix owner. */ readonly delegateLoaCreation: pulumi.Output; /** * Description of the prefix. */ readonly description: pulumi.Output; /** * State of one kind of validation for an IP prefix. */ readonly irrValidationState: pulumi.Output; /** * Identifier for the uploaded LOA document. */ readonly loaDocumentId: pulumi.Output; readonly modifiedAt: pulumi.Output; /** * Whether advertisement of the prefix to the Internet may be dynamically enabled or disabled. * * @deprecated Deprecated */ readonly onDemandEnabled: pulumi.Output; /** * Whether advertisement status of the prefix is locked, meaning it cannot be changed. * * @deprecated Deprecated */ readonly onDemandLocked: pulumi.Output; /** * State of one kind of validation for an IP prefix. */ readonly ownershipValidationState: pulumi.Output; /** * Token provided to demonstrate ownership of the prefix. */ readonly ownershipValidationToken: pulumi.Output; /** * State of one kind of validation for an IP prefix. */ readonly rpkiValidationState: pulumi.Output; /** * Create a ByoIpPrefix 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: ByoIpPrefixArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ByoIpPrefix resources. */ export interface ByoIpPrefixState { /** * Identifier of a Cloudflare account. */ accountId?: pulumi.Input; /** * Prefix advertisement status to the Internet. This field is only not 'null' if on demand is enabled. * * @deprecated Deprecated */ advertised?: pulumi.Input; /** * Last time the advertisement status was changed. This field is only not 'null' if on demand is enabled. * * @deprecated Deprecated */ advertisedModifiedAt?: pulumi.Input; /** * Approval state of the prefix (P = pending, V = active). */ approved?: pulumi.Input; /** * Autonomous System Number (ASN) the prefix will be advertised under. */ asn?: pulumi.Input; /** * IP Prefix in Classless Inter-Domain Routing format. */ cidr?: pulumi.Input; createdAt?: pulumi.Input; /** * Whether Cloudflare is allowed to generate the LOA document on behalf of the prefix owner. */ delegateLoaCreation?: pulumi.Input; /** * Description of the prefix. */ description?: pulumi.Input; /** * State of one kind of validation for an IP prefix. */ irrValidationState?: pulumi.Input; /** * Identifier for the uploaded LOA document. */ loaDocumentId?: pulumi.Input; modifiedAt?: pulumi.Input; /** * Whether advertisement of the prefix to the Internet may be dynamically enabled or disabled. * * @deprecated Deprecated */ onDemandEnabled?: pulumi.Input; /** * Whether advertisement status of the prefix is locked, meaning it cannot be changed. * * @deprecated Deprecated */ onDemandLocked?: pulumi.Input; /** * State of one kind of validation for an IP prefix. */ ownershipValidationState?: pulumi.Input; /** * Token provided to demonstrate ownership of the prefix. */ ownershipValidationToken?: pulumi.Input; /** * State of one kind of validation for an IP prefix. */ rpkiValidationState?: pulumi.Input; } /** * The set of arguments for constructing a ByoIpPrefix resource. */ export interface ByoIpPrefixArgs { /** * Identifier of a Cloudflare account. */ accountId: pulumi.Input; /** * Autonomous System Number (ASN) the prefix will be advertised under. */ asn: pulumi.Input; /** * IP Prefix in Classless Inter-Domain Routing format. */ cidr: pulumi.Input; /** * Whether Cloudflare is allowed to generate the LOA document on behalf of the prefix owner. */ delegateLoaCreation?: pulumi.Input; /** * Description of the prefix. */ description?: pulumi.Input; /** * Identifier for the uploaded LOA document. */ loaDocumentId?: pulumi.Input; } //# sourceMappingURL=byoIpPrefix.d.ts.map