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.
81 lines • 3.34 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
export declare class ComputeContainerImageregistry extends pulumi.CustomResource {
/**
* Get an existing ComputeContainerImageregistry 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?: ComputeContainerImageregistryState, opts?: pulumi.CustomResourceOptions): ComputeContainerImageregistry;
/**
* Returns true if the given object is an instance of ComputeContainerImageregistry. 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 ComputeContainerImageregistry;
/**
* The unique identifier for the image registry.
*/
readonly computeContainerImageregistryId: pulumi.Output<number>;
/**
* Options: `DockerHub`, `GitHub`
*/
readonly registry: pulumi.Output<string>;
/**
* The token used to authenticate to the registry. If you are importing a resource, declare the token as an empty string.
*/
readonly token: pulumi.Output<string>;
/**
* The username used to authenticate to the registry.
*/
readonly username: pulumi.Output<string>;
/**
* Create a ComputeContainerImageregistry 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: ComputeContainerImageregistryArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering ComputeContainerImageregistry resources.
*/
export interface ComputeContainerImageregistryState {
/**
* The unique identifier for the image registry.
*/
computeContainerImageregistryId?: pulumi.Input<number | undefined>;
/**
* Options: `DockerHub`, `GitHub`
*/
registry?: pulumi.Input<string | undefined>;
/**
* The token used to authenticate to the registry. If you are importing a resource, declare the token as an empty string.
*/
token?: pulumi.Input<string | undefined>;
/**
* The username used to authenticate to the registry.
*/
username?: pulumi.Input<string | undefined>;
}
/**
* The set of arguments for constructing a ComputeContainerImageregistry resource.
*/
export interface ComputeContainerImageregistryArgs {
/**
* Options: `DockerHub`, `GitHub`
*/
registry: pulumi.Input<string>;
/**
* The token used to authenticate to the registry. If you are importing a resource, declare the token as an empty string.
*/
token: pulumi.Input<string>;
/**
* The username used to authenticate to the registry.
*/
username: pulumi.Input<string>;
}
//# sourceMappingURL=computeContainerImageregistry.d.ts.map