import * as pulumi from "@pulumi/pulumi"; /** * Gets details of a single ServiceConnectionToken. */ export declare function getServiceConnectionToken(args: GetServiceConnectionTokenArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetServiceConnectionTokenArgs { location: string; project?: string; serviceConnectionTokenId: string; } export interface GetServiceConnectionTokenResult { /** * Time when the ServiceConnectionToken was created. */ readonly createTime: string; /** * A description of this resource. */ readonly description: string; /** * Optional. The etag is computed by the server, and may be sent on update and delete requests to ensure the client has an up-to-date value before proceeding. */ readonly etag: string; /** * The time to which this token is valid. */ readonly expireTime: string; /** * User-defined labels. */ readonly labels: { [key: string]: string; }; /** * Immutable. The name of a ServiceConnectionToken. Format: projects/{project}/locations/{location}/ServiceConnectionTokens/{service_connection_token} See: https://google.aip.dev/122#fields-representing-resource-names */ readonly name: string; /** * The resource path of the network associated with this token. Example: projects/{projectNumOrId}/global/networks/{resourceId}. */ readonly network: string; /** * The token generated by Automation. */ readonly token: string; /** * Time when the ServiceConnectionToken was updated. */ readonly updateTime: string; } /** * Gets details of a single ServiceConnectionToken. */ export declare function getServiceConnectionTokenOutput(args: GetServiceConnectionTokenOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; export interface GetServiceConnectionTokenOutputArgs { location: pulumi.Input; project?: pulumi.Input; serviceConnectionTokenId: pulumi.Input; }