import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class EdgeHostName extends pulumi.CustomResource { /** * Get an existing EdgeHostName 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?: EdgeHostNameState, opts?: pulumi.CustomResourceOptions): EdgeHostName; /** * Returns true if the given object is an instance of EdgeHostName. 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 EdgeHostName; readonly certificate: pulumi.Output; readonly contractId: pulumi.Output; readonly edgeHostname: pulumi.Output; readonly groupId: pulumi.Output; /** * Specifies the HTTPS service binding. Allowed values: H2, H3, H2_AND_H3. */ readonly httpsServiceBinding: pulumi.Output; readonly ipBehavior: pulumi.Output; readonly productId: pulumi.Output; /** * Email address that should receive updates on the IP behavior update request. */ readonly statusUpdateEmails: pulumi.Output; /** * Enables to set timeout for processing */ readonly timeouts: pulumi.Output; /** * The time to live, or number of seconds to keep an edge hostname assigned to a map or target. If not provided default value for product is used. */ readonly ttl: pulumi.Output; /** * A JSON encoded list of use cases */ readonly useCases: pulumi.Output; /** * Create a EdgeHostName 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: EdgeHostNameArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering EdgeHostName resources. */ export interface EdgeHostNameState { certificate?: pulumi.Input; contractId?: pulumi.Input; edgeHostname?: pulumi.Input; groupId?: pulumi.Input; /** * Specifies the HTTPS service binding. Allowed values: H2, H3, H2_AND_H3. */ httpsServiceBinding?: pulumi.Input; ipBehavior?: pulumi.Input; productId?: pulumi.Input; /** * Email address that should receive updates on the IP behavior update request. */ statusUpdateEmails?: pulumi.Input[] | undefined>; /** * Enables to set timeout for processing */ timeouts?: pulumi.Input; /** * The time to live, or number of seconds to keep an edge hostname assigned to a map or target. If not provided default value for product is used. */ ttl?: pulumi.Input; /** * A JSON encoded list of use cases */ useCases?: pulumi.Input; } /** * The set of arguments for constructing a EdgeHostName resource. */ export interface EdgeHostNameArgs { certificate?: pulumi.Input; contractId: pulumi.Input; edgeHostname: pulumi.Input; groupId: pulumi.Input; /** * Specifies the HTTPS service binding. Allowed values: H2, H3, H2_AND_H3. */ httpsServiceBinding?: pulumi.Input; ipBehavior: pulumi.Input; productId?: pulumi.Input; /** * Email address that should receive updates on the IP behavior update request. */ statusUpdateEmails?: pulumi.Input[] | undefined>; /** * Enables to set timeout for processing */ timeouts?: pulumi.Input; /** * The time to live, or number of seconds to keep an edge hostname assigned to a map or target. If not provided default value for product is used. */ ttl?: pulumi.Input; /** * A JSON encoded list of use cases */ useCases?: pulumi.Input; } //# sourceMappingURL=edgeHostName.d.ts.map