import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../../types/input"; import * as outputs from "../../types/output"; /** * Creates a new subscription. */ export declare class Subscription extends pulumi.CustomResource { /** * Get an existing Subscription 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 opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, opts?: pulumi.CustomResourceOptions): Subscription; /** * Returns true if the given object is an instance of Subscription. 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 Subscription; /** * The settings for this subscription's message delivery. */ readonly deliveryConfig: pulumi.Output; /** * If present, messages are automatically written from the Pub/Sub Lite topic associated with this subscription to a destination. */ readonly exportConfig: pulumi.Output; readonly location: pulumi.Output; /** * The name of the subscription. Structured like: projects/{project_number}/locations/{location}/subscriptions/{subscription_id} */ readonly name: pulumi.Output; readonly project: pulumi.Output; /** * If true, the newly created subscription will only receive messages published after the subscription was created. Otherwise, the entire message backlog will be received on the subscription. Defaults to false. */ readonly skipBacklog: pulumi.Output; /** * Required. The ID to use for the subscription, which will become the final component of the subscription's name. This value is structured like: `my-sub-name`. */ readonly subscriptionId: pulumi.Output; /** * The name of the topic this subscription is attached to. Structured like: projects/{project_number}/locations/{location}/topics/{topic_id} */ readonly topic: pulumi.Output; /** * Create a Subscription 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: SubscriptionArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Subscription resource. */ export interface SubscriptionArgs { /** * The settings for this subscription's message delivery. */ deliveryConfig?: pulumi.Input; /** * If present, messages are automatically written from the Pub/Sub Lite topic associated with this subscription to a destination. */ exportConfig?: pulumi.Input; location?: pulumi.Input; /** * The name of the subscription. Structured like: projects/{project_number}/locations/{location}/subscriptions/{subscription_id} */ name?: pulumi.Input; project?: pulumi.Input; /** * If true, the newly created subscription will only receive messages published after the subscription was created. Otherwise, the entire message backlog will be received on the subscription. Defaults to false. */ skipBacklog?: pulumi.Input; /** * Required. The ID to use for the subscription, which will become the final component of the subscription's name. This value is structured like: `my-sub-name`. */ subscriptionId: pulumi.Input; /** * The name of the topic this subscription is attached to. Structured like: projects/{project_number}/locations/{location}/topics/{topic_id} */ topic?: pulumi.Input; }