1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. compute
  5. InstanceGroupManager
Google Cloud Classic v7.16.0 published on Wednesday, Mar 27, 2024 by Pulumi

gcp.compute.InstanceGroupManager

Explore with Pulumi AI

gcp logo
Google Cloud Classic v7.16.0 published on Wednesday, Mar 27, 2024 by Pulumi

    The Google Compute Engine Instance Group Manager API creates and manages pools of homogeneous Compute Engine virtual machine instances from a common instance template. For more information, see the official documentation and API

    Note: Use gcp.compute.RegionInstanceGroupManager to create a regional (multi-zone) instance group manager.

    Example Usage

    With Top Level Instance Template (Google Provider)

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const autohealing = new gcp.compute.HealthCheck("autohealing", {
        name: "autohealing-health-check",
        checkIntervalSec: 5,
        timeoutSec: 5,
        healthyThreshold: 2,
        unhealthyThreshold: 10,
        httpHealthCheck: {
            requestPath: "/healthz",
            port: 8080,
        },
    });
    const appserver = new gcp.compute.InstanceGroupManager("appserver", {
        name: "appserver-igm",
        baseInstanceName: "app",
        zone: "us-central1-a",
        versions: [{
            instanceTemplate: appserverGoogleComputeInstanceTemplate.selfLinkUnique,
        }],
        allInstancesConfig: {
            metadata: {
                metadata_key: "metadata_value",
            },
            labels: {
                label_key: "label_value",
            },
        },
        targetPools: [appserverGoogleComputeTargetPool.id],
        targetSize: 2,
        namedPorts: [{
            name: "customhttp",
            port: 8888,
        }],
        autoHealingPolicies: {
            healthCheck: autohealing.id,
            initialDelaySec: 300,
        },
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    autohealing = gcp.compute.HealthCheck("autohealing",
        name="autohealing-health-check",
        check_interval_sec=5,
        timeout_sec=5,
        healthy_threshold=2,
        unhealthy_threshold=10,
        http_health_check=gcp.compute.HealthCheckHttpHealthCheckArgs(
            request_path="/healthz",
            port=8080,
        ))
    appserver = gcp.compute.InstanceGroupManager("appserver",
        name="appserver-igm",
        base_instance_name="app",
        zone="us-central1-a",
        versions=[gcp.compute.InstanceGroupManagerVersionArgs(
            instance_template=appserver_google_compute_instance_template["selfLinkUnique"],
        )],
        all_instances_config=gcp.compute.InstanceGroupManagerAllInstancesConfigArgs(
            metadata={
                "metadata_key": "metadata_value",
            },
            labels={
                "label_key": "label_value",
            },
        ),
        target_pools=[appserver_google_compute_target_pool["id"]],
        target_size=2,
        named_ports=[gcp.compute.InstanceGroupManagerNamedPortArgs(
            name="customhttp",
            port=8888,
        )],
        auto_healing_policies=gcp.compute.InstanceGroupManagerAutoHealingPoliciesArgs(
            health_check=autohealing.id,
            initial_delay_sec=300,
        ))
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		autohealing, err := compute.NewHealthCheck(ctx, "autohealing", &compute.HealthCheckArgs{
    			Name:               pulumi.String("autohealing-health-check"),
    			CheckIntervalSec:   pulumi.Int(5),
    			TimeoutSec:         pulumi.Int(5),
    			HealthyThreshold:   pulumi.Int(2),
    			UnhealthyThreshold: pulumi.Int(10),
    			HttpHealthCheck: &compute.HealthCheckHttpHealthCheckArgs{
    				RequestPath: pulumi.String("/healthz"),
    				Port:        pulumi.Int(8080),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		_, err = compute.NewInstanceGroupManager(ctx, "appserver", &compute.InstanceGroupManagerArgs{
    			Name:             pulumi.String("appserver-igm"),
    			BaseInstanceName: pulumi.String("app"),
    			Zone:             pulumi.String("us-central1-a"),
    			Versions: compute.InstanceGroupManagerVersionArray{
    				&compute.InstanceGroupManagerVersionArgs{
    					InstanceTemplate: pulumi.Any(appserverGoogleComputeInstanceTemplate.SelfLinkUnique),
    				},
    			},
    			AllInstancesConfig: &compute.InstanceGroupManagerAllInstancesConfigArgs{
    				Metadata: pulumi.StringMap{
    					"metadata_key": pulumi.String("metadata_value"),
    				},
    				Labels: pulumi.StringMap{
    					"label_key": pulumi.String("label_value"),
    				},
    			},
    			TargetPools: pulumi.StringArray{
    				appserverGoogleComputeTargetPool.Id,
    			},
    			TargetSize: pulumi.Int(2),
    			NamedPorts: compute.InstanceGroupManagerNamedPortArray{
    				&compute.InstanceGroupManagerNamedPortArgs{
    					Name: pulumi.String("customhttp"),
    					Port: pulumi.Int(8888),
    				},
    			},
    			AutoHealingPolicies: &compute.InstanceGroupManagerAutoHealingPoliciesArgs{
    				HealthCheck:     autohealing.ID(),
    				InitialDelaySec: pulumi.Int(300),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var autohealing = new Gcp.Compute.HealthCheck("autohealing", new()
        {
            Name = "autohealing-health-check",
            CheckIntervalSec = 5,
            TimeoutSec = 5,
            HealthyThreshold = 2,
            UnhealthyThreshold = 10,
            HttpHealthCheck = new Gcp.Compute.Inputs.HealthCheckHttpHealthCheckArgs
            {
                RequestPath = "/healthz",
                Port = 8080,
            },
        });
    
        var appserver = new Gcp.Compute.InstanceGroupManager("appserver", new()
        {
            Name = "appserver-igm",
            BaseInstanceName = "app",
            Zone = "us-central1-a",
            Versions = new[]
            {
                new Gcp.Compute.Inputs.InstanceGroupManagerVersionArgs
                {
                    InstanceTemplate = appserverGoogleComputeInstanceTemplate.SelfLinkUnique,
                },
            },
            AllInstancesConfig = new Gcp.Compute.Inputs.InstanceGroupManagerAllInstancesConfigArgs
            {
                Metadata = 
                {
                    { "metadata_key", "metadata_value" },
                },
                Labels = 
                {
                    { "label_key", "label_value" },
                },
            },
            TargetPools = new[]
            {
                appserverGoogleComputeTargetPool.Id,
            },
            TargetSize = 2,
            NamedPorts = new[]
            {
                new Gcp.Compute.Inputs.InstanceGroupManagerNamedPortArgs
                {
                    Name = "customhttp",
                    Port = 8888,
                },
            },
            AutoHealingPolicies = new Gcp.Compute.Inputs.InstanceGroupManagerAutoHealingPoliciesArgs
            {
                HealthCheck = autohealing.Id,
                InitialDelaySec = 300,
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.compute.HealthCheck;
    import com.pulumi.gcp.compute.HealthCheckArgs;
    import com.pulumi.gcp.compute.inputs.HealthCheckHttpHealthCheckArgs;
    import com.pulumi.gcp.compute.InstanceGroupManager;
    import com.pulumi.gcp.compute.InstanceGroupManagerArgs;
    import com.pulumi.gcp.compute.inputs.InstanceGroupManagerVersionArgs;
    import com.pulumi.gcp.compute.inputs.InstanceGroupManagerAllInstancesConfigArgs;
    import com.pulumi.gcp.compute.inputs.InstanceGroupManagerNamedPortArgs;
    import com.pulumi.gcp.compute.inputs.InstanceGroupManagerAutoHealingPoliciesArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var autohealing = new HealthCheck("autohealing", HealthCheckArgs.builder()        
                .name("autohealing-health-check")
                .checkIntervalSec(5)
                .timeoutSec(5)
                .healthyThreshold(2)
                .unhealthyThreshold(10)
                .httpHealthCheck(HealthCheckHttpHealthCheckArgs.builder()
                    .requestPath("/healthz")
                    .port("8080")
                    .build())
                .build());
    
            var appserver = new InstanceGroupManager("appserver", InstanceGroupManagerArgs.builder()        
                .name("appserver-igm")
                .baseInstanceName("app")
                .zone("us-central1-a")
                .versions(InstanceGroupManagerVersionArgs.builder()
                    .instanceTemplate(appserverGoogleComputeInstanceTemplate.selfLinkUnique())
                    .build())
                .allInstancesConfig(InstanceGroupManagerAllInstancesConfigArgs.builder()
                    .metadata(Map.of("metadata_key", "metadata_value"))
                    .labels(Map.of("label_key", "label_value"))
                    .build())
                .targetPools(appserverGoogleComputeTargetPool.id())
                .targetSize(2)
                .namedPorts(InstanceGroupManagerNamedPortArgs.builder()
                    .name("customhttp")
                    .port(8888)
                    .build())
                .autoHealingPolicies(InstanceGroupManagerAutoHealingPoliciesArgs.builder()
                    .healthCheck(autohealing.id())
                    .initialDelaySec(300)
                    .build())
                .build());
    
        }
    }
    
    resources:
      autohealing:
        type: gcp:compute:HealthCheck
        properties:
          name: autohealing-health-check
          checkIntervalSec: 5
          timeoutSec: 5
          healthyThreshold: 2
          unhealthyThreshold: 10 # 50 seconds
          httpHealthCheck:
            requestPath: /healthz
            port: '8080'
      appserver:
        type: gcp:compute:InstanceGroupManager
        properties:
          name: appserver-igm
          baseInstanceName: app
          zone: us-central1-a
          versions:
            - instanceTemplate: ${appserverGoogleComputeInstanceTemplate.selfLinkUnique}
          allInstancesConfig:
            metadata:
              metadata_key: metadata_value
            labels:
              label_key: label_value
          targetPools:
            - ${appserverGoogleComputeTargetPool.id}
          targetSize: 2
          namedPorts:
            - name: customhttp
              port: 8888
          autoHealingPolicies:
            healthCheck: ${autohealing.id}
            initialDelaySec: 300
    

    With Multiple Versions (Google-Beta Provider)

    import * as pulumi from "@pulumi/pulumi";
    import * as gcp from "@pulumi/gcp";
    
    const appserver = new gcp.compute.InstanceGroupManager("appserver", {
        name: "appserver-igm",
        baseInstanceName: "app",
        zone: "us-central1-a",
        targetSize: 5,
        versions: [
            {
                name: "appserver",
                instanceTemplate: appserverGoogleComputeInstanceTemplate.selfLinkUnique,
            },
            {
                name: "appserver-canary",
                instanceTemplate: appserver_canary.selfLinkUnique,
                targetSize: {
                    fixed: 1,
                },
            },
        ],
    });
    
    import pulumi
    import pulumi_gcp as gcp
    
    appserver = gcp.compute.InstanceGroupManager("appserver",
        name="appserver-igm",
        base_instance_name="app",
        zone="us-central1-a",
        target_size=5,
        versions=[
            gcp.compute.InstanceGroupManagerVersionArgs(
                name="appserver",
                instance_template=appserver_google_compute_instance_template["selfLinkUnique"],
            ),
            gcp.compute.InstanceGroupManagerVersionArgs(
                name="appserver-canary",
                instance_template=appserver_canary["selfLinkUnique"],
                target_size=gcp.compute.InstanceGroupManagerVersionTargetSizeArgs(
                    fixed=1,
                ),
            ),
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-gcp/sdk/v7/go/gcp/compute"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := compute.NewInstanceGroupManager(ctx, "appserver", &compute.InstanceGroupManagerArgs{
    			Name:             pulumi.String("appserver-igm"),
    			BaseInstanceName: pulumi.String("app"),
    			Zone:             pulumi.String("us-central1-a"),
    			TargetSize:       pulumi.Int(5),
    			Versions: compute.InstanceGroupManagerVersionArray{
    				&compute.InstanceGroupManagerVersionArgs{
    					Name:             pulumi.String("appserver"),
    					InstanceTemplate: pulumi.Any(appserverGoogleComputeInstanceTemplate.SelfLinkUnique),
    				},
    				&compute.InstanceGroupManagerVersionArgs{
    					Name:             pulumi.String("appserver-canary"),
    					InstanceTemplate: pulumi.Any(appserver_canary.SelfLinkUnique),
    					TargetSize: &compute.InstanceGroupManagerVersionTargetSizeArgs{
    						Fixed: pulumi.Int(1),
    					},
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Gcp = Pulumi.Gcp;
    
    return await Deployment.RunAsync(() => 
    {
        var appserver = new Gcp.Compute.InstanceGroupManager("appserver", new()
        {
            Name = "appserver-igm",
            BaseInstanceName = "app",
            Zone = "us-central1-a",
            TargetSize = 5,
            Versions = new[]
            {
                new Gcp.Compute.Inputs.InstanceGroupManagerVersionArgs
                {
                    Name = "appserver",
                    InstanceTemplate = appserverGoogleComputeInstanceTemplate.SelfLinkUnique,
                },
                new Gcp.Compute.Inputs.InstanceGroupManagerVersionArgs
                {
                    Name = "appserver-canary",
                    InstanceTemplate = appserver_canary.SelfLinkUnique,
                    TargetSize = new Gcp.Compute.Inputs.InstanceGroupManagerVersionTargetSizeArgs
                    {
                        Fixed = 1,
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.gcp.compute.InstanceGroupManager;
    import com.pulumi.gcp.compute.InstanceGroupManagerArgs;
    import com.pulumi.gcp.compute.inputs.InstanceGroupManagerVersionArgs;
    import com.pulumi.gcp.compute.inputs.InstanceGroupManagerVersionTargetSizeArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var appserver = new InstanceGroupManager("appserver", InstanceGroupManagerArgs.builder()        
                .name("appserver-igm")
                .baseInstanceName("app")
                .zone("us-central1-a")
                .targetSize(5)
                .versions(            
                    InstanceGroupManagerVersionArgs.builder()
                        .name("appserver")
                        .instanceTemplate(appserverGoogleComputeInstanceTemplate.selfLinkUnique())
                        .build(),
                    InstanceGroupManagerVersionArgs.builder()
                        .name("appserver-canary")
                        .instanceTemplate(appserver_canary.selfLinkUnique())
                        .targetSize(InstanceGroupManagerVersionTargetSizeArgs.builder()
                            .fixed(1)
                            .build())
                        .build())
                .build());
    
        }
    }
    
    resources:
      appserver:
        type: gcp:compute:InstanceGroupManager
        properties:
          name: appserver-igm
          baseInstanceName: app
          zone: us-central1-a
          targetSize: 5
          versions:
            - name: appserver
              instanceTemplate: ${appserverGoogleComputeInstanceTemplate.selfLinkUnique}
            - name: appserver-canary
              instanceTemplate: ${["appserver-canary"].selfLinkUnique}
              targetSize:
                fixed: 1
    

    Create InstanceGroupManager Resource

    new InstanceGroupManager(name: string, args: InstanceGroupManagerArgs, opts?: CustomResourceOptions);
    @overload
    def InstanceGroupManager(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             all_instances_config: Optional[InstanceGroupManagerAllInstancesConfigArgs] = None,
                             auto_healing_policies: Optional[InstanceGroupManagerAutoHealingPoliciesArgs] = None,
                             base_instance_name: Optional[str] = None,
                             description: Optional[str] = None,
                             instance_lifecycle_policy: Optional[InstanceGroupManagerInstanceLifecyclePolicyArgs] = None,
                             list_managed_instances_results: Optional[str] = None,
                             name: Optional[str] = None,
                             named_ports: Optional[Sequence[InstanceGroupManagerNamedPortArgs]] = None,
                             project: Optional[str] = None,
                             stateful_disks: Optional[Sequence[InstanceGroupManagerStatefulDiskArgs]] = None,
                             stateful_external_ips: Optional[Sequence[InstanceGroupManagerStatefulExternalIpArgs]] = None,
                             stateful_internal_ips: Optional[Sequence[InstanceGroupManagerStatefulInternalIpArgs]] = None,
                             target_pools: Optional[Sequence[str]] = None,
                             target_size: Optional[int] = None,
                             update_policy: Optional[InstanceGroupManagerUpdatePolicyArgs] = None,
                             versions: Optional[Sequence[InstanceGroupManagerVersionArgs]] = None,
                             wait_for_instances: Optional[bool] = None,
                             wait_for_instances_status: Optional[str] = None,
                             zone: Optional[str] = None)
    @overload
    def InstanceGroupManager(resource_name: str,
                             args: InstanceGroupManagerArgs,
                             opts: Optional[ResourceOptions] = None)
    func NewInstanceGroupManager(ctx *Context, name string, args InstanceGroupManagerArgs, opts ...ResourceOption) (*InstanceGroupManager, error)
    public InstanceGroupManager(string name, InstanceGroupManagerArgs args, CustomResourceOptions? opts = null)
    public InstanceGroupManager(String name, InstanceGroupManagerArgs args)
    public InstanceGroupManager(String name, InstanceGroupManagerArgs args, CustomResourceOptions options)
    
    type: gcp:compute:InstanceGroupManager
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args InstanceGroupManagerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args InstanceGroupManagerArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args InstanceGroupManagerArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args InstanceGroupManagerArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args InstanceGroupManagerArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    InstanceGroupManager Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The InstanceGroupManager resource accepts the following input properties:

    BaseInstanceName string
    The base instance name to use for instances in this group. The value must be a valid RFC1035 name. Supported characters are lowercase letters, numbers, and hyphens (-). Instances are named by appending a hyphen and a random four-character string to the base instance name.
    Versions List<InstanceGroupManagerVersion>
    Application versions managed by this instance group. Each version deals with a specific instance template, allowing canary release scenarios. Structure is documented below.
    AllInstancesConfig InstanceGroupManagerAllInstancesConfig
    Properties to set on all instances in the group. After setting allInstancesConfig on the group, you must update the group's instances to apply the configuration.
    AutoHealingPolicies InstanceGroupManagerAutoHealingPolicies
    The autohealing policies for this managed instance group. You can specify only one value. Structure is documented below. For more information, see the official documentation.
    Description string
    An optional textual description of the instance group manager.
    InstanceLifecyclePolicy InstanceGroupManagerInstanceLifecyclePolicy
    The instance lifecycle policy for this managed instance group.
    ListManagedInstancesResults string
    Pagination behavior of the listManagedInstances API method for this managed instance group. Valid values are: PAGELESS, PAGINATED. If PAGELESS (default), Pagination is disabled for the group's listManagedInstances API method. maxResults and pageToken query parameters are ignored and all instances are returned in a single response. If PAGINATED, pagination is enabled, maxResults and pageToken query parameters are respected.
    Name string
    The name of the instance group manager. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
    NamedPorts List<InstanceGroupManagerNamedPort>
    The named port configuration. See the section below for details on configuration.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    StatefulDisks List<InstanceGroupManagerStatefulDisk>
    Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the official documentation.
    StatefulExternalIps List<InstanceGroupManagerStatefulExternalIp>
    External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    StatefulInternalIps List<InstanceGroupManagerStatefulInternalIp>
    Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    TargetPools List<string>
    The full URL of all target pools to which new instances in the group are added. Updating the target pools attribute does not affect existing instances.
    TargetSize int
    The target number of running instances for this managed instance group. This value should always be explicitly set unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
    UpdatePolicy InstanceGroupManagerUpdatePolicy
    The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API


    WaitForInstances bool
    Whether to wait for all instances to be created/updated before returning. Note that if this is set to true and the operation does not succeed, this provider will continue trying until it times out.
    WaitForInstancesStatus string
    When used with wait_for_instances it specifies the status to wait for. When STABLE is specified this resource will wait until the instances are stable before returning. When UPDATED is set, it will wait for the version target to be reached and any per instance configs to be effective as well as all instances to be stable before returning. The possible values are STABLE and UPDATED
    Zone string
    The zone that instances in this group should be created in.


    BaseInstanceName string
    The base instance name to use for instances in this group. The value must be a valid RFC1035 name. Supported characters are lowercase letters, numbers, and hyphens (-). Instances are named by appending a hyphen and a random four-character string to the base instance name.
    Versions []InstanceGroupManagerVersionArgs
    Application versions managed by this instance group. Each version deals with a specific instance template, allowing canary release scenarios. Structure is documented below.
    AllInstancesConfig InstanceGroupManagerAllInstancesConfigArgs
    Properties to set on all instances in the group. After setting allInstancesConfig on the group, you must update the group's instances to apply the configuration.
    AutoHealingPolicies InstanceGroupManagerAutoHealingPoliciesArgs
    The autohealing policies for this managed instance group. You can specify only one value. Structure is documented below. For more information, see the official documentation.
    Description string
    An optional textual description of the instance group manager.
    InstanceLifecyclePolicy InstanceGroupManagerInstanceLifecyclePolicyArgs
    The instance lifecycle policy for this managed instance group.
    ListManagedInstancesResults string
    Pagination behavior of the listManagedInstances API method for this managed instance group. Valid values are: PAGELESS, PAGINATED. If PAGELESS (default), Pagination is disabled for the group's listManagedInstances API method. maxResults and pageToken query parameters are ignored and all instances are returned in a single response. If PAGINATED, pagination is enabled, maxResults and pageToken query parameters are respected.
    Name string
    The name of the instance group manager. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
    NamedPorts []InstanceGroupManagerNamedPortArgs
    The named port configuration. See the section below for details on configuration.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    StatefulDisks []InstanceGroupManagerStatefulDiskArgs
    Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the official documentation.
    StatefulExternalIps []InstanceGroupManagerStatefulExternalIpArgs
    External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    StatefulInternalIps []InstanceGroupManagerStatefulInternalIpArgs
    Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    TargetPools []string
    The full URL of all target pools to which new instances in the group are added. Updating the target pools attribute does not affect existing instances.
    TargetSize int
    The target number of running instances for this managed instance group. This value should always be explicitly set unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
    UpdatePolicy InstanceGroupManagerUpdatePolicyArgs
    The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API


    WaitForInstances bool
    Whether to wait for all instances to be created/updated before returning. Note that if this is set to true and the operation does not succeed, this provider will continue trying until it times out.
    WaitForInstancesStatus string
    When used with wait_for_instances it specifies the status to wait for. When STABLE is specified this resource will wait until the instances are stable before returning. When UPDATED is set, it will wait for the version target to be reached and any per instance configs to be effective as well as all instances to be stable before returning. The possible values are STABLE and UPDATED
    Zone string
    The zone that instances in this group should be created in.


    baseInstanceName String
    The base instance name to use for instances in this group. The value must be a valid RFC1035 name. Supported characters are lowercase letters, numbers, and hyphens (-). Instances are named by appending a hyphen and a random four-character string to the base instance name.
    versions List<InstanceGroupManagerVersion>
    Application versions managed by this instance group. Each version deals with a specific instance template, allowing canary release scenarios. Structure is documented below.
    allInstancesConfig InstanceGroupManagerAllInstancesConfig
    Properties to set on all instances in the group. After setting allInstancesConfig on the group, you must update the group's instances to apply the configuration.
    autoHealingPolicies InstanceGroupManagerAutoHealingPolicies
    The autohealing policies for this managed instance group. You can specify only one value. Structure is documented below. For more information, see the official documentation.
    description String
    An optional textual description of the instance group manager.
    instanceLifecyclePolicy InstanceGroupManagerInstanceLifecyclePolicy
    The instance lifecycle policy for this managed instance group.
    listManagedInstancesResults String
    Pagination behavior of the listManagedInstances API method for this managed instance group. Valid values are: PAGELESS, PAGINATED. If PAGELESS (default), Pagination is disabled for the group's listManagedInstances API method. maxResults and pageToken query parameters are ignored and all instances are returned in a single response. If PAGINATED, pagination is enabled, maxResults and pageToken query parameters are respected.
    name String
    The name of the instance group manager. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
    namedPorts List<InstanceGroupManagerNamedPort>
    The named port configuration. See the section below for details on configuration.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    statefulDisks List<InstanceGroupManagerStatefulDisk>
    Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the official documentation.
    statefulExternalIps List<InstanceGroupManagerStatefulExternalIp>
    External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    statefulInternalIps List<InstanceGroupManagerStatefulInternalIp>
    Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    targetPools List<String>
    The full URL of all target pools to which new instances in the group are added. Updating the target pools attribute does not affect existing instances.
    targetSize Integer
    The target number of running instances for this managed instance group. This value should always be explicitly set unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
    updatePolicy InstanceGroupManagerUpdatePolicy
    The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API


    waitForInstances Boolean
    Whether to wait for all instances to be created/updated before returning. Note that if this is set to true and the operation does not succeed, this provider will continue trying until it times out.
    waitForInstancesStatus String
    When used with wait_for_instances it specifies the status to wait for. When STABLE is specified this resource will wait until the instances are stable before returning. When UPDATED is set, it will wait for the version target to be reached and any per instance configs to be effective as well as all instances to be stable before returning. The possible values are STABLE and UPDATED
    zone String
    The zone that instances in this group should be created in.


    baseInstanceName string
    The base instance name to use for instances in this group. The value must be a valid RFC1035 name. Supported characters are lowercase letters, numbers, and hyphens (-). Instances are named by appending a hyphen and a random four-character string to the base instance name.
    versions InstanceGroupManagerVersion[]
    Application versions managed by this instance group. Each version deals with a specific instance template, allowing canary release scenarios. Structure is documented below.
    allInstancesConfig InstanceGroupManagerAllInstancesConfig
    Properties to set on all instances in the group. After setting allInstancesConfig on the group, you must update the group's instances to apply the configuration.
    autoHealingPolicies InstanceGroupManagerAutoHealingPolicies
    The autohealing policies for this managed instance group. You can specify only one value. Structure is documented below. For more information, see the official documentation.
    description string
    An optional textual description of the instance group manager.
    instanceLifecyclePolicy InstanceGroupManagerInstanceLifecyclePolicy
    The instance lifecycle policy for this managed instance group.
    listManagedInstancesResults string
    Pagination behavior of the listManagedInstances API method for this managed instance group. Valid values are: PAGELESS, PAGINATED. If PAGELESS (default), Pagination is disabled for the group's listManagedInstances API method. maxResults and pageToken query parameters are ignored and all instances are returned in a single response. If PAGINATED, pagination is enabled, maxResults and pageToken query parameters are respected.
    name string
    The name of the instance group manager. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
    namedPorts InstanceGroupManagerNamedPort[]
    The named port configuration. See the section below for details on configuration.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    statefulDisks InstanceGroupManagerStatefulDisk[]
    Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the official documentation.
    statefulExternalIps InstanceGroupManagerStatefulExternalIp[]
    External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    statefulInternalIps InstanceGroupManagerStatefulInternalIp[]
    Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    targetPools string[]
    The full URL of all target pools to which new instances in the group are added. Updating the target pools attribute does not affect existing instances.
    targetSize number
    The target number of running instances for this managed instance group. This value should always be explicitly set unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
    updatePolicy InstanceGroupManagerUpdatePolicy
    The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API


    waitForInstances boolean
    Whether to wait for all instances to be created/updated before returning. Note that if this is set to true and the operation does not succeed, this provider will continue trying until it times out.
    waitForInstancesStatus string
    When used with wait_for_instances it specifies the status to wait for. When STABLE is specified this resource will wait until the instances are stable before returning. When UPDATED is set, it will wait for the version target to be reached and any per instance configs to be effective as well as all instances to be stable before returning. The possible values are STABLE and UPDATED
    zone string
    The zone that instances in this group should be created in.


    base_instance_name str
    The base instance name to use for instances in this group. The value must be a valid RFC1035 name. Supported characters are lowercase letters, numbers, and hyphens (-). Instances are named by appending a hyphen and a random four-character string to the base instance name.
    versions Sequence[InstanceGroupManagerVersionArgs]
    Application versions managed by this instance group. Each version deals with a specific instance template, allowing canary release scenarios. Structure is documented below.
    all_instances_config InstanceGroupManagerAllInstancesConfigArgs
    Properties to set on all instances in the group. After setting allInstancesConfig on the group, you must update the group's instances to apply the configuration.
    auto_healing_policies InstanceGroupManagerAutoHealingPoliciesArgs
    The autohealing policies for this managed instance group. You can specify only one value. Structure is documented below. For more information, see the official documentation.
    description str
    An optional textual description of the instance group manager.
    instance_lifecycle_policy InstanceGroupManagerInstanceLifecyclePolicyArgs
    The instance lifecycle policy for this managed instance group.
    list_managed_instances_results str
    Pagination behavior of the listManagedInstances API method for this managed instance group. Valid values are: PAGELESS, PAGINATED. If PAGELESS (default), Pagination is disabled for the group's listManagedInstances API method. maxResults and pageToken query parameters are ignored and all instances are returned in a single response. If PAGINATED, pagination is enabled, maxResults and pageToken query parameters are respected.
    name str
    The name of the instance group manager. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
    named_ports Sequence[InstanceGroupManagerNamedPortArgs]
    The named port configuration. See the section below for details on configuration.
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    stateful_disks Sequence[InstanceGroupManagerStatefulDiskArgs]
    Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the official documentation.
    stateful_external_ips Sequence[InstanceGroupManagerStatefulExternalIpArgs]
    External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    stateful_internal_ips Sequence[InstanceGroupManagerStatefulInternalIpArgs]
    Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    target_pools Sequence[str]
    The full URL of all target pools to which new instances in the group are added. Updating the target pools attribute does not affect existing instances.
    target_size int
    The target number of running instances for this managed instance group. This value should always be explicitly set unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
    update_policy InstanceGroupManagerUpdatePolicyArgs
    The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API


    wait_for_instances bool
    Whether to wait for all instances to be created/updated before returning. Note that if this is set to true and the operation does not succeed, this provider will continue trying until it times out.
    wait_for_instances_status str
    When used with wait_for_instances it specifies the status to wait for. When STABLE is specified this resource will wait until the instances are stable before returning. When UPDATED is set, it will wait for the version target to be reached and any per instance configs to be effective as well as all instances to be stable before returning. The possible values are STABLE and UPDATED
    zone str
    The zone that instances in this group should be created in.


    baseInstanceName String
    The base instance name to use for instances in this group. The value must be a valid RFC1035 name. Supported characters are lowercase letters, numbers, and hyphens (-). Instances are named by appending a hyphen and a random four-character string to the base instance name.
    versions List<Property Map>
    Application versions managed by this instance group. Each version deals with a specific instance template, allowing canary release scenarios. Structure is documented below.
    allInstancesConfig Property Map
    Properties to set on all instances in the group. After setting allInstancesConfig on the group, you must update the group's instances to apply the configuration.
    autoHealingPolicies Property Map
    The autohealing policies for this managed instance group. You can specify only one value. Structure is documented below. For more information, see the official documentation.
    description String
    An optional textual description of the instance group manager.
    instanceLifecyclePolicy Property Map
    The instance lifecycle policy for this managed instance group.
    listManagedInstancesResults String
    Pagination behavior of the listManagedInstances API method for this managed instance group. Valid values are: PAGELESS, PAGINATED. If PAGELESS (default), Pagination is disabled for the group's listManagedInstances API method. maxResults and pageToken query parameters are ignored and all instances are returned in a single response. If PAGINATED, pagination is enabled, maxResults and pageToken query parameters are respected.
    name String
    The name of the instance group manager. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
    namedPorts List<Property Map>
    The named port configuration. See the section below for details on configuration.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    statefulDisks List<Property Map>
    Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the official documentation.
    statefulExternalIps List<Property Map>
    External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    statefulInternalIps List<Property Map>
    Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    targetPools List<String>
    The full URL of all target pools to which new instances in the group are added. Updating the target pools attribute does not affect existing instances.
    targetSize Number
    The target number of running instances for this managed instance group. This value should always be explicitly set unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
    updatePolicy Property Map
    The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API


    waitForInstances Boolean
    Whether to wait for all instances to be created/updated before returning. Note that if this is set to true and the operation does not succeed, this provider will continue trying until it times out.
    waitForInstancesStatus String
    When used with wait_for_instances it specifies the status to wait for. When STABLE is specified this resource will wait until the instances are stable before returning. When UPDATED is set, it will wait for the version target to be reached and any per instance configs to be effective as well as all instances to be stable before returning. The possible values are STABLE and UPDATED
    zone String
    The zone that instances in this group should be created in.


    Outputs

    All input properties are implicitly available as output properties. Additionally, the InstanceGroupManager resource produces the following output properties:

    CreationTimestamp string
    Creation timestamp in RFC3339 text format.
    Fingerprint string
    The fingerprint of the instance group manager.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceGroup string
    The full URL of the instance group created by the manager.
    Operation string
    SelfLink string
    The URL of the created resource.
    Statuses List<InstanceGroupManagerStatus>
    The status of this managed instance group.
    CreationTimestamp string
    Creation timestamp in RFC3339 text format.
    Fingerprint string
    The fingerprint of the instance group manager.
    Id string
    The provider-assigned unique ID for this managed resource.
    InstanceGroup string
    The full URL of the instance group created by the manager.
    Operation string
    SelfLink string
    The URL of the created resource.
    Statuses []InstanceGroupManagerStatus
    The status of this managed instance group.
    creationTimestamp String
    Creation timestamp in RFC3339 text format.
    fingerprint String
    The fingerprint of the instance group manager.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceGroup String
    The full URL of the instance group created by the manager.
    operation String
    selfLink String
    The URL of the created resource.
    statuses List<InstanceGroupManagerStatus>
    The status of this managed instance group.
    creationTimestamp string
    Creation timestamp in RFC3339 text format.
    fingerprint string
    The fingerprint of the instance group manager.
    id string
    The provider-assigned unique ID for this managed resource.
    instanceGroup string
    The full URL of the instance group created by the manager.
    operation string
    selfLink string
    The URL of the created resource.
    statuses InstanceGroupManagerStatus[]
    The status of this managed instance group.
    creation_timestamp str
    Creation timestamp in RFC3339 text format.
    fingerprint str
    The fingerprint of the instance group manager.
    id str
    The provider-assigned unique ID for this managed resource.
    instance_group str
    The full URL of the instance group created by the manager.
    operation str
    self_link str
    The URL of the created resource.
    statuses Sequence[InstanceGroupManagerStatus]
    The status of this managed instance group.
    creationTimestamp String
    Creation timestamp in RFC3339 text format.
    fingerprint String
    The fingerprint of the instance group manager.
    id String
    The provider-assigned unique ID for this managed resource.
    instanceGroup String
    The full URL of the instance group created by the manager.
    operation String
    selfLink String
    The URL of the created resource.
    statuses List<Property Map>
    The status of this managed instance group.

    Look up Existing InstanceGroupManager Resource

    Get an existing InstanceGroupManager resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: InstanceGroupManagerState, opts?: CustomResourceOptions): InstanceGroupManager
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            all_instances_config: Optional[InstanceGroupManagerAllInstancesConfigArgs] = None,
            auto_healing_policies: Optional[InstanceGroupManagerAutoHealingPoliciesArgs] = None,
            base_instance_name: Optional[str] = None,
            creation_timestamp: Optional[str] = None,
            description: Optional[str] = None,
            fingerprint: Optional[str] = None,
            instance_group: Optional[str] = None,
            instance_lifecycle_policy: Optional[InstanceGroupManagerInstanceLifecyclePolicyArgs] = None,
            list_managed_instances_results: Optional[str] = None,
            name: Optional[str] = None,
            named_ports: Optional[Sequence[InstanceGroupManagerNamedPortArgs]] = None,
            operation: Optional[str] = None,
            project: Optional[str] = None,
            self_link: Optional[str] = None,
            stateful_disks: Optional[Sequence[InstanceGroupManagerStatefulDiskArgs]] = None,
            stateful_external_ips: Optional[Sequence[InstanceGroupManagerStatefulExternalIpArgs]] = None,
            stateful_internal_ips: Optional[Sequence[InstanceGroupManagerStatefulInternalIpArgs]] = None,
            statuses: Optional[Sequence[InstanceGroupManagerStatusArgs]] = None,
            target_pools: Optional[Sequence[str]] = None,
            target_size: Optional[int] = None,
            update_policy: Optional[InstanceGroupManagerUpdatePolicyArgs] = None,
            versions: Optional[Sequence[InstanceGroupManagerVersionArgs]] = None,
            wait_for_instances: Optional[bool] = None,
            wait_for_instances_status: Optional[str] = None,
            zone: Optional[str] = None) -> InstanceGroupManager
    func GetInstanceGroupManager(ctx *Context, name string, id IDInput, state *InstanceGroupManagerState, opts ...ResourceOption) (*InstanceGroupManager, error)
    public static InstanceGroupManager Get(string name, Input<string> id, InstanceGroupManagerState? state, CustomResourceOptions? opts = null)
    public static InstanceGroupManager get(String name, Output<String> id, InstanceGroupManagerState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AllInstancesConfig InstanceGroupManagerAllInstancesConfig
    Properties to set on all instances in the group. After setting allInstancesConfig on the group, you must update the group's instances to apply the configuration.
    AutoHealingPolicies InstanceGroupManagerAutoHealingPolicies
    The autohealing policies for this managed instance group. You can specify only one value. Structure is documented below. For more information, see the official documentation.
    BaseInstanceName string
    The base instance name to use for instances in this group. The value must be a valid RFC1035 name. Supported characters are lowercase letters, numbers, and hyphens (-). Instances are named by appending a hyphen and a random four-character string to the base instance name.
    CreationTimestamp string
    Creation timestamp in RFC3339 text format.
    Description string
    An optional textual description of the instance group manager.
    Fingerprint string
    The fingerprint of the instance group manager.
    InstanceGroup string
    The full URL of the instance group created by the manager.
    InstanceLifecyclePolicy InstanceGroupManagerInstanceLifecyclePolicy
    The instance lifecycle policy for this managed instance group.
    ListManagedInstancesResults string
    Pagination behavior of the listManagedInstances API method for this managed instance group. Valid values are: PAGELESS, PAGINATED. If PAGELESS (default), Pagination is disabled for the group's listManagedInstances API method. maxResults and pageToken query parameters are ignored and all instances are returned in a single response. If PAGINATED, pagination is enabled, maxResults and pageToken query parameters are respected.
    Name string
    The name of the instance group manager. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
    NamedPorts List<InstanceGroupManagerNamedPort>
    The named port configuration. See the section below for details on configuration.
    Operation string
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    SelfLink string
    The URL of the created resource.
    StatefulDisks List<InstanceGroupManagerStatefulDisk>
    Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the official documentation.
    StatefulExternalIps List<InstanceGroupManagerStatefulExternalIp>
    External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    StatefulInternalIps List<InstanceGroupManagerStatefulInternalIp>
    Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    Statuses List<InstanceGroupManagerStatus>
    The status of this managed instance group.
    TargetPools List<string>
    The full URL of all target pools to which new instances in the group are added. Updating the target pools attribute does not affect existing instances.
    TargetSize int
    The target number of running instances for this managed instance group. This value should always be explicitly set unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
    UpdatePolicy InstanceGroupManagerUpdatePolicy
    The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API


    Versions List<InstanceGroupManagerVersion>
    Application versions managed by this instance group. Each version deals with a specific instance template, allowing canary release scenarios. Structure is documented below.
    WaitForInstances bool
    Whether to wait for all instances to be created/updated before returning. Note that if this is set to true and the operation does not succeed, this provider will continue trying until it times out.
    WaitForInstancesStatus string
    When used with wait_for_instances it specifies the status to wait for. When STABLE is specified this resource will wait until the instances are stable before returning. When UPDATED is set, it will wait for the version target to be reached and any per instance configs to be effective as well as all instances to be stable before returning. The possible values are STABLE and UPDATED
    Zone string
    The zone that instances in this group should be created in.


    AllInstancesConfig InstanceGroupManagerAllInstancesConfigArgs
    Properties to set on all instances in the group. After setting allInstancesConfig on the group, you must update the group's instances to apply the configuration.
    AutoHealingPolicies InstanceGroupManagerAutoHealingPoliciesArgs
    The autohealing policies for this managed instance group. You can specify only one value. Structure is documented below. For more information, see the official documentation.
    BaseInstanceName string
    The base instance name to use for instances in this group. The value must be a valid RFC1035 name. Supported characters are lowercase letters, numbers, and hyphens (-). Instances are named by appending a hyphen and a random four-character string to the base instance name.
    CreationTimestamp string
    Creation timestamp in RFC3339 text format.
    Description string
    An optional textual description of the instance group manager.
    Fingerprint string
    The fingerprint of the instance group manager.
    InstanceGroup string
    The full URL of the instance group created by the manager.
    InstanceLifecyclePolicy InstanceGroupManagerInstanceLifecyclePolicyArgs
    The instance lifecycle policy for this managed instance group.
    ListManagedInstancesResults string
    Pagination behavior of the listManagedInstances API method for this managed instance group. Valid values are: PAGELESS, PAGINATED. If PAGELESS (default), Pagination is disabled for the group's listManagedInstances API method. maxResults and pageToken query parameters are ignored and all instances are returned in a single response. If PAGINATED, pagination is enabled, maxResults and pageToken query parameters are respected.
    Name string
    The name of the instance group manager. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
    NamedPorts []InstanceGroupManagerNamedPortArgs
    The named port configuration. See the section below for details on configuration.
    Operation string
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    SelfLink string
    The URL of the created resource.
    StatefulDisks []InstanceGroupManagerStatefulDiskArgs
    Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the official documentation.
    StatefulExternalIps []InstanceGroupManagerStatefulExternalIpArgs
    External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    StatefulInternalIps []InstanceGroupManagerStatefulInternalIpArgs
    Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    Statuses []InstanceGroupManagerStatusArgs
    The status of this managed instance group.
    TargetPools []string
    The full URL of all target pools to which new instances in the group are added. Updating the target pools attribute does not affect existing instances.
    TargetSize int
    The target number of running instances for this managed instance group. This value should always be explicitly set unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
    UpdatePolicy InstanceGroupManagerUpdatePolicyArgs
    The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API


    Versions []InstanceGroupManagerVersionArgs
    Application versions managed by this instance group. Each version deals with a specific instance template, allowing canary release scenarios. Structure is documented below.
    WaitForInstances bool
    Whether to wait for all instances to be created/updated before returning. Note that if this is set to true and the operation does not succeed, this provider will continue trying until it times out.
    WaitForInstancesStatus string
    When used with wait_for_instances it specifies the status to wait for. When STABLE is specified this resource will wait until the instances are stable before returning. When UPDATED is set, it will wait for the version target to be reached and any per instance configs to be effective as well as all instances to be stable before returning. The possible values are STABLE and UPDATED
    Zone string
    The zone that instances in this group should be created in.


    allInstancesConfig InstanceGroupManagerAllInstancesConfig
    Properties to set on all instances in the group. After setting allInstancesConfig on the group, you must update the group's instances to apply the configuration.
    autoHealingPolicies InstanceGroupManagerAutoHealingPolicies
    The autohealing policies for this managed instance group. You can specify only one value. Structure is documented below. For more information, see the official documentation.
    baseInstanceName String
    The base instance name to use for instances in this group. The value must be a valid RFC1035 name. Supported characters are lowercase letters, numbers, and hyphens (-). Instances are named by appending a hyphen and a random four-character string to the base instance name.
    creationTimestamp String
    Creation timestamp in RFC3339 text format.
    description String
    An optional textual description of the instance group manager.
    fingerprint String
    The fingerprint of the instance group manager.
    instanceGroup String
    The full URL of the instance group created by the manager.
    instanceLifecyclePolicy InstanceGroupManagerInstanceLifecyclePolicy
    The instance lifecycle policy for this managed instance group.
    listManagedInstancesResults String
    Pagination behavior of the listManagedInstances API method for this managed instance group. Valid values are: PAGELESS, PAGINATED. If PAGELESS (default), Pagination is disabled for the group's listManagedInstances API method. maxResults and pageToken query parameters are ignored and all instances are returned in a single response. If PAGINATED, pagination is enabled, maxResults and pageToken query parameters are respected.
    name String
    The name of the instance group manager. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
    namedPorts List<InstanceGroupManagerNamedPort>
    The named port configuration. See the section below for details on configuration.
    operation String
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    selfLink String
    The URL of the created resource.
    statefulDisks List<InstanceGroupManagerStatefulDisk>
    Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the official documentation.
    statefulExternalIps List<InstanceGroupManagerStatefulExternalIp>
    External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    statefulInternalIps List<InstanceGroupManagerStatefulInternalIp>
    Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    statuses List<InstanceGroupManagerStatus>
    The status of this managed instance group.
    targetPools List<String>
    The full URL of all target pools to which new instances in the group are added. Updating the target pools attribute does not affect existing instances.
    targetSize Integer
    The target number of running instances for this managed instance group. This value should always be explicitly set unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
    updatePolicy InstanceGroupManagerUpdatePolicy
    The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API


    versions List<InstanceGroupManagerVersion>
    Application versions managed by this instance group. Each version deals with a specific instance template, allowing canary release scenarios. Structure is documented below.
    waitForInstances Boolean
    Whether to wait for all instances to be created/updated before returning. Note that if this is set to true and the operation does not succeed, this provider will continue trying until it times out.
    waitForInstancesStatus String
    When used with wait_for_instances it specifies the status to wait for. When STABLE is specified this resource will wait until the instances are stable before returning. When UPDATED is set, it will wait for the version target to be reached and any per instance configs to be effective as well as all instances to be stable before returning. The possible values are STABLE and UPDATED
    zone String
    The zone that instances in this group should be created in.


    allInstancesConfig InstanceGroupManagerAllInstancesConfig
    Properties to set on all instances in the group. After setting allInstancesConfig on the group, you must update the group's instances to apply the configuration.
    autoHealingPolicies InstanceGroupManagerAutoHealingPolicies
    The autohealing policies for this managed instance group. You can specify only one value. Structure is documented below. For more information, see the official documentation.
    baseInstanceName string
    The base instance name to use for instances in this group. The value must be a valid RFC1035 name. Supported characters are lowercase letters, numbers, and hyphens (-). Instances are named by appending a hyphen and a random four-character string to the base instance name.
    creationTimestamp string
    Creation timestamp in RFC3339 text format.
    description string
    An optional textual description of the instance group manager.
    fingerprint string
    The fingerprint of the instance group manager.
    instanceGroup string
    The full URL of the instance group created by the manager.
    instanceLifecyclePolicy InstanceGroupManagerInstanceLifecyclePolicy
    The instance lifecycle policy for this managed instance group.
    listManagedInstancesResults string
    Pagination behavior of the listManagedInstances API method for this managed instance group. Valid values are: PAGELESS, PAGINATED. If PAGELESS (default), Pagination is disabled for the group's listManagedInstances API method. maxResults and pageToken query parameters are ignored and all instances are returned in a single response. If PAGINATED, pagination is enabled, maxResults and pageToken query parameters are respected.
    name string
    The name of the instance group manager. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
    namedPorts InstanceGroupManagerNamedPort[]
    The named port configuration. See the section below for details on configuration.
    operation string
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    selfLink string
    The URL of the created resource.
    statefulDisks InstanceGroupManagerStatefulDisk[]
    Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the official documentation.
    statefulExternalIps InstanceGroupManagerStatefulExternalIp[]
    External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    statefulInternalIps InstanceGroupManagerStatefulInternalIp[]
    Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    statuses InstanceGroupManagerStatus[]
    The status of this managed instance group.
    targetPools string[]
    The full URL of all target pools to which new instances in the group are added. Updating the target pools attribute does not affect existing instances.
    targetSize number
    The target number of running instances for this managed instance group. This value should always be explicitly set unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
    updatePolicy InstanceGroupManagerUpdatePolicy
    The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API


    versions InstanceGroupManagerVersion[]
    Application versions managed by this instance group. Each version deals with a specific instance template, allowing canary release scenarios. Structure is documented below.
    waitForInstances boolean
    Whether to wait for all instances to be created/updated before returning. Note that if this is set to true and the operation does not succeed, this provider will continue trying until it times out.
    waitForInstancesStatus string
    When used with wait_for_instances it specifies the status to wait for. When STABLE is specified this resource will wait until the instances are stable before returning. When UPDATED is set, it will wait for the version target to be reached and any per instance configs to be effective as well as all instances to be stable before returning. The possible values are STABLE and UPDATED
    zone string
    The zone that instances in this group should be created in.


    all_instances_config InstanceGroupManagerAllInstancesConfigArgs
    Properties to set on all instances in the group. After setting allInstancesConfig on the group, you must update the group's instances to apply the configuration.
    auto_healing_policies InstanceGroupManagerAutoHealingPoliciesArgs
    The autohealing policies for this managed instance group. You can specify only one value. Structure is documented below. For more information, see the official documentation.
    base_instance_name str
    The base instance name to use for instances in this group. The value must be a valid RFC1035 name. Supported characters are lowercase letters, numbers, and hyphens (-). Instances are named by appending a hyphen and a random four-character string to the base instance name.
    creation_timestamp str
    Creation timestamp in RFC3339 text format.
    description str
    An optional textual description of the instance group manager.
    fingerprint str
    The fingerprint of the instance group manager.
    instance_group str
    The full URL of the instance group created by the manager.
    instance_lifecycle_policy InstanceGroupManagerInstanceLifecyclePolicyArgs
    The instance lifecycle policy for this managed instance group.
    list_managed_instances_results str
    Pagination behavior of the listManagedInstances API method for this managed instance group. Valid values are: PAGELESS, PAGINATED. If PAGELESS (default), Pagination is disabled for the group's listManagedInstances API method. maxResults and pageToken query parameters are ignored and all instances are returned in a single response. If PAGINATED, pagination is enabled, maxResults and pageToken query parameters are respected.
    name str
    The name of the instance group manager. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
    named_ports Sequence[InstanceGroupManagerNamedPortArgs]
    The named port configuration. See the section below for details on configuration.
    operation str
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    self_link str
    The URL of the created resource.
    stateful_disks Sequence[InstanceGroupManagerStatefulDiskArgs]
    Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the official documentation.
    stateful_external_ips Sequence[InstanceGroupManagerStatefulExternalIpArgs]
    External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    stateful_internal_ips Sequence[InstanceGroupManagerStatefulInternalIpArgs]
    Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    statuses Sequence[InstanceGroupManagerStatusArgs]
    The status of this managed instance group.
    target_pools Sequence[str]
    The full URL of all target pools to which new instances in the group are added. Updating the target pools attribute does not affect existing instances.
    target_size int
    The target number of running instances for this managed instance group. This value should always be explicitly set unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
    update_policy InstanceGroupManagerUpdatePolicyArgs
    The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API


    versions Sequence[InstanceGroupManagerVersionArgs]
    Application versions managed by this instance group. Each version deals with a specific instance template, allowing canary release scenarios. Structure is documented below.
    wait_for_instances bool
    Whether to wait for all instances to be created/updated before returning. Note that if this is set to true and the operation does not succeed, this provider will continue trying until it times out.
    wait_for_instances_status str
    When used with wait_for_instances it specifies the status to wait for. When STABLE is specified this resource will wait until the instances are stable before returning. When UPDATED is set, it will wait for the version target to be reached and any per instance configs to be effective as well as all instances to be stable before returning. The possible values are STABLE and UPDATED
    zone str
    The zone that instances in this group should be created in.


    allInstancesConfig Property Map
    Properties to set on all instances in the group. After setting allInstancesConfig on the group, you must update the group's instances to apply the configuration.
    autoHealingPolicies Property Map
    The autohealing policies for this managed instance group. You can specify only one value. Structure is documented below. For more information, see the official documentation.
    baseInstanceName String
    The base instance name to use for instances in this group. The value must be a valid RFC1035 name. Supported characters are lowercase letters, numbers, and hyphens (-). Instances are named by appending a hyphen and a random four-character string to the base instance name.
    creationTimestamp String
    Creation timestamp in RFC3339 text format.
    description String
    An optional textual description of the instance group manager.
    fingerprint String
    The fingerprint of the instance group manager.
    instanceGroup String
    The full URL of the instance group created by the manager.
    instanceLifecyclePolicy Property Map
    The instance lifecycle policy for this managed instance group.
    listManagedInstancesResults String
    Pagination behavior of the listManagedInstances API method for this managed instance group. Valid values are: PAGELESS, PAGINATED. If PAGELESS (default), Pagination is disabled for the group's listManagedInstances API method. maxResults and pageToken query parameters are ignored and all instances are returned in a single response. If PAGINATED, pagination is enabled, maxResults and pageToken query parameters are respected.
    name String
    The name of the instance group manager. Must be 1-63 characters long and comply with RFC1035. Supported characters include lowercase letters, numbers, and hyphens.
    namedPorts List<Property Map>
    The named port configuration. See the section below for details on configuration.
    operation String
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    selfLink String
    The URL of the created resource.
    statefulDisks List<Property Map>
    Disks created on the instances that will be preserved on instance delete, update, etc. Structure is documented below. For more information see the official documentation.
    statefulExternalIps List<Property Map>
    External network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    statefulInternalIps List<Property Map>
    Internal network IPs assigned to the instances that will be preserved on instance delete, update, etc. This map is keyed with the network interface name. Structure is documented below.
    statuses List<Property Map>
    The status of this managed instance group.
    targetPools List<String>
    The full URL of all target pools to which new instances in the group are added. Updating the target pools attribute does not affect existing instances.
    targetSize Number
    The target number of running instances for this managed instance group. This value should always be explicitly set unless this resource is attached to an autoscaler, in which case it should never be set. Defaults to 0.
    updatePolicy Property Map
    The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API


    versions List<Property Map>
    Application versions managed by this instance group. Each version deals with a specific instance template, allowing canary release scenarios. Structure is documented below.
    waitForInstances Boolean
    Whether to wait for all instances to be created/updated before returning. Note that if this is set to true and the operation does not succeed, this provider will continue trying until it times out.
    waitForInstancesStatus String
    When used with wait_for_instances it specifies the status to wait for. When STABLE is specified this resource will wait until the instances are stable before returning. When UPDATED is set, it will wait for the version target to be reached and any per instance configs to be effective as well as all instances to be stable before returning. The possible values are STABLE and UPDATED
    zone String
    The zone that instances in this group should be created in.


    Supporting Types

    InstanceGroupManagerAllInstancesConfig, InstanceGroupManagerAllInstancesConfigArgs

    Labels Dictionary<string, string>
    , The label key-value pairs that you want to patch onto the instance.


    Metadata Dictionary<string, string>
    , The metadata key-value pairs that you want to patch onto the instance. For more information, see Project and instance metadata.
    Labels map[string]string
    , The label key-value pairs that you want to patch onto the instance.


    Metadata map[string]string
    , The metadata key-value pairs that you want to patch onto the instance. For more information, see Project and instance metadata.
    labels Map<String,String>
    , The label key-value pairs that you want to patch onto the instance.


    metadata Map<String,String>
    , The metadata key-value pairs that you want to patch onto the instance. For more information, see Project and instance metadata.
    labels {[key: string]: string}
    , The label key-value pairs that you want to patch onto the instance.


    metadata {[key: string]: string}
    , The metadata key-value pairs that you want to patch onto the instance. For more information, see Project and instance metadata.
    labels Mapping[str, str]
    , The label key-value pairs that you want to patch onto the instance.


    metadata Mapping[str, str]
    , The metadata key-value pairs that you want to patch onto the instance. For more information, see Project and instance metadata.
    labels Map<String>
    , The label key-value pairs that you want to patch onto the instance.


    metadata Map<String>
    , The metadata key-value pairs that you want to patch onto the instance. For more information, see Project and instance metadata.

    InstanceGroupManagerAutoHealingPolicies, InstanceGroupManagerAutoHealingPoliciesArgs

    HealthCheck string
    The health check resource that signals autohealing.
    InitialDelaySec int
    The number of seconds that the managed instance group waits before it applies autohealing policies to new instances or recently recreated instances. Between 0 and 3600.
    HealthCheck string
    The health check resource that signals autohealing.
    InitialDelaySec int
    The number of seconds that the managed instance group waits before it applies autohealing policies to new instances or recently recreated instances. Between 0 and 3600.
    healthCheck String
    The health check resource that signals autohealing.
    initialDelaySec Integer
    The number of seconds that the managed instance group waits before it applies autohealing policies to new instances or recently recreated instances. Between 0 and 3600.
    healthCheck string
    The health check resource that signals autohealing.
    initialDelaySec number
    The number of seconds that the managed instance group waits before it applies autohealing policies to new instances or recently recreated instances. Between 0 and 3600.
    health_check str
    The health check resource that signals autohealing.
    initial_delay_sec int
    The number of seconds that the managed instance group waits before it applies autohealing policies to new instances or recently recreated instances. Between 0 and 3600.
    healthCheck String
    The health check resource that signals autohealing.
    initialDelaySec Number
    The number of seconds that the managed instance group waits before it applies autohealing policies to new instances or recently recreated instances. Between 0 and 3600.

    InstanceGroupManagerInstanceLifecyclePolicy, InstanceGroupManagerInstanceLifecyclePolicyArgs

    DefaultActionOnFailure string
    , Default behavior for all instance or health check failures. Valid options are: REPAIR, DO_NOTHING. If DO_NOTHING then instances will not be repaired. If REPAIR (default), then failed instances will be repaired.


    ForceUpdateOnRepair string
    , Specifies whether to apply the group's latest configuration when repairing a VM. Valid options are: YES, NO. If YES and you updated the group's instance template or per-instance configurations after the VM was created, then these changes are applied when VM is repaired. If NO (default), then updates are applied in accordance with the group's update policy type.
    DefaultActionOnFailure string
    , Default behavior for all instance or health check failures. Valid options are: REPAIR, DO_NOTHING. If DO_NOTHING then instances will not be repaired. If REPAIR (default), then failed instances will be repaired.


    ForceUpdateOnRepair string
    , Specifies whether to apply the group's latest configuration when repairing a VM. Valid options are: YES, NO. If YES and you updated the group's instance template or per-instance configurations after the VM was created, then these changes are applied when VM is repaired. If NO (default), then updates are applied in accordance with the group's update policy type.
    defaultActionOnFailure String
    , Default behavior for all instance or health check failures. Valid options are: REPAIR, DO_NOTHING. If DO_NOTHING then instances will not be repaired. If REPAIR (default), then failed instances will be repaired.


    forceUpdateOnRepair String
    , Specifies whether to apply the group's latest configuration when repairing a VM. Valid options are: YES, NO. If YES and you updated the group's instance template or per-instance configurations after the VM was created, then these changes are applied when VM is repaired. If NO (default), then updates are applied in accordance with the group's update policy type.
    defaultActionOnFailure string
    , Default behavior for all instance or health check failures. Valid options are: REPAIR, DO_NOTHING. If DO_NOTHING then instances will not be repaired. If REPAIR (default), then failed instances will be repaired.


    forceUpdateOnRepair string
    , Specifies whether to apply the group's latest configuration when repairing a VM. Valid options are: YES, NO. If YES and you updated the group's instance template or per-instance configurations after the VM was created, then these changes are applied when VM is repaired. If NO (default), then updates are applied in accordance with the group's update policy type.
    default_action_on_failure str
    , Default behavior for all instance or health check failures. Valid options are: REPAIR, DO_NOTHING. If DO_NOTHING then instances will not be repaired. If REPAIR (default), then failed instances will be repaired.


    force_update_on_repair str
    , Specifies whether to apply the group's latest configuration when repairing a VM. Valid options are: YES, NO. If YES and you updated the group's instance template or per-instance configurations after the VM was created, then these changes are applied when VM is repaired. If NO (default), then updates are applied in accordance with the group's update policy type.
    defaultActionOnFailure String
    , Default behavior for all instance or health check failures. Valid options are: REPAIR, DO_NOTHING. If DO_NOTHING then instances will not be repaired. If REPAIR (default), then failed instances will be repaired.


    forceUpdateOnRepair String
    , Specifies whether to apply the group's latest configuration when repairing a VM. Valid options are: YES, NO. If YES and you updated the group's instance template or per-instance configurations after the VM was created, then these changes are applied when VM is repaired. If NO (default), then updates are applied in accordance with the group's update policy type.

    InstanceGroupManagerNamedPort, InstanceGroupManagerNamedPortArgs

    Name string
    The name of the port.
    Port int
    The port number.


    Name string
    The name of the port.
    Port int
    The port number.


    name String
    The name of the port.
    port Integer
    The port number.


    name string
    The name of the port.
    port number
    The port number.


    name str
    The name of the port.
    port int
    The port number.


    name String
    The name of the port.
    port Number
    The port number.


    InstanceGroupManagerStatefulDisk, InstanceGroupManagerStatefulDiskArgs

    DeviceName string
    , The device name of the disk to be attached.
    DeleteRule string
    , A value that prescribes what should happen to the stateful disk when the VM instance is deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the disk when the VM is deleted, but do not delete the disk. ON_PERMANENT_INSTANCE_DELETION will delete the stateful disk when the VM is permanently deleted from the instance group. The default is NEVER.
    DeviceName string
    , The device name of the disk to be attached.
    DeleteRule string
    , A value that prescribes what should happen to the stateful disk when the VM instance is deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the disk when the VM is deleted, but do not delete the disk. ON_PERMANENT_INSTANCE_DELETION will delete the stateful disk when the VM is permanently deleted from the instance group. The default is NEVER.
    deviceName String
    , The device name of the disk to be attached.
    deleteRule String
    , A value that prescribes what should happen to the stateful disk when the VM instance is deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the disk when the VM is deleted, but do not delete the disk. ON_PERMANENT_INSTANCE_DELETION will delete the stateful disk when the VM is permanently deleted from the instance group. The default is NEVER.
    deviceName string
    , The device name of the disk to be attached.
    deleteRule string
    , A value that prescribes what should happen to the stateful disk when the VM instance is deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the disk when the VM is deleted, but do not delete the disk. ON_PERMANENT_INSTANCE_DELETION will delete the stateful disk when the VM is permanently deleted from the instance group. The default is NEVER.
    device_name str
    , The device name of the disk to be attached.
    delete_rule str
    , A value that prescribes what should happen to the stateful disk when the VM instance is deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the disk when the VM is deleted, but do not delete the disk. ON_PERMANENT_INSTANCE_DELETION will delete the stateful disk when the VM is permanently deleted from the instance group. The default is NEVER.
    deviceName String
    , The device name of the disk to be attached.
    deleteRule String
    , A value that prescribes what should happen to the stateful disk when the VM instance is deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the disk when the VM is deleted, but do not delete the disk. ON_PERMANENT_INSTANCE_DELETION will delete the stateful disk when the VM is permanently deleted from the instance group. The default is NEVER.

    InstanceGroupManagerStatefulExternalIp, InstanceGroupManagerStatefulExternalIpArgs

    DeleteRule string
    , A value that prescribes what should happen to the external ip when the VM instance is deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the ip when the VM is deleted, but do not delete the ip. ON_PERMANENT_INSTANCE_DELETION will delete the external ip when the VM is permanently deleted from the instance group.
    InterfaceName string
    , The network interface name of the external Ip. Possible value: nic0
    DeleteRule string
    , A value that prescribes what should happen to the external ip when the VM instance is deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the ip when the VM is deleted, but do not delete the ip. ON_PERMANENT_INSTANCE_DELETION will delete the external ip when the VM is permanently deleted from the instance group.
    InterfaceName string
    , The network interface name of the external Ip. Possible value: nic0
    deleteRule String
    , A value that prescribes what should happen to the external ip when the VM instance is deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the ip when the VM is deleted, but do not delete the ip. ON_PERMANENT_INSTANCE_DELETION will delete the external ip when the VM is permanently deleted from the instance group.
    interfaceName String
    , The network interface name of the external Ip. Possible value: nic0
    deleteRule string
    , A value that prescribes what should happen to the external ip when the VM instance is deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the ip when the VM is deleted, but do not delete the ip. ON_PERMANENT_INSTANCE_DELETION will delete the external ip when the VM is permanently deleted from the instance group.
    interfaceName string
    , The network interface name of the external Ip. Possible value: nic0
    delete_rule str
    , A value that prescribes what should happen to the external ip when the VM instance is deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the ip when the VM is deleted, but do not delete the ip. ON_PERMANENT_INSTANCE_DELETION will delete the external ip when the VM is permanently deleted from the instance group.
    interface_name str
    , The network interface name of the external Ip. Possible value: nic0
    deleteRule String
    , A value that prescribes what should happen to the external ip when the VM instance is deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the ip when the VM is deleted, but do not delete the ip. ON_PERMANENT_INSTANCE_DELETION will delete the external ip when the VM is permanently deleted from the instance group.
    interfaceName String
    , The network interface name of the external Ip. Possible value: nic0

    InstanceGroupManagerStatefulInternalIp, InstanceGroupManagerStatefulInternalIpArgs

    DeleteRule string
    , A value that prescribes what should happen to the internal ip when the VM instance is deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the ip when the VM is deleted, but do not delete the ip. ON_PERMANENT_INSTANCE_DELETION will delete the internal ip when the VM is permanently deleted from the instance group.
    InterfaceName string
    , The network interface name of the internal Ip. Possible value: nic0
    DeleteRule string
    , A value that prescribes what should happen to the internal ip when the VM instance is deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the ip when the VM is deleted, but do not delete the ip. ON_PERMANENT_INSTANCE_DELETION will delete the internal ip when the VM is permanently deleted from the instance group.
    InterfaceName string
    , The network interface name of the internal Ip. Possible value: nic0
    deleteRule String
    , A value that prescribes what should happen to the internal ip when the VM instance is deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the ip when the VM is deleted, but do not delete the ip. ON_PERMANENT_INSTANCE_DELETION will delete the internal ip when the VM is permanently deleted from the instance group.
    interfaceName String
    , The network interface name of the internal Ip. Possible value: nic0
    deleteRule string
    , A value that prescribes what should happen to the internal ip when the VM instance is deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the ip when the VM is deleted, but do not delete the ip. ON_PERMANENT_INSTANCE_DELETION will delete the internal ip when the VM is permanently deleted from the instance group.
    interfaceName string
    , The network interface name of the internal Ip. Possible value: nic0
    delete_rule str
    , A value that prescribes what should happen to the internal ip when the VM instance is deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the ip when the VM is deleted, but do not delete the ip. ON_PERMANENT_INSTANCE_DELETION will delete the internal ip when the VM is permanently deleted from the instance group.
    interface_name str
    , The network interface name of the internal Ip. Possible value: nic0
    deleteRule String
    , A value that prescribes what should happen to the internal ip when the VM instance is deleted. The available options are NEVER and ON_PERMANENT_INSTANCE_DELETION. NEVER - detach the ip when the VM is deleted, but do not delete the ip. ON_PERMANENT_INSTANCE_DELETION will delete the internal ip when the VM is permanently deleted from the instance group.
    interfaceName String
    , The network interface name of the internal Ip. Possible value: nic0

    InstanceGroupManagerStatus, InstanceGroupManagerStatusArgs

    AllInstancesConfigs List<InstanceGroupManagerStatusAllInstancesConfig>
    Properties to set on all instances in the group. After setting allInstancesConfig on the group, you must update the group's instances to apply the configuration.
    IsStable bool
    A bit indicating whether the managed instance group is in a stable state. A stable state means that: none of the instances in the managed instance group is currently undergoing any type of change (for example, creation, restart, or deletion); no future changes are scheduled for instances in the managed instance group; and the managed instance group itself is not being modified.
    Statefuls List<InstanceGroupManagerStatusStateful>
    Stateful status of the given Instance Group Manager.
    VersionTargets List<InstanceGroupManagerStatusVersionTarget>
    A bit indicating whether version target has been reached in this managed instance group, i.e. all instances are in their target version. Instances' target version are specified by version field on Instance Group Manager.
    AllInstancesConfigs []InstanceGroupManagerStatusAllInstancesConfig
    Properties to set on all instances in the group. After setting allInstancesConfig on the group, you must update the group's instances to apply the configuration.
    IsStable bool
    A bit indicating whether the managed instance group is in a stable state. A stable state means that: none of the instances in the managed instance group is currently undergoing any type of change (for example, creation, restart, or deletion); no future changes are scheduled for instances in the managed instance group; and the managed instance group itself is not being modified.
    Statefuls []InstanceGroupManagerStatusStateful
    Stateful status of the given Instance Group Manager.
    VersionTargets []InstanceGroupManagerStatusVersionTarget
    A bit indicating whether version target has been reached in this managed instance group, i.e. all instances are in their target version. Instances' target version are specified by version field on Instance Group Manager.
    allInstancesConfigs List<InstanceGroupManagerStatusAllInstancesConfig>
    Properties to set on all instances in the group. After setting allInstancesConfig on the group, you must update the group's instances to apply the configuration.
    isStable Boolean
    A bit indicating whether the managed instance group is in a stable state. A stable state means that: none of the instances in the managed instance group is currently undergoing any type of change (for example, creation, restart, or deletion); no future changes are scheduled for instances in the managed instance group; and the managed instance group itself is not being modified.
    statefuls List<InstanceGroupManagerStatusStateful>
    Stateful status of the given Instance Group Manager.
    versionTargets List<InstanceGroupManagerStatusVersionTarget>
    A bit indicating whether version target has been reached in this managed instance group, i.e. all instances are in their target version. Instances' target version are specified by version field on Instance Group Manager.
    allInstancesConfigs InstanceGroupManagerStatusAllInstancesConfig[]
    Properties to set on all instances in the group. After setting allInstancesConfig on the group, you must update the group's instances to apply the configuration.
    isStable boolean
    A bit indicating whether the managed instance group is in a stable state. A stable state means that: none of the instances in the managed instance group is currently undergoing any type of change (for example, creation, restart, or deletion); no future changes are scheduled for instances in the managed instance group; and the managed instance group itself is not being modified.
    statefuls InstanceGroupManagerStatusStateful[]
    Stateful status of the given Instance Group Manager.
    versionTargets InstanceGroupManagerStatusVersionTarget[]
    A bit indicating whether version target has been reached in this managed instance group, i.e. all instances are in their target version. Instances' target version are specified by version field on Instance Group Manager.
    all_instances_configs Sequence[InstanceGroupManagerStatusAllInstancesConfig]
    Properties to set on all instances in the group. After setting allInstancesConfig on the group, you must update the group's instances to apply the configuration.
    is_stable bool
    A bit indicating whether the managed instance group is in a stable state. A stable state means that: none of the instances in the managed instance group is currently undergoing any type of change (for example, creation, restart, or deletion); no future changes are scheduled for instances in the managed instance group; and the managed instance group itself is not being modified.
    statefuls Sequence[InstanceGroupManagerStatusStateful]
    Stateful status of the given Instance Group Manager.
    version_targets Sequence[InstanceGroupManagerStatusVersionTarget]
    A bit indicating whether version target has been reached in this managed instance group, i.e. all instances are in their target version. Instances' target version are specified by version field on Instance Group Manager.
    allInstancesConfigs List<Property Map>
    Properties to set on all instances in the group. After setting allInstancesConfig on the group, you must update the group's instances to apply the configuration.
    isStable Boolean
    A bit indicating whether the managed instance group is in a stable state. A stable state means that: none of the instances in the managed instance group is currently undergoing any type of change (for example, creation, restart, or deletion); no future changes are scheduled for instances in the managed instance group; and the managed instance group itself is not being modified.
    statefuls List<Property Map>
    Stateful status of the given Instance Group Manager.
    versionTargets List<Property Map>
    A bit indicating whether version target has been reached in this managed instance group, i.e. all instances are in their target version. Instances' target version are specified by version field on Instance Group Manager.

    InstanceGroupManagerStatusAllInstancesConfig, InstanceGroupManagerStatusAllInstancesConfigArgs

    CurrentRevision string
    Current all-instances configuration revision. This value is in RFC3339 text format.
    Effective bool
    A bit indicating whether this configuration has been applied to all managed instances in the group.
    CurrentRevision string
    Current all-instances configuration revision. This value is in RFC3339 text format.
    Effective bool
    A bit indicating whether this configuration has been applied to all managed instances in the group.
    currentRevision String
    Current all-instances configuration revision. This value is in RFC3339 text format.
    effective Boolean
    A bit indicating whether this configuration has been applied to all managed instances in the group.
    currentRevision string
    Current all-instances configuration revision. This value is in RFC3339 text format.
    effective boolean
    A bit indicating whether this configuration has been applied to all managed instances in the group.
    current_revision str
    Current all-instances configuration revision. This value is in RFC3339 text format.
    effective bool
    A bit indicating whether this configuration has been applied to all managed instances in the group.
    currentRevision String
    Current all-instances configuration revision. This value is in RFC3339 text format.
    effective Boolean
    A bit indicating whether this configuration has been applied to all managed instances in the group.

    InstanceGroupManagerStatusStateful, InstanceGroupManagerStatusStatefulArgs

    HasStatefulConfig bool
    A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful config even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions.
    PerInstanceConfigs List<InstanceGroupManagerStatusStatefulPerInstanceConfig>
    Status of per-instance configs on the instances.
    HasStatefulConfig bool
    A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful config even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions.
    PerInstanceConfigs []InstanceGroupManagerStatusStatefulPerInstanceConfig
    Status of per-instance configs on the instances.
    hasStatefulConfig Boolean
    A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful config even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions.
    perInstanceConfigs List<InstanceGroupManagerStatusStatefulPerInstanceConfig>
    Status of per-instance configs on the instances.
    hasStatefulConfig boolean
    A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful config even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions.
    perInstanceConfigs InstanceGroupManagerStatusStatefulPerInstanceConfig[]
    Status of per-instance configs on the instances.
    has_stateful_config bool
    A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful config even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions.
    per_instance_configs Sequence[InstanceGroupManagerStatusStatefulPerInstanceConfig]
    Status of per-instance configs on the instances.
    hasStatefulConfig Boolean
    A bit indicating whether the managed instance group has stateful configuration, that is, if you have configured any items in a stateful policy or in per-instance configs. The group might report that it has no stateful config even when there is still some preserved state on a managed instance, for example, if you have deleted all PICs but not yet applied those deletions.
    perInstanceConfigs List<Property Map>
    Status of per-instance configs on the instances.

    InstanceGroupManagerStatusStatefulPerInstanceConfig, InstanceGroupManagerStatusStatefulPerInstanceConfigArgs

    AllEffective bool
    A bit indicating if all of the group's per-instance configs (listed in the output of a listPerInstanceConfigs API call) have status EFFECTIVE or there are no per-instance-configs.
    AllEffective bool
    A bit indicating if all of the group's per-instance configs (listed in the output of a listPerInstanceConfigs API call) have status EFFECTIVE or there are no per-instance-configs.
    allEffective Boolean
    A bit indicating if all of the group's per-instance configs (listed in the output of a listPerInstanceConfigs API call) have status EFFECTIVE or there are no per-instance-configs.
    allEffective boolean
    A bit indicating if all of the group's per-instance configs (listed in the output of a listPerInstanceConfigs API call) have status EFFECTIVE or there are no per-instance-configs.
    all_effective bool
    A bit indicating if all of the group's per-instance configs (listed in the output of a listPerInstanceConfigs API call) have status EFFECTIVE or there are no per-instance-configs.
    allEffective Boolean
    A bit indicating if all of the group's per-instance configs (listed in the output of a listPerInstanceConfigs API call) have status EFFECTIVE or there are no per-instance-configs.

    InstanceGroupManagerStatusVersionTarget, InstanceGroupManagerStatusVersionTargetArgs

    IsReached bool
    A bit indicating whether version target has been reached in this managed instance group, i.e. all instances are in their target version. Instances' target version are specified by version field on Instance Group Manager.
    IsReached bool
    A bit indicating whether version target has been reached in this managed instance group, i.e. all instances are in their target version. Instances' target version are specified by version field on Instance Group Manager.
    isReached Boolean
    A bit indicating whether version target has been reached in this managed instance group, i.e. all instances are in their target version. Instances' target version are specified by version field on Instance Group Manager.
    isReached boolean
    A bit indicating whether version target has been reached in this managed instance group, i.e. all instances are in their target version. Instances' target version are specified by version field on Instance Group Manager.
    is_reached bool
    A bit indicating whether version target has been reached in this managed instance group, i.e. all instances are in their target version. Instances' target version are specified by version field on Instance Group Manager.
    isReached Boolean
    A bit indicating whether version target has been reached in this managed instance group, i.e. all instances are in their target version. Instances' target version are specified by version field on Instance Group Manager.

    InstanceGroupManagerUpdatePolicy, InstanceGroupManagerUpdatePolicyArgs

    MinimalAction string
    Minimal action to be taken on an instance. You can specify either REFRESH to update without stopping instances, RESTART to restart existing instances or REPLACE to delete and create new instances from the target template. If you specify a REFRESH, the Updater will attempt to perform that action only. However, if the Updater determines that the minimal action you specify is not enough to perform the update, it might perform a more disruptive action.
    Type string
    The type of update process. You can specify either PROACTIVE so that the instance group manager proactively executes actions in order to bring instances to their target versions or OPPORTUNISTIC so that no action is proactively executed but the update will be performed as part of other actions (for example, resizes or recreateInstances calls).
    MaxSurgeFixed int
    , The maximum number of instances that can be created above the specified targetSize during the update process. Conflicts with max_surge_percent. If neither is set, defaults to 1
    MaxSurgePercent int
    , The maximum number of instances(calculated as percentage) that can be created above the specified targetSize during the update process. Conflicts with max_surge_fixed.
    MaxUnavailableFixed int
    , The maximum number of instances that can be unavailable during the update process. Conflicts with max_unavailable_percent. If neither is set, defaults to 1
    MaxUnavailablePercent int
    , The maximum number of instances(calculated as percentage) that can be unavailable during the update process. Conflicts with max_unavailable_fixed.
    MinReadySec int
    , Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600]
    MostDisruptiveAllowedAction string
    Most disruptive action that is allowed to be taken on an instance. You can specify either NONE to forbid any actions, REFRESH to allow actions that do not need instance restart, RESTART to allow actions that can be applied without instance replacing or REPLACE to allow all possible actions. If the Updater determines that the minimal update action needed is more disruptive than most disruptive allowed action you specify it will not perform the update at all.
    ReplacementMethod string
    , The instance replacement method for managed instance groups. Valid values are: "RECREATE", "SUBSTITUTE". If SUBSTITUTE (default), the group replaces VM instances with new instances that have randomly generated names. If RECREATE, instance names are preserved. You must also set max_unavailable_fixed or max_unavailable_percent to be greater than 0.


    MinimalAction string
    Minimal action to be taken on an instance. You can specify either REFRESH to update without stopping instances, RESTART to restart existing instances or REPLACE to delete and create new instances from the target template. If you specify a REFRESH, the Updater will attempt to perform that action only. However, if the Updater determines that the minimal action you specify is not enough to perform the update, it might perform a more disruptive action.
    Type string
    The type of update process. You can specify either PROACTIVE so that the instance group manager proactively executes actions in order to bring instances to their target versions or OPPORTUNISTIC so that no action is proactively executed but the update will be performed as part of other actions (for example, resizes or recreateInstances calls).
    MaxSurgeFixed int
    , The maximum number of instances that can be created above the specified targetSize during the update process. Conflicts with max_surge_percent. If neither is set, defaults to 1
    MaxSurgePercent int
    , The maximum number of instances(calculated as percentage) that can be created above the specified targetSize during the update process. Conflicts with max_surge_fixed.
    MaxUnavailableFixed int
    , The maximum number of instances that can be unavailable during the update process. Conflicts with max_unavailable_percent. If neither is set, defaults to 1
    MaxUnavailablePercent int
    , The maximum number of instances(calculated as percentage) that can be unavailable during the update process. Conflicts with max_unavailable_fixed.
    MinReadySec int
    , Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600]
    MostDisruptiveAllowedAction string
    Most disruptive action that is allowed to be taken on an instance. You can specify either NONE to forbid any actions, REFRESH to allow actions that do not need instance restart, RESTART to allow actions that can be applied without instance replacing or REPLACE to allow all possible actions. If the Updater determines that the minimal update action needed is more disruptive than most disruptive allowed action you specify it will not perform the update at all.
    ReplacementMethod string
    , The instance replacement method for managed instance groups. Valid values are: "RECREATE", "SUBSTITUTE". If SUBSTITUTE (default), the group replaces VM instances with new instances that have randomly generated names. If RECREATE, instance names are preserved. You must also set max_unavailable_fixed or max_unavailable_percent to be greater than 0.


    minimalAction String
    Minimal action to be taken on an instance. You can specify either REFRESH to update without stopping instances, RESTART to restart existing instances or REPLACE to delete and create new instances from the target template. If you specify a REFRESH, the Updater will attempt to perform that action only. However, if the Updater determines that the minimal action you specify is not enough to perform the update, it might perform a more disruptive action.
    type String
    The type of update process. You can specify either PROACTIVE so that the instance group manager proactively executes actions in order to bring instances to their target versions or OPPORTUNISTIC so that no action is proactively executed but the update will be performed as part of other actions (for example, resizes or recreateInstances calls).
    maxSurgeFixed Integer
    , The maximum number of instances that can be created above the specified targetSize during the update process. Conflicts with max_surge_percent. If neither is set, defaults to 1
    maxSurgePercent Integer
    , The maximum number of instances(calculated as percentage) that can be created above the specified targetSize during the update process. Conflicts with max_surge_fixed.
    maxUnavailableFixed Integer
    , The maximum number of instances that can be unavailable during the update process. Conflicts with max_unavailable_percent. If neither is set, defaults to 1
    maxUnavailablePercent Integer
    , The maximum number of instances(calculated as percentage) that can be unavailable during the update process. Conflicts with max_unavailable_fixed.
    minReadySec Integer
    , Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600]
    mostDisruptiveAllowedAction String
    Most disruptive action that is allowed to be taken on an instance. You can specify either NONE to forbid any actions, REFRESH to allow actions that do not need instance restart, RESTART to allow actions that can be applied without instance replacing or REPLACE to allow all possible actions. If the Updater determines that the minimal update action needed is more disruptive than most disruptive allowed action you specify it will not perform the update at all.
    replacementMethod String
    , The instance replacement method for managed instance groups. Valid values are: "RECREATE", "SUBSTITUTE". If SUBSTITUTE (default), the group replaces VM instances with new instances that have randomly generated names. If RECREATE, instance names are preserved. You must also set max_unavailable_fixed or max_unavailable_percent to be greater than 0.


    minimalAction string
    Minimal action to be taken on an instance. You can specify either REFRESH to update without stopping instances, RESTART to restart existing instances or REPLACE to delete and create new instances from the target template. If you specify a REFRESH, the Updater will attempt to perform that action only. However, if the Updater determines that the minimal action you specify is not enough to perform the update, it might perform a more disruptive action.
    type string
    The type of update process. You can specify either PROACTIVE so that the instance group manager proactively executes actions in order to bring instances to their target versions or OPPORTUNISTIC so that no action is proactively executed but the update will be performed as part of other actions (for example, resizes or recreateInstances calls).
    maxSurgeFixed number
    , The maximum number of instances that can be created above the specified targetSize during the update process. Conflicts with max_surge_percent. If neither is set, defaults to 1
    maxSurgePercent number
    , The maximum number of instances(calculated as percentage) that can be created above the specified targetSize during the update process. Conflicts with max_surge_fixed.
    maxUnavailableFixed number
    , The maximum number of instances that can be unavailable during the update process. Conflicts with max_unavailable_percent. If neither is set, defaults to 1
    maxUnavailablePercent number
    , The maximum number of instances(calculated as percentage) that can be unavailable during the update process. Conflicts with max_unavailable_fixed.
    minReadySec number
    , Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600]
    mostDisruptiveAllowedAction string
    Most disruptive action that is allowed to be taken on an instance. You can specify either NONE to forbid any actions, REFRESH to allow actions that do not need instance restart, RESTART to allow actions that can be applied without instance replacing or REPLACE to allow all possible actions. If the Updater determines that the minimal update action needed is more disruptive than most disruptive allowed action you specify it will not perform the update at all.
    replacementMethod string
    , The instance replacement method for managed instance groups. Valid values are: "RECREATE", "SUBSTITUTE". If SUBSTITUTE (default), the group replaces VM instances with new instances that have randomly generated names. If RECREATE, instance names are preserved. You must also set max_unavailable_fixed or max_unavailable_percent to be greater than 0.


    minimal_action str
    Minimal action to be taken on an instance. You can specify either REFRESH to update without stopping instances, RESTART to restart existing instances or REPLACE to delete and create new instances from the target template. If you specify a REFRESH, the Updater will attempt to perform that action only. However, if the Updater determines that the minimal action you specify is not enough to perform the update, it might perform a more disruptive action.
    type str
    The type of update process. You can specify either PROACTIVE so that the instance group manager proactively executes actions in order to bring instances to their target versions or OPPORTUNISTIC so that no action is proactively executed but the update will be performed as part of other actions (for example, resizes or recreateInstances calls).
    max_surge_fixed int
    , The maximum number of instances that can be created above the specified targetSize during the update process. Conflicts with max_surge_percent. If neither is set, defaults to 1
    max_surge_percent int
    , The maximum number of instances(calculated as percentage) that can be created above the specified targetSize during the update process. Conflicts with max_surge_fixed.
    max_unavailable_fixed int
    , The maximum number of instances that can be unavailable during the update process. Conflicts with max_unavailable_percent. If neither is set, defaults to 1
    max_unavailable_percent int
    , The maximum number of instances(calculated as percentage) that can be unavailable during the update process. Conflicts with max_unavailable_fixed.
    min_ready_sec int
    , Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600]
    most_disruptive_allowed_action str
    Most disruptive action that is allowed to be taken on an instance. You can specify either NONE to forbid any actions, REFRESH to allow actions that do not need instance restart, RESTART to allow actions that can be applied without instance replacing or REPLACE to allow all possible actions. If the Updater determines that the minimal update action needed is more disruptive than most disruptive allowed action you specify it will not perform the update at all.
    replacement_method str
    , The instance replacement method for managed instance groups. Valid values are: "RECREATE", "SUBSTITUTE". If SUBSTITUTE (default), the group replaces VM instances with new instances that have randomly generated names. If RECREATE, instance names are preserved. You must also set max_unavailable_fixed or max_unavailable_percent to be greater than 0.


    minimalAction String
    Minimal action to be taken on an instance. You can specify either REFRESH to update without stopping instances, RESTART to restart existing instances or REPLACE to delete and create new instances from the target template. If you specify a REFRESH, the Updater will attempt to perform that action only. However, if the Updater determines that the minimal action you specify is not enough to perform the update, it might perform a more disruptive action.
    type String
    The type of update process. You can specify either PROACTIVE so that the instance group manager proactively executes actions in order to bring instances to their target versions or OPPORTUNISTIC so that no action is proactively executed but the update will be performed as part of other actions (for example, resizes or recreateInstances calls).
    maxSurgeFixed Number
    , The maximum number of instances that can be created above the specified targetSize during the update process. Conflicts with max_surge_percent. If neither is set, defaults to 1
    maxSurgePercent Number
    , The maximum number of instances(calculated as percentage) that can be created above the specified targetSize during the update process. Conflicts with max_surge_fixed.
    maxUnavailableFixed Number
    , The maximum number of instances that can be unavailable during the update process. Conflicts with max_unavailable_percent. If neither is set, defaults to 1
    maxUnavailablePercent Number
    , The maximum number of instances(calculated as percentage) that can be unavailable during the update process. Conflicts with max_unavailable_fixed.
    minReadySec Number
    , Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600]
    mostDisruptiveAllowedAction String
    Most disruptive action that is allowed to be taken on an instance. You can specify either NONE to forbid any actions, REFRESH to allow actions that do not need instance restart, RESTART to allow actions that can be applied without instance replacing or REPLACE to allow all possible actions. If the Updater determines that the minimal update action needed is more disruptive than most disruptive allowed action you specify it will not perform the update at all.
    replacementMethod String
    , The instance replacement method for managed instance groups. Valid values are: "RECREATE", "SUBSTITUTE". If SUBSTITUTE (default), the group replaces VM instances with new instances that have randomly generated names. If RECREATE, instance names are preserved. You must also set max_unavailable_fixed or max_unavailable_percent to be greater than 0.


    InstanceGroupManagerVersion, InstanceGroupManagerVersionArgs

    InstanceTemplate string
    The full URL to an instance template from which all new instances of this version will be created. It is recommended to reference instance templates through their unique id (self_link_unique attribute).
    Name string
    Version name.
    TargetSize InstanceGroupManagerVersionTargetSize

    The number of instances calculated as a fixed number or a percentage depending on the settings. Structure is documented below.

    Exactly one version you specify must not have a target_size specified. During a rolling update, the instance group manager will fulfill the target_size constraints of every other version, and any remaining instances will be provisioned with the version where target_size is unset.

    InstanceTemplate string
    The full URL to an instance template from which all new instances of this version will be created. It is recommended to reference instance templates through their unique id (self_link_unique attribute).
    Name string
    Version name.
    TargetSize InstanceGroupManagerVersionTargetSize

    The number of instances calculated as a fixed number or a percentage depending on the settings. Structure is documented below.

    Exactly one version you specify must not have a target_size specified. During a rolling update, the instance group manager will fulfill the target_size constraints of every other version, and any remaining instances will be provisioned with the version where target_size is unset.

    instanceTemplate String
    The full URL to an instance template from which all new instances of this version will be created. It is recommended to reference instance templates through their unique id (self_link_unique attribute).
    name String
    Version name.
    targetSize InstanceGroupManagerVersionTargetSize

    The number of instances calculated as a fixed number or a percentage depending on the settings. Structure is documented below.

    Exactly one version you specify must not have a target_size specified. During a rolling update, the instance group manager will fulfill the target_size constraints of every other version, and any remaining instances will be provisioned with the version where target_size is unset.

    instanceTemplate string
    The full URL to an instance template from which all new instances of this version will be created. It is recommended to reference instance templates through their unique id (self_link_unique attribute).
    name string
    Version name.
    targetSize InstanceGroupManagerVersionTargetSize

    The number of instances calculated as a fixed number or a percentage depending on the settings. Structure is documented below.

    Exactly one version you specify must not have a target_size specified. During a rolling update, the instance group manager will fulfill the target_size constraints of every other version, and any remaining instances will be provisioned with the version where target_size is unset.

    instance_template str
    The full URL to an instance template from which all new instances of this version will be created. It is recommended to reference instance templates through their unique id (self_link_unique attribute).
    name str
    Version name.
    target_size InstanceGroupManagerVersionTargetSize

    The number of instances calculated as a fixed number or a percentage depending on the settings. Structure is documented below.

    Exactly one version you specify must not have a target_size specified. During a rolling update, the instance group manager will fulfill the target_size constraints of every other version, and any remaining instances will be provisioned with the version where target_size is unset.

    instanceTemplate String
    The full URL to an instance template from which all new instances of this version will be created. It is recommended to reference instance templates through their unique id (self_link_unique attribute).
    name String
    Version name.
    targetSize Property Map

    The number of instances calculated as a fixed number or a percentage depending on the settings. Structure is documented below.

    Exactly one version you specify must not have a target_size specified. During a rolling update, the instance group manager will fulfill the target_size constraints of every other version, and any remaining instances will be provisioned with the version where target_size is unset.

    InstanceGroupManagerVersionTargetSize, InstanceGroupManagerVersionTargetSizeArgs

    Fixed int
    , The number of instances which are managed for this version. Conflicts with percent.
    Percent int
    , The number of instances (calculated as percentage) which are managed for this version. Conflicts with fixed. Note that when using percent, rounding will be in favor of explicitly set target_size values; a managed instance group with 2 instances and 2 versions, one of which has a target_size.percent of 60 will create 2 instances of that version.
    Fixed int
    , The number of instances which are managed for this version. Conflicts with percent.
    Percent int
    , The number of instances (calculated as percentage) which are managed for this version. Conflicts with fixed. Note that when using percent, rounding will be in favor of explicitly set target_size values; a managed instance group with 2 instances and 2 versions, one of which has a target_size.percent of 60 will create 2 instances of that version.
    fixed Integer
    , The number of instances which are managed for this version. Conflicts with percent.
    percent Integer
    , The number of instances (calculated as percentage) which are managed for this version. Conflicts with fixed. Note that when using percent, rounding will be in favor of explicitly set target_size values; a managed instance group with 2 instances and 2 versions, one of which has a target_size.percent of 60 will create 2 instances of that version.
    fixed number
    , The number of instances which are managed for this version. Conflicts with percent.
    percent number
    , The number of instances (calculated as percentage) which are managed for this version. Conflicts with fixed. Note that when using percent, rounding will be in favor of explicitly set target_size values; a managed instance group with 2 instances and 2 versions, one of which has a target_size.percent of 60 will create 2 instances of that version.
    fixed int
    , The number of instances which are managed for this version. Conflicts with percent.
    percent int
    , The number of instances (calculated as percentage) which are managed for this version. Conflicts with fixed. Note that when using percent, rounding will be in favor of explicitly set target_size values; a managed instance group with 2 instances and 2 versions, one of which has a target_size.percent of 60 will create 2 instances of that version.
    fixed Number
    , The number of instances which are managed for this version. Conflicts with percent.
    percent Number
    , The number of instances (calculated as percentage) which are managed for this version. Conflicts with fixed. Note that when using percent, rounding will be in favor of explicitly set target_size values; a managed instance group with 2 instances and 2 versions, one of which has a target_size.percent of 60 will create 2 instances of that version.

    Import

    Instance group managers can be imported using any of these accepted formats:

    • projects/{{project}}/zones/{{zone}}/instanceGroupManagers/{{name}}

    • {{project}}/{{zone}}/{{name}}

    • {{project}}/{{name}}

    • {{name}}

    When using the pulumi import command, instance group managers can be imported using one of the formats above. For example:

    $ pulumi import gcp:compute/instanceGroupManager:InstanceGroupManager default projects/{{project}}/zones/{{zone}}/instanceGroupManagers/{{name}}
    
    $ pulumi import gcp:compute/instanceGroupManager:InstanceGroupManager default {{project}}/{{zone}}/{{name}}
    
    $ pulumi import gcp:compute/instanceGroupManager:InstanceGroupManager default {{project}}/{{name}}
    
    $ pulumi import gcp:compute/instanceGroupManager:InstanceGroupManager default {{name}}
    

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Google Cloud Classic v7.16.0 published on Wednesday, Mar 27, 2024 by Pulumi