import * as pulumi from "@pulumi/pulumi"; /** * The provider type for the yandex package. By default, resources use package-wide configuration * settings, however an explicit `Provider` instance may be created and passed during resource * construction to achieve fine-grained programmatic control over provider settings. See the * [documentation](https://www.pulumi.com/docs/reference/programming-model/#providers) for more information. */ export declare class Provider extends pulumi.ProviderResource { /** * Returns true if the given object is an instance of Provider. 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 Provider; /** * ID of Yandex.Cloud tenant. */ readonly cloudId: pulumi.Output; /** * The API endpoint for Yandex.Cloud SDK client. */ readonly endpoint: pulumi.Output; /** * The default folder ID where resources will be placed. */ readonly folderId: pulumi.Output; readonly organizationId: pulumi.Output; /** * Either the path to or the contents of a Service Account key file in JSON format. */ readonly serviceAccountKeyFile: pulumi.Output; /** * Yandex.Cloud storage service access key. Used when a storage data/resource doesn't have an access key explicitly * specified. */ readonly storageAccessKey: pulumi.Output; /** * Yandex.Cloud storage service endpoint. Default is storage.yandexcloud.net */ readonly storageEndpoint: pulumi.Output; /** * Yandex.Cloud storage service secret key. Used when a storage data/resource doesn't have a secret key explicitly * specified. */ readonly storageSecretKey: pulumi.Output; /** * The access token for API operations. */ readonly token: pulumi.Output; /** * Yandex.Cloud Message Queue service access key. Used when a message queue resource doesn't have an access key explicitly * specified. */ readonly ymqAccessKey: pulumi.Output; /** * Yandex.Cloud Message Queue service endpoint. Default is message-queue.api.cloud.yandex.net */ readonly ymqEndpoint: pulumi.Output; /** * Yandex.Cloud Message Queue service secret key. Used when a message queue resource doesn't have a secret key explicitly * specified. */ readonly ymqSecretKey: pulumi.Output; /** * The zone where operations will take place. Examples are ru-central1-a, ru-central2-c, etc. */ readonly zone: pulumi.Output; /** * Create a Provider 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?: ProviderArgs, opts?: pulumi.ResourceOptions); } /** * The set of arguments for constructing a Provider resource. */ export interface ProviderArgs { /** * ID of Yandex.Cloud tenant. */ cloudId?: pulumi.Input; /** * The API endpoint for Yandex.Cloud SDK client. */ endpoint?: pulumi.Input; /** * The default folder ID where resources will be placed. */ folderId?: pulumi.Input; /** * Explicitly allow the provider to perform "insecure" SSL requests. If omitted,default value is `false`. */ insecure?: pulumi.Input; /** * The maximum number of times an API request is being executed. If the API request still fails, an error is thrown. */ maxRetries?: pulumi.Input; organizationId?: pulumi.Input; /** * Disable use of TLS. Default value is `false`. */ plaintext?: pulumi.Input; /** * Either the path to or the contents of a Service Account key file in JSON format. */ serviceAccountKeyFile?: pulumi.Input; /** * Yandex.Cloud storage service access key. Used when a storage data/resource doesn't have an access key explicitly * specified. */ storageAccessKey?: pulumi.Input; /** * Yandex.Cloud storage service endpoint. Default is storage.yandexcloud.net */ storageEndpoint?: pulumi.Input; /** * Yandex.Cloud storage service secret key. Used when a storage data/resource doesn't have a secret key explicitly * specified. */ storageSecretKey?: pulumi.Input; /** * The access token for API operations. */ token?: pulumi.Input; /** * Yandex.Cloud Message Queue service access key. Used when a message queue resource doesn't have an access key explicitly * specified. */ ymqAccessKey?: pulumi.Input; /** * Yandex.Cloud Message Queue service endpoint. Default is message-queue.api.cloud.yandex.net */ ymqEndpoint?: pulumi.Input; /** * Yandex.Cloud Message Queue service secret key. Used when a message queue resource doesn't have a secret key explicitly * specified. */ ymqSecretKey?: pulumi.Input; /** * The zone where operations will take place. Examples are ru-central1-a, ru-central2-c, etc. */ zone?: pulumi.Input; }