@pulumi/gcp
Version:
A Pulumi package for creating and managing Google Cloud Platform resources.
276 lines (275 loc) • 10 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as inputs from "../types/input";
import * as outputs from "../types/output";
/**
* ## Example Usage
*
* ### Compute Rmig Resize Request
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as gcp from "@pulumi/gcp";
*
* const a3Dws = new gcp.compute.RegionInstanceTemplate("a3_dws", {
* name: "a3-dws",
* region: "us-central1",
* description: "This template is used to create a mig instance that is compatible with DWS resize requests.",
* instanceDescription: "A3 GPU",
* machineType: "a3-highgpu-8g",
* canIpForward: false,
* scheduling: {
* automaticRestart: false,
* onHostMaintenance: "TERMINATE",
* },
* disks: [{
* sourceImage: "cos-cloud/cos-105-lts",
* autoDelete: true,
* boot: true,
* diskType: "pd-ssd",
* diskSizeGb: 960,
* mode: "READ_WRITE",
* }],
* guestAccelerators: [{
* type: "nvidia-h100-80gb",
* count: 8,
* }],
* reservationAffinity: {
* type: "NO_RESERVATION",
* },
* shieldedInstanceConfig: {
* enableVtpm: true,
* enableIntegrityMonitoring: true,
* },
* networkInterfaces: [{
* network: "default",
* }],
* });
* const a3DwsRegionInstanceGroupManager = new gcp.compute.RegionInstanceGroupManager("a3_dws", {
* name: "a3-dws",
* baseInstanceName: "a3-dws",
* region: "us-central1",
* versions: [{
* instanceTemplate: a3Dws.selfLink,
* }],
* instanceLifecyclePolicy: {
* defaultActionOnFailure: "DO_NOTHING",
* },
* distributionPolicyTargetShape: "ANY_SINGLE_ZONE",
* distributionPolicyZones: [
* "us-central1-a",
* "us-central1-b",
* "us-central1-c",
* "us-central1-f",
* ],
* updatePolicy: {
* instanceRedistributionType: "NONE",
* type: "OPPORTUNISTIC",
* minimalAction: "REPLACE",
* maxSurgeFixed: 0,
* maxUnavailableFixed: 6,
* },
* waitForInstances: false,
* });
* const a3ResizeRequest = new gcp.compute.RegionResizeRequest("a3_resize_request", {
* name: "a3-dws",
* instanceGroupManager: a3DwsRegionInstanceGroupManager.name,
* region: "us-central1",
* description: "Test resize request resource",
* resizeBy: 2,
* requestedRunDuration: {
* seconds: "14400",
* nanos: 0,
* },
* });
* ```
*
* ## Import
*
* RegionResizeRequest can be imported using any of these accepted formats:
*
* * `projects/{{project}}/regions/{{region}}/instanceGroupManagers/{{instance_group_manager}}/resizeRequests/{{name}}`
*
* * `{{project}}/{{region}}/{{instance_group_manager}}/{{name}}`
*
* * `{{region}}/{{instance_group_manager}}/{{name}}`
*
* * `{{instance_group_manager}}/{{name}}`
*
* When using the `pulumi import` command, RegionResizeRequest can be imported using one of the formats above. For example:
*
* ```sh
* $ pulumi import gcp:compute/regionResizeRequest:RegionResizeRequest default projects/{{project}}/regions/{{region}}/instanceGroupManagers/{{instance_group_manager}}/resizeRequests/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:compute/regionResizeRequest:RegionResizeRequest default {{project}}/{{region}}/{{instance_group_manager}}/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:compute/regionResizeRequest:RegionResizeRequest default {{region}}/{{instance_group_manager}}/{{name}}
* ```
*
* ```sh
* $ pulumi import gcp:compute/regionResizeRequest:RegionResizeRequest default {{instance_group_manager}}/{{name}}
* ```
*/
export declare class RegionResizeRequest extends pulumi.CustomResource {
/**
* Get an existing RegionResizeRequest 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 state Any extra arguments used during the lookup.
* @param opts Optional settings to control the behavior of the CustomResource.
*/
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: RegionResizeRequestState, opts?: pulumi.CustomResourceOptions): RegionResizeRequest;
/**
* Returns true if the given object is an instance of RegionResizeRequest. 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 RegionResizeRequest;
/**
* The creation timestamp for this resize request in RFC3339 text format.
*/
readonly creationTimestamp: pulumi.Output<string>;
/**
* An optional description of this resize-request.
*/
readonly description: pulumi.Output<string | undefined>;
/**
* The reference of the regional instance group manager this ResizeRequest is a part of.
*
*
* - - -
*/
readonly instanceGroupManager: pulumi.Output<string>;
/**
* The name of this resize request. The name must be 1-63 characters long, and comply with RFC1035.
*/
readonly name: pulumi.Output<string>;
/**
* The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
readonly project: pulumi.Output<string>;
/**
* The reference of the compute region scoping this request. If it is not provided, the provider region is used.
*/
readonly region: pulumi.Output<string>;
/**
* Requested run duration for instances that will be created by this request. At the end of the run duration instances will be deleted.
* Structure is documented below.
*/
readonly requestedRunDuration: pulumi.Output<outputs.compute.RegionResizeRequestRequestedRunDuration | undefined>;
/**
* The number of instances to be created by this resize request. The group's target size will be increased by this number.
*/
readonly resizeBy: pulumi.Output<number>;
/**
* Current state of the request.
*/
readonly state: pulumi.Output<string>;
/**
* Status of the request.
* Structure is documented below.
*/
readonly statuses: pulumi.Output<outputs.compute.RegionResizeRequestStatus[]>;
/**
* Create a RegionResizeRequest 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: RegionResizeRequestArgs, opts?: pulumi.CustomResourceOptions);
}
/**
* Input properties used for looking up and filtering RegionResizeRequest resources.
*/
export interface RegionResizeRequestState {
/**
* The creation timestamp for this resize request in RFC3339 text format.
*/
creationTimestamp?: pulumi.Input<string>;
/**
* An optional description of this resize-request.
*/
description?: pulumi.Input<string>;
/**
* The reference of the regional instance group manager this ResizeRequest is a part of.
*
*
* - - -
*/
instanceGroupManager?: pulumi.Input<string>;
/**
* The name of this resize request. The name must be 1-63 characters long, and comply with RFC1035.
*/
name?: pulumi.Input<string>;
/**
* The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
project?: pulumi.Input<string>;
/**
* The reference of the compute region scoping this request. If it is not provided, the provider region is used.
*/
region?: pulumi.Input<string>;
/**
* Requested run duration for instances that will be created by this request. At the end of the run duration instances will be deleted.
* Structure is documented below.
*/
requestedRunDuration?: pulumi.Input<inputs.compute.RegionResizeRequestRequestedRunDuration>;
/**
* The number of instances to be created by this resize request. The group's target size will be increased by this number.
*/
resizeBy?: pulumi.Input<number>;
/**
* Current state of the request.
*/
state?: pulumi.Input<string>;
/**
* Status of the request.
* Structure is documented below.
*/
statuses?: pulumi.Input<pulumi.Input<inputs.compute.RegionResizeRequestStatus>[]>;
}
/**
* The set of arguments for constructing a RegionResizeRequest resource.
*/
export interface RegionResizeRequestArgs {
/**
* An optional description of this resize-request.
*/
description?: pulumi.Input<string>;
/**
* The reference of the regional instance group manager this ResizeRequest is a part of.
*
*
* - - -
*/
instanceGroupManager: pulumi.Input<string>;
/**
* The name of this resize request. The name must be 1-63 characters long, and comply with RFC1035.
*/
name?: pulumi.Input<string>;
/**
* The ID of the project in which the resource belongs.
* If it is not provided, the provider project is used.
*/
project?: pulumi.Input<string>;
/**
* The reference of the compute region scoping this request. If it is not provided, the provider region is used.
*/
region?: pulumi.Input<string>;
/**
* Requested run duration for instances that will be created by this request. At the end of the run duration instances will be deleted.
* Structure is documented below.
*/
requestedRunDuration?: pulumi.Input<inputs.compute.RegionResizeRequestRequestedRunDuration>;
/**
* The number of instances to be created by this resize request. The group's target size will be increased by this number.
*/
resizeBy: pulumi.Input<number>;
}