pulumi-bunnynet
Version:
A Pulumi provider for managing Bunny.net CDN and edge computing resources, dynamically bridged from the Terraform Bunnynet provider with support for pull zones, storage, DNS, compute containers, and video streaming.
253 lines • 7.92 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
export declare class PullzoneOptimizerClass extends pulumi.CustomResource {
/**
* Get an existing PullzoneOptimizerClass 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<pulumi.ID>, state?: PullzoneOptimizerClassState, opts?: pulumi.CustomResourceOptions): PullzoneOptimizerClass;
/**
* Returns true if the given object is an instance of PullzoneOptimizerClass. 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 PullzoneOptimizerClass;
/**
* The aspect ratio for image optimization.
*/
readonly aspectRatio: pulumi.Output<string | undefined>;
/**
* Indicates whether automatic optimization for images is enabled.
*/
readonly autoOptimize: pulumi.Output<string | undefined>;
/**
* The level of blur to apply to images.
*/
readonly blur: pulumi.Output<number | undefined>;
/**
* The brightness adjustment for images.
*/
readonly brightness: pulumi.Output<number | undefined>;
/**
* The contrast adjustment for images.
*/
readonly contrast: pulumi.Output<number | undefined>;
/**
* The cropping settings for images.
*/
readonly crop: pulumi.Output<string | undefined>;
/**
* The gravity setting for cropping.
*/
readonly cropGravity: pulumi.Output<string | undefined>;
/**
* Indicates whether to flip images horizontally.
*/
readonly flip: pulumi.Output<boolean | undefined>;
/**
* Indicates whether to flip images vertically.
*/
readonly flop: pulumi.Output<boolean | undefined>;
/**
* The height to which images should be resized.
*/
readonly height: pulumi.Output<number | undefined>;
/**
* The hue adjustment for images.
*/
readonly hue: pulumi.Output<number | undefined>;
/**
* The name of the optimizer class.
*/
readonly name: pulumi.Output<string>;
/**
* The ID of the linked pull zone.
*/
readonly pullzone: pulumi.Output<number>;
/**
* The quality setting for image optimization.
*/
readonly quality: pulumi.Output<number | undefined>;
/**
* The saturation adjustment for images.
*/
readonly saturation: pulumi.Output<number | undefined>;
/**
* The level of sepia tone to apply to images.
*/
readonly sepia: pulumi.Output<number | undefined>;
/**
* Indicates whether to sharpen images.
*/
readonly sharpen: pulumi.Output<boolean | undefined>;
/**
* The width to which images should be resized.
*/
readonly width: pulumi.Output<number | undefined>;
/**
* Create a PullzoneOptimizerClass 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: PullzoneOptimizerClassArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering PullzoneOptimizerClass resources.
*/
export interface PullzoneOptimizerClassState {
/**
* The aspect ratio for image optimization.
*/
aspectRatio?: pulumi.Input<string | undefined>;
/**
* Indicates whether automatic optimization for images is enabled.
*/
autoOptimize?: pulumi.Input<string | undefined>;
/**
* The level of blur to apply to images.
*/
blur?: pulumi.Input<number | undefined>;
/**
* The brightness adjustment for images.
*/
brightness?: pulumi.Input<number | undefined>;
/**
* The contrast adjustment for images.
*/
contrast?: pulumi.Input<number | undefined>;
/**
* The cropping settings for images.
*/
crop?: pulumi.Input<string | undefined>;
/**
* The gravity setting for cropping.
*/
cropGravity?: pulumi.Input<string | undefined>;
/**
* Indicates whether to flip images horizontally.
*/
flip?: pulumi.Input<boolean | undefined>;
/**
* Indicates whether to flip images vertically.
*/
flop?: pulumi.Input<boolean | undefined>;
/**
* The height to which images should be resized.
*/
height?: pulumi.Input<number | undefined>;
/**
* The hue adjustment for images.
*/
hue?: pulumi.Input<number | undefined>;
/**
* The name of the optimizer class.
*/
name?: pulumi.Input<string | undefined>;
/**
* The ID of the linked pull zone.
*/
pullzone?: pulumi.Input<number | undefined>;
/**
* The quality setting for image optimization.
*/
quality?: pulumi.Input<number | undefined>;
/**
* The saturation adjustment for images.
*/
saturation?: pulumi.Input<number | undefined>;
/**
* The level of sepia tone to apply to images.
*/
sepia?: pulumi.Input<number | undefined>;
/**
* Indicates whether to sharpen images.
*/
sharpen?: pulumi.Input<boolean | undefined>;
/**
* The width to which images should be resized.
*/
width?: pulumi.Input<number | undefined>;
}
/**
* The set of arguments for constructing a PullzoneOptimizerClass resource.
*/
export interface PullzoneOptimizerClassArgs {
/**
* The aspect ratio for image optimization.
*/
aspectRatio?: pulumi.Input<string | undefined>;
/**
* Indicates whether automatic optimization for images is enabled.
*/
autoOptimize?: pulumi.Input<string | undefined>;
/**
* The level of blur to apply to images.
*/
blur?: pulumi.Input<number | undefined>;
/**
* The brightness adjustment for images.
*/
brightness?: pulumi.Input<number | undefined>;
/**
* The contrast adjustment for images.
*/
contrast?: pulumi.Input<number | undefined>;
/**
* The cropping settings for images.
*/
crop?: pulumi.Input<string | undefined>;
/**
* The gravity setting for cropping.
*/
cropGravity?: pulumi.Input<string | undefined>;
/**
* Indicates whether to flip images horizontally.
*/
flip?: pulumi.Input<boolean | undefined>;
/**
* Indicates whether to flip images vertically.
*/
flop?: pulumi.Input<boolean | undefined>;
/**
* The height to which images should be resized.
*/
height?: pulumi.Input<number | undefined>;
/**
* The hue adjustment for images.
*/
hue?: pulumi.Input<number | undefined>;
/**
* The name of the optimizer class.
*/
name?: pulumi.Input<string | undefined>;
/**
* The ID of the linked pull zone.
*/
pullzone: pulumi.Input<number>;
/**
* The quality setting for image optimization.
*/
quality?: pulumi.Input<number | undefined>;
/**
* The saturation adjustment for images.
*/
saturation?: pulumi.Input<number | undefined>;
/**
* The level of sepia tone to apply to images.
*/
sepia?: pulumi.Input<number | undefined>;
/**
* Indicates whether to sharpen images.
*/
sharpen?: pulumi.Input<boolean | undefined>;
/**
* The width to which images should be resized.
*/
width?: pulumi.Input<number | undefined>;
}
//# sourceMappingURL=pullzoneOptimizerClass.d.ts.map