@pulumi/yandex
Version:
A Pulumi package for creating and managing yandex cloud resources.
146 lines (145 loc) • 5.67 kB
TypeScript
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<string | undefined>;
/**
* The API endpoint for Yandex.Cloud SDK client.
*/
readonly endpoint: pulumi.Output<string | undefined>;
/**
* The default folder ID where resources will be placed.
*/
readonly folderId: pulumi.Output<string | undefined>;
readonly organizationId: pulumi.Output<string | undefined>;
/**
* Either the path to or the contents of a Service Account key file in JSON format.
*/
readonly serviceAccountKeyFile: pulumi.Output<string | undefined>;
/**
* Yandex.Cloud storage service access key. Used when a storage data/resource doesn't have an access key explicitly
* specified.
*/
readonly storageAccessKey: pulumi.Output<string | undefined>;
/**
* Yandex.Cloud storage service endpoint. Default is storage.yandexcloud.net
*/
readonly storageEndpoint: pulumi.Output<string | undefined>;
/**
* Yandex.Cloud storage service secret key. Used when a storage data/resource doesn't have a secret key explicitly
* specified.
*/
readonly storageSecretKey: pulumi.Output<string | undefined>;
/**
* The access token for API operations.
*/
readonly token: pulumi.Output<string | undefined>;
/**
* 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<string | undefined>;
/**
* Yandex.Cloud Message Queue service endpoint. Default is message-queue.api.cloud.yandex.net
*/
readonly ymqEndpoint: pulumi.Output<string | undefined>;
/**
* 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<string | undefined>;
/**
* The zone where operations will take place. Examples are ru-central1-a, ru-central2-c, etc.
*/
readonly zone: pulumi.Output<string | undefined>;
/**
* 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<string>;
/**
* The API endpoint for Yandex.Cloud SDK client.
*/
endpoint?: pulumi.Input<string>;
/**
* The default folder ID where resources will be placed.
*/
folderId?: pulumi.Input<string>;
/**
* Explicitly allow the provider to perform "insecure" SSL requests. If omitted,default value is `false`.
*/
insecure?: pulumi.Input<boolean>;
/**
* The maximum number of times an API request is being executed. If the API request still fails, an error is thrown.
*/
maxRetries?: pulumi.Input<number>;
organizationId?: pulumi.Input<string>;
/**
* Disable use of TLS. Default value is `false`.
*/
plaintext?: pulumi.Input<boolean>;
/**
* Either the path to or the contents of a Service Account key file in JSON format.
*/
serviceAccountKeyFile?: pulumi.Input<string>;
/**
* Yandex.Cloud storage service access key. Used when a storage data/resource doesn't have an access key explicitly
* specified.
*/
storageAccessKey?: pulumi.Input<string>;
/**
* Yandex.Cloud storage service endpoint. Default is storage.yandexcloud.net
*/
storageEndpoint?: pulumi.Input<string>;
/**
* Yandex.Cloud storage service secret key. Used when a storage data/resource doesn't have a secret key explicitly
* specified.
*/
storageSecretKey?: pulumi.Input<string>;
/**
* The access token for API operations.
*/
token?: pulumi.Input<string>;
/**
* Yandex.Cloud Message Queue service access key. Used when a message queue resource doesn't have an access key explicitly
* specified.
*/
ymqAccessKey?: pulumi.Input<string>;
/**
* Yandex.Cloud Message Queue service endpoint. Default is message-queue.api.cloud.yandex.net
*/
ymqEndpoint?: pulumi.Input<string>;
/**
* Yandex.Cloud Message Queue service secret key. Used when a message queue resource doesn't have a secret key explicitly
* specified.
*/
ymqSecretKey?: pulumi.Input<string>;
/**
* The zone where operations will take place. Examples are ru-central1-a, ru-central2-c, etc.
*/
zone?: pulumi.Input<string>;
}