import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Subscriber resource in Oracle Cloud Infrastructure API Gateway service. * * Gets a subscriber by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSubscriber = oci.apigateway.getSubscriber({ * subscriberId: testSubscriberOciApigatewaySubscriber.id, * }); * ``` */ export declare function getSubscriber(args: GetSubscriberArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSubscriber. */ export interface GetSubscriberArgs { /** * The ocid of the subscriber. */ subscriberId: string; } /** * A collection of values returned by getSubscriber. */ export interface GetSubscriberResult { /** * The clients belonging to this subscriber. */ readonly clients: outputs.ApiGateway.GetSubscriberClient[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the resource is created. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource` */ readonly displayName: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the resource. */ readonly id: string; readonly isLockOverride: boolean; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in a Failed state. */ readonly lifecycleDetails: string; /** * Locks associated with this resource. */ readonly locks: outputs.ApiGateway.GetSubscriberLock[]; /** * The current state of the subscriber. */ readonly state: string; readonly subscriberId: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time this resource was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time this resource was last updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; /** * An array of [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm)s of usage plan resources. */ readonly usagePlans: string[]; } /** * This data source provides details about a specific Subscriber resource in Oracle Cloud Infrastructure API Gateway service. * * Gets a subscriber by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSubscriber = oci.apigateway.getSubscriber({ * subscriberId: testSubscriberOciApigatewaySubscriber.id, * }); * ``` */ export declare function getSubscriberOutput(args: GetSubscriberOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSubscriber. */ export interface GetSubscriberOutputArgs { /** * The ocid of the subscriber. */ subscriberId: pulumi.Input; } //# sourceMappingURL=getSubscriber.d.ts.map