import * as pulumi from "@pulumi/pulumi"; import { input as inputs, output as outputs } from "../../types"; /** * Creates a new subscription. */ export declare class AdminSubscription extends pulumi.CustomResource { /** * Get an existing AdminSubscription 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): AdminSubscription; /** * Returns true if the given object is an instance of AdminSubscription. 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 AdminSubscription; /** * The settings for this subscription's message delivery. */ readonly deliveryConfig: pulumi.Output; /** * The name of the subscription. Structured like: projects/{project_number}/locations/{location}/subscriptions/{subscription_id} */ readonly name: 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 AdminSubscription 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: AdminSubscriptionArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a AdminSubscription resource. */ export interface AdminSubscriptionArgs { /** * The settings for this subscription's message delivery. */ readonly deliveryConfig?: pulumi.Input; readonly locationsId: pulumi.Input; /** * The name of the subscription. Structured like: projects/{project_number}/locations/{location}/subscriptions/{subscription_id} */ readonly name?: pulumi.Input; readonly projectsId: pulumi.Input; readonly subscriptionsId: pulumi.Input; /** * The name of the topic this subscription is attached to. Structured like: projects/{project_number}/locations/{location}/topics/{topic_id} */ readonly topic?: pulumi.Input; }