gcp.compute.RegionInstanceGroupManager
Explore with Pulumi AI
The Google Compute Engine Regional Instance Group Manager API creates and manages pools of homogeneous Compute Engine virtual machine instances from a common instance template.
To get more information about regionInstanceGroupManagers, see:
- API documentation
- How-to Guides
Note: Use gcp.compute.InstanceGroupManager to create a zonal 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.RegionInstanceGroupManager("appserver", {
name: "appserver-igm",
baseInstanceName: "app",
region: "us-central1",
distributionPolicyZones: [
"us-central1-a",
"us-central1-f",
],
versions: [{
instanceTemplate: appserverGoogleComputeInstanceTemplate.selfLinkUnique,
}],
allInstancesConfig: {
metadata: {
metadata_key: "metadata_value",
},
labels: {
label_key: "label_value",
},
},
targetPools: [appserverGoogleComputeTargetPool.id],
targetSize: 2,
namedPorts: [{
name: "custom",
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={
"request_path": "/healthz",
"port": 8080,
})
appserver = gcp.compute.RegionInstanceGroupManager("appserver",
name="appserver-igm",
base_instance_name="app",
region="us-central1",
distribution_policy_zones=[
"us-central1-a",
"us-central1-f",
],
versions=[{
"instance_template": appserver_google_compute_instance_template["selfLinkUnique"],
}],
all_instances_config={
"metadata": {
"metadata_key": "metadata_value",
},
"labels": {
"label_key": "label_value",
},
},
target_pools=[appserver_google_compute_target_pool["id"]],
target_size=2,
named_ports=[{
"name": "custom",
"port": 8888,
}],
auto_healing_policies={
"health_check": autohealing.id,
"initial_delay_sec": 300,
})
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/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.NewRegionInstanceGroupManager(ctx, "appserver", &compute.RegionInstanceGroupManagerArgs{
Name: pulumi.String("appserver-igm"),
BaseInstanceName: pulumi.String("app"),
Region: pulumi.String("us-central1"),
DistributionPolicyZones: pulumi.StringArray{
pulumi.String("us-central1-a"),
pulumi.String("us-central1-f"),
},
Versions: compute.RegionInstanceGroupManagerVersionArray{
&compute.RegionInstanceGroupManagerVersionArgs{
InstanceTemplate: pulumi.Any(appserverGoogleComputeInstanceTemplate.SelfLinkUnique),
},
},
AllInstancesConfig: &compute.RegionInstanceGroupManagerAllInstancesConfigArgs{
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.RegionInstanceGroupManagerNamedPortArray{
&compute.RegionInstanceGroupManagerNamedPortArgs{
Name: pulumi.String("custom"),
Port: pulumi.Int(8888),
},
},
AutoHealingPolicies: &compute.RegionInstanceGroupManagerAutoHealingPoliciesArgs{
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.RegionInstanceGroupManager("appserver", new()
{
Name = "appserver-igm",
BaseInstanceName = "app",
Region = "us-central1",
DistributionPolicyZones = new[]
{
"us-central1-a",
"us-central1-f",
},
Versions = new[]
{
new Gcp.Compute.Inputs.RegionInstanceGroupManagerVersionArgs
{
InstanceTemplate = appserverGoogleComputeInstanceTemplate.SelfLinkUnique,
},
},
AllInstancesConfig = new Gcp.Compute.Inputs.RegionInstanceGroupManagerAllInstancesConfigArgs
{
Metadata =
{
{ "metadata_key", "metadata_value" },
},
Labels =
{
{ "label_key", "label_value" },
},
},
TargetPools = new[]
{
appserverGoogleComputeTargetPool.Id,
},
TargetSize = 2,
NamedPorts = new[]
{
new Gcp.Compute.Inputs.RegionInstanceGroupManagerNamedPortArgs
{
Name = "custom",
Port = 8888,
},
},
AutoHealingPolicies = new Gcp.Compute.Inputs.RegionInstanceGroupManagerAutoHealingPoliciesArgs
{
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.RegionInstanceGroupManager;
import com.pulumi.gcp.compute.RegionInstanceGroupManagerArgs;
import com.pulumi.gcp.compute.inputs.RegionInstanceGroupManagerVersionArgs;
import com.pulumi.gcp.compute.inputs.RegionInstanceGroupManagerAllInstancesConfigArgs;
import com.pulumi.gcp.compute.inputs.RegionInstanceGroupManagerNamedPortArgs;
import com.pulumi.gcp.compute.inputs.RegionInstanceGroupManagerAutoHealingPoliciesArgs;
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 RegionInstanceGroupManager("appserver", RegionInstanceGroupManagerArgs.builder()
.name("appserver-igm")
.baseInstanceName("app")
.region("us-central1")
.distributionPolicyZones(
"us-central1-a",
"us-central1-f")
.versions(RegionInstanceGroupManagerVersionArgs.builder()
.instanceTemplate(appserverGoogleComputeInstanceTemplate.selfLinkUnique())
.build())
.allInstancesConfig(RegionInstanceGroupManagerAllInstancesConfigArgs.builder()
.metadata(Map.of("metadata_key", "metadata_value"))
.labels(Map.of("label_key", "label_value"))
.build())
.targetPools(appserverGoogleComputeTargetPool.id())
.targetSize(2)
.namedPorts(RegionInstanceGroupManagerNamedPortArgs.builder()
.name("custom")
.port(8888)
.build())
.autoHealingPolicies(RegionInstanceGroupManagerAutoHealingPoliciesArgs.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:RegionInstanceGroupManager
properties:
name: appserver-igm
baseInstanceName: app
region: us-central1
distributionPolicyZones:
- us-central1-a
- us-central1-f
versions:
- instanceTemplate: ${appserverGoogleComputeInstanceTemplate.selfLinkUnique}
allInstancesConfig:
metadata:
metadata_key: metadata_value
labels:
label_key: label_value
targetPools:
- ${appserverGoogleComputeTargetPool.id}
targetSize: 2
namedPorts:
- name: custom
port: 8888
autoHealingPolicies:
healthCheck: ${autohealing.id}
initialDelaySec: 300
With Multiple Versions
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const appserver = new gcp.compute.RegionInstanceGroupManager("appserver", {
name: "appserver-igm",
baseInstanceName: "app",
region: "us-central1",
targetSize: 5,
versions: [
{
instanceTemplate: appserverGoogleComputeInstanceTemplate.selfLinkUnique,
},
{
instanceTemplate: appserver_canary.selfLinkUnique,
targetSize: {
fixed: 1,
},
},
],
});
import pulumi
import pulumi_gcp as gcp
appserver = gcp.compute.RegionInstanceGroupManager("appserver",
name="appserver-igm",
base_instance_name="app",
region="us-central1",
target_size=5,
versions=[
{
"instance_template": appserver_google_compute_instance_template["selfLinkUnique"],
},
{
"instance_template": appserver_canary["selfLinkUnique"],
"target_size": {
"fixed": 1,
},
},
])
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := compute.NewRegionInstanceGroupManager(ctx, "appserver", &compute.RegionInstanceGroupManagerArgs{
Name: pulumi.String("appserver-igm"),
BaseInstanceName: pulumi.String("app"),
Region: pulumi.String("us-central1"),
TargetSize: pulumi.Int(5),
Versions: compute.RegionInstanceGroupManagerVersionArray{
&compute.RegionInstanceGroupManagerVersionArgs{
InstanceTemplate: pulumi.Any(appserverGoogleComputeInstanceTemplate.SelfLinkUnique),
},
&compute.RegionInstanceGroupManagerVersionArgs{
InstanceTemplate: pulumi.Any(appserver_canary.SelfLinkUnique),
TargetSize: &compute.RegionInstanceGroupManagerVersionTargetSizeArgs{
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.RegionInstanceGroupManager("appserver", new()
{
Name = "appserver-igm",
BaseInstanceName = "app",
Region = "us-central1",
TargetSize = 5,
Versions = new[]
{
new Gcp.Compute.Inputs.RegionInstanceGroupManagerVersionArgs
{
InstanceTemplate = appserverGoogleComputeInstanceTemplate.SelfLinkUnique,
},
new Gcp.Compute.Inputs.RegionInstanceGroupManagerVersionArgs
{
InstanceTemplate = appserver_canary.SelfLinkUnique,
TargetSize = new Gcp.Compute.Inputs.RegionInstanceGroupManagerVersionTargetSizeArgs
{
Fixed = 1,
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.RegionInstanceGroupManager;
import com.pulumi.gcp.compute.RegionInstanceGroupManagerArgs;
import com.pulumi.gcp.compute.inputs.RegionInstanceGroupManagerVersionArgs;
import com.pulumi.gcp.compute.inputs.RegionInstanceGroupManagerVersionTargetSizeArgs;
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 RegionInstanceGroupManager("appserver", RegionInstanceGroupManagerArgs.builder()
.name("appserver-igm")
.baseInstanceName("app")
.region("us-central1")
.targetSize(5)
.versions(
RegionInstanceGroupManagerVersionArgs.builder()
.instanceTemplate(appserverGoogleComputeInstanceTemplate.selfLinkUnique())
.build(),
RegionInstanceGroupManagerVersionArgs.builder()
.instanceTemplate(appserver_canary.selfLinkUnique())
.targetSize(RegionInstanceGroupManagerVersionTargetSizeArgs.builder()
.fixed(1)
.build())
.build())
.build());
}
}
resources:
appserver:
type: gcp:compute:RegionInstanceGroupManager
properties:
name: appserver-igm
baseInstanceName: app
region: us-central1
targetSize: 5
versions:
- instanceTemplate: ${appserverGoogleComputeInstanceTemplate.selfLinkUnique}
- instanceTemplate: ${["appserver-canary"].selfLinkUnique}
targetSize:
fixed: 1
With Standby Policy (Google-Beta
Provider)
import * as pulumi from "@pulumi/pulumi";
import * as gcp from "@pulumi/gcp";
const igm_sr = new gcp.compute.RegionInstanceGroupManager("igm-sr", {
name: "tf-sr-igm",
baseInstanceName: "tf-sr-igm-instance",
region: "us-central1",
targetSize: 5,
versions: [{
instanceTemplate: sr_igm.selfLink,
name: "primary",
}],
standbyPolicy: {
initialDelaySec: 50,
mode: "SCALE_OUT_POOL",
},
targetSuspendedSize: 1,
targetStoppedSize: 1,
});
import pulumi
import pulumi_gcp as gcp
igm_sr = gcp.compute.RegionInstanceGroupManager("igm-sr",
name="tf-sr-igm",
base_instance_name="tf-sr-igm-instance",
region="us-central1",
target_size=5,
versions=[{
"instance_template": sr_igm["selfLink"],
"name": "primary",
}],
standby_policy={
"initial_delay_sec": 50,
"mode": "SCALE_OUT_POOL",
},
target_suspended_size=1,
target_stopped_size=1)
package main
import (
"github.com/pulumi/pulumi-gcp/sdk/v8/go/gcp/compute"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := compute.NewRegionInstanceGroupManager(ctx, "igm-sr", &compute.RegionInstanceGroupManagerArgs{
Name: pulumi.String("tf-sr-igm"),
BaseInstanceName: pulumi.String("tf-sr-igm-instance"),
Region: pulumi.String("us-central1"),
TargetSize: pulumi.Int(5),
Versions: compute.RegionInstanceGroupManagerVersionArray{
&compute.RegionInstanceGroupManagerVersionArgs{
InstanceTemplate: pulumi.Any(sr_igm.SelfLink),
Name: pulumi.String("primary"),
},
},
StandbyPolicy: &compute.RegionInstanceGroupManagerStandbyPolicyArgs{
InitialDelaySec: pulumi.Int(50),
Mode: pulumi.String("SCALE_OUT_POOL"),
},
TargetSuspendedSize: pulumi.Int(1),
TargetStoppedSize: 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 igm_sr = new Gcp.Compute.RegionInstanceGroupManager("igm-sr", new()
{
Name = "tf-sr-igm",
BaseInstanceName = "tf-sr-igm-instance",
Region = "us-central1",
TargetSize = 5,
Versions = new[]
{
new Gcp.Compute.Inputs.RegionInstanceGroupManagerVersionArgs
{
InstanceTemplate = sr_igm.SelfLink,
Name = "primary",
},
},
StandbyPolicy = new Gcp.Compute.Inputs.RegionInstanceGroupManagerStandbyPolicyArgs
{
InitialDelaySec = 50,
Mode = "SCALE_OUT_POOL",
},
TargetSuspendedSize = 1,
TargetStoppedSize = 1,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.gcp.compute.RegionInstanceGroupManager;
import com.pulumi.gcp.compute.RegionInstanceGroupManagerArgs;
import com.pulumi.gcp.compute.inputs.RegionInstanceGroupManagerVersionArgs;
import com.pulumi.gcp.compute.inputs.RegionInstanceGroupManagerStandbyPolicyArgs;
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 igm_sr = new RegionInstanceGroupManager("igm-sr", RegionInstanceGroupManagerArgs.builder()
.name("tf-sr-igm")
.baseInstanceName("tf-sr-igm-instance")
.region("us-central1")
.targetSize(5)
.versions(RegionInstanceGroupManagerVersionArgs.builder()
.instanceTemplate(sr_igm.selfLink())
.name("primary")
.build())
.standbyPolicy(RegionInstanceGroupManagerStandbyPolicyArgs.builder()
.initialDelaySec(50)
.mode("SCALE_OUT_POOL")
.build())
.targetSuspendedSize(1)
.targetStoppedSize(1)
.build());
}
}
resources:
igm-sr:
type: gcp:compute:RegionInstanceGroupManager
properties:
name: tf-sr-igm
baseInstanceName: tf-sr-igm-instance
region: us-central1
targetSize: 5
versions:
- instanceTemplate: ${["sr-igm"].selfLink}
name: primary
standbyPolicy:
initialDelaySec: 50
mode: SCALE_OUT_POOL
targetSuspendedSize: 1
targetStoppedSize: 1
Create RegionInstanceGroupManager Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new RegionInstanceGroupManager(name: string, args: RegionInstanceGroupManagerArgs, opts?: CustomResourceOptions);
@overload
def RegionInstanceGroupManager(resource_name: str,
args: RegionInstanceGroupManagerArgs,
opts: Optional[ResourceOptions] = None)
@overload
def RegionInstanceGroupManager(resource_name: str,
opts: Optional[ResourceOptions] = None,
base_instance_name: Optional[str] = None,
versions: Optional[Sequence[RegionInstanceGroupManagerVersionArgs]] = None,
region: Optional[str] = None,
wait_for_instances_status: Optional[str] = None,
all_instances_config: Optional[RegionInstanceGroupManagerAllInstancesConfigArgs] = None,
distribution_policy_zones: Optional[Sequence[str]] = None,
instance_lifecycle_policy: Optional[RegionInstanceGroupManagerInstanceLifecyclePolicyArgs] = None,
list_managed_instances_results: Optional[str] = None,
name: Optional[str] = None,
named_ports: Optional[Sequence[RegionInstanceGroupManagerNamedPortArgs]] = None,
params: Optional[RegionInstanceGroupManagerParamsArgs] = None,
stateful_disks: Optional[Sequence[RegionInstanceGroupManagerStatefulDiskArgs]] = None,
distribution_policy_target_shape: Optional[str] = None,
description: Optional[str] = None,
project: Optional[str] = None,
stateful_external_ips: Optional[Sequence[RegionInstanceGroupManagerStatefulExternalIpArgs]] = None,
stateful_internal_ips: Optional[Sequence[RegionInstanceGroupManagerStatefulInternalIpArgs]] = None,
target_pools: Optional[Sequence[str]] = None,
target_size: Optional[int] = None,
target_stopped_size: Optional[int] = None,
target_suspended_size: Optional[int] = None,
update_policy: Optional[RegionInstanceGroupManagerUpdatePolicyArgs] = None,
auto_healing_policies: Optional[RegionInstanceGroupManagerAutoHealingPoliciesArgs] = None,
wait_for_instances: Optional[bool] = None,
standby_policy: Optional[RegionInstanceGroupManagerStandbyPolicyArgs] = None)
func NewRegionInstanceGroupManager(ctx *Context, name string, args RegionInstanceGroupManagerArgs, opts ...ResourceOption) (*RegionInstanceGroupManager, error)
public RegionInstanceGroupManager(string name, RegionInstanceGroupManagerArgs args, CustomResourceOptions? opts = null)
public RegionInstanceGroupManager(String name, RegionInstanceGroupManagerArgs args)
public RegionInstanceGroupManager(String name, RegionInstanceGroupManagerArgs args, CustomResourceOptions options)
type: gcp:compute:RegionInstanceGroupManager
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args RegionInstanceGroupManagerArgs
- 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 RegionInstanceGroupManagerArgs
- 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 RegionInstanceGroupManagerArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RegionInstanceGroupManagerArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RegionInstanceGroupManagerArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var regionInstanceGroupManagerResource = new Gcp.Compute.RegionInstanceGroupManager("regionInstanceGroupManagerResource", new()
{
BaseInstanceName = "string",
Versions = new[]
{
new Gcp.Compute.Inputs.RegionInstanceGroupManagerVersionArgs
{
InstanceTemplate = "string",
Name = "string",
TargetSize = new Gcp.Compute.Inputs.RegionInstanceGroupManagerVersionTargetSizeArgs
{
Fixed = 0,
Percent = 0,
},
},
},
Region = "string",
WaitForInstancesStatus = "string",
AllInstancesConfig = new Gcp.Compute.Inputs.RegionInstanceGroupManagerAllInstancesConfigArgs
{
Labels =
{
{ "string", "string" },
},
Metadata =
{
{ "string", "string" },
},
},
DistributionPolicyZones = new[]
{
"string",
},
InstanceLifecyclePolicy = new Gcp.Compute.Inputs.RegionInstanceGroupManagerInstanceLifecyclePolicyArgs
{
DefaultActionOnFailure = "string",
ForceUpdateOnRepair = "string",
},
ListManagedInstancesResults = "string",
Name = "string",
NamedPorts = new[]
{
new Gcp.Compute.Inputs.RegionInstanceGroupManagerNamedPortArgs
{
Name = "string",
Port = 0,
},
},
Params = new Gcp.Compute.Inputs.RegionInstanceGroupManagerParamsArgs
{
ResourceManagerTags =
{
{ "string", "string" },
},
},
StatefulDisks = new[]
{
new Gcp.Compute.Inputs.RegionInstanceGroupManagerStatefulDiskArgs
{
DeviceName = "string",
DeleteRule = "string",
},
},
DistributionPolicyTargetShape = "string",
Description = "string",
Project = "string",
StatefulExternalIps = new[]
{
new Gcp.Compute.Inputs.RegionInstanceGroupManagerStatefulExternalIpArgs
{
DeleteRule = "string",
InterfaceName = "string",
},
},
StatefulInternalIps = new[]
{
new Gcp.Compute.Inputs.RegionInstanceGroupManagerStatefulInternalIpArgs
{
DeleteRule = "string",
InterfaceName = "string",
},
},
TargetPools = new[]
{
"string",
},
TargetSize = 0,
TargetStoppedSize = 0,
TargetSuspendedSize = 0,
UpdatePolicy = new Gcp.Compute.Inputs.RegionInstanceGroupManagerUpdatePolicyArgs
{
MinimalAction = "string",
Type = "string",
InstanceRedistributionType = "string",
MaxSurgeFixed = 0,
MaxSurgePercent = 0,
MaxUnavailableFixed = 0,
MaxUnavailablePercent = 0,
MinReadySec = 0,
MostDisruptiveAllowedAction = "string",
ReplacementMethod = "string",
},
AutoHealingPolicies = new Gcp.Compute.Inputs.RegionInstanceGroupManagerAutoHealingPoliciesArgs
{
HealthCheck = "string",
InitialDelaySec = 0,
},
WaitForInstances = false,
StandbyPolicy = new Gcp.Compute.Inputs.RegionInstanceGroupManagerStandbyPolicyArgs
{
InitialDelaySec = 0,
Mode = "string",
},
});
example, err := compute.NewRegionInstanceGroupManager(ctx, "regionInstanceGroupManagerResource", &compute.RegionInstanceGroupManagerArgs{
BaseInstanceName: pulumi.String("string"),
Versions: compute.RegionInstanceGroupManagerVersionArray{
&compute.RegionInstanceGroupManagerVersionArgs{
InstanceTemplate: pulumi.String("string"),
Name: pulumi.String("string"),
TargetSize: &compute.RegionInstanceGroupManagerVersionTargetSizeArgs{
Fixed: pulumi.Int(0),
Percent: pulumi.Int(0),
},
},
},
Region: pulumi.String("string"),
WaitForInstancesStatus: pulumi.String("string"),
AllInstancesConfig: &compute.RegionInstanceGroupManagerAllInstancesConfigArgs{
Labels: pulumi.StringMap{
"string": pulumi.String("string"),
},
Metadata: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
DistributionPolicyZones: pulumi.StringArray{
pulumi.String("string"),
},
InstanceLifecyclePolicy: &compute.RegionInstanceGroupManagerInstanceLifecyclePolicyArgs{
DefaultActionOnFailure: pulumi.String("string"),
ForceUpdateOnRepair: pulumi.String("string"),
},
ListManagedInstancesResults: pulumi.String("string"),
Name: pulumi.String("string"),
NamedPorts: compute.RegionInstanceGroupManagerNamedPortArray{
&compute.RegionInstanceGroupManagerNamedPortArgs{
Name: pulumi.String("string"),
Port: pulumi.Int(0),
},
},
Params: &compute.RegionInstanceGroupManagerParamsArgs{
ResourceManagerTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
},
StatefulDisks: compute.RegionInstanceGroupManagerStatefulDiskArray{
&compute.RegionInstanceGroupManagerStatefulDiskArgs{
DeviceName: pulumi.String("string"),
DeleteRule: pulumi.String("string"),
},
},
DistributionPolicyTargetShape: pulumi.String("string"),
Description: pulumi.String("string"),
Project: pulumi.String("string"),
StatefulExternalIps: compute.RegionInstanceGroupManagerStatefulExternalIpArray{
&compute.RegionInstanceGroupManagerStatefulExternalIpArgs{
DeleteRule: pulumi.String("string"),
InterfaceName: pulumi.String("string"),
},
},
StatefulInternalIps: compute.RegionInstanceGroupManagerStatefulInternalIpArray{
&compute.RegionInstanceGroupManagerStatefulInternalIpArgs{
DeleteRule: pulumi.String("string"),
InterfaceName: pulumi.String("string"),
},
},
TargetPools: pulumi.StringArray{
pulumi.String("string"),
},
TargetSize: pulumi.Int(0),
TargetStoppedSize: pulumi.Int(0),
TargetSuspendedSize: pulumi.Int(0),
UpdatePolicy: &compute.RegionInstanceGroupManagerUpdatePolicyArgs{
MinimalAction: pulumi.String("string"),
Type: pulumi.String("string"),
InstanceRedistributionType: pulumi.String("string"),
MaxSurgeFixed: pulumi.Int(0),
MaxSurgePercent: pulumi.Int(0),
MaxUnavailableFixed: pulumi.Int(0),
MaxUnavailablePercent: pulumi.Int(0),
MinReadySec: pulumi.Int(0),
MostDisruptiveAllowedAction: pulumi.String("string"),
ReplacementMethod: pulumi.String("string"),
},
AutoHealingPolicies: &compute.RegionInstanceGroupManagerAutoHealingPoliciesArgs{
HealthCheck: pulumi.String("string"),
InitialDelaySec: pulumi.Int(0),
},
WaitForInstances: pulumi.Bool(false),
StandbyPolicy: &compute.RegionInstanceGroupManagerStandbyPolicyArgs{
InitialDelaySec: pulumi.Int(0),
Mode: pulumi.String("string"),
},
})
var regionInstanceGroupManagerResource = new RegionInstanceGroupManager("regionInstanceGroupManagerResource", RegionInstanceGroupManagerArgs.builder()
.baseInstanceName("string")
.versions(RegionInstanceGroupManagerVersionArgs.builder()
.instanceTemplate("string")
.name("string")
.targetSize(RegionInstanceGroupManagerVersionTargetSizeArgs.builder()
.fixed(0)
.percent(0)
.build())
.build())
.region("string")
.waitForInstancesStatus("string")
.allInstancesConfig(RegionInstanceGroupManagerAllInstancesConfigArgs.builder()
.labels(Map.of("string", "string"))
.metadata(Map.of("string", "string"))
.build())
.distributionPolicyZones("string")
.instanceLifecyclePolicy(RegionInstanceGroupManagerInstanceLifecyclePolicyArgs.builder()
.defaultActionOnFailure("string")
.forceUpdateOnRepair("string")
.build())
.listManagedInstancesResults("string")
.name("string")
.namedPorts(RegionInstanceGroupManagerNamedPortArgs.builder()
.name("string")
.port(0)
.build())
.params(RegionInstanceGroupManagerParamsArgs.builder()
.resourceManagerTags(Map.of("string", "string"))
.build())
.statefulDisks(RegionInstanceGroupManagerStatefulDiskArgs.builder()
.deviceName("string")
.deleteRule("string")
.build())
.distributionPolicyTargetShape("string")
.description("string")
.project("string")
.statefulExternalIps(RegionInstanceGroupManagerStatefulExternalIpArgs.builder()
.deleteRule("string")
.interfaceName("string")
.build())
.statefulInternalIps(RegionInstanceGroupManagerStatefulInternalIpArgs.builder()
.deleteRule("string")
.interfaceName("string")
.build())
.targetPools("string")
.targetSize(0)
.targetStoppedSize(0)
.targetSuspendedSize(0)
.updatePolicy(RegionInstanceGroupManagerUpdatePolicyArgs.builder()
.minimalAction("string")
.type("string")
.instanceRedistributionType("string")
.maxSurgeFixed(0)
.maxSurgePercent(0)
.maxUnavailableFixed(0)
.maxUnavailablePercent(0)
.minReadySec(0)
.mostDisruptiveAllowedAction("string")
.replacementMethod("string")
.build())
.autoHealingPolicies(RegionInstanceGroupManagerAutoHealingPoliciesArgs.builder()
.healthCheck("string")
.initialDelaySec(0)
.build())
.waitForInstances(false)
.standbyPolicy(RegionInstanceGroupManagerStandbyPolicyArgs.builder()
.initialDelaySec(0)
.mode("string")
.build())
.build());
region_instance_group_manager_resource = gcp.compute.RegionInstanceGroupManager("regionInstanceGroupManagerResource",
base_instance_name="string",
versions=[{
"instanceTemplate": "string",
"name": "string",
"targetSize": {
"fixed": 0,
"percent": 0,
},
}],
region="string",
wait_for_instances_status="string",
all_instances_config={
"labels": {
"string": "string",
},
"metadata": {
"string": "string",
},
},
distribution_policy_zones=["string"],
instance_lifecycle_policy={
"defaultActionOnFailure": "string",
"forceUpdateOnRepair": "string",
},
list_managed_instances_results="string",
name="string",
named_ports=[{
"name": "string",
"port": 0,
}],
params={
"resourceManagerTags": {
"string": "string",
},
},
stateful_disks=[{
"deviceName": "string",
"deleteRule": "string",
}],
distribution_policy_target_shape="string",
description="string",
project="string",
stateful_external_ips=[{
"deleteRule": "string",
"interfaceName": "string",
}],
stateful_internal_ips=[{
"deleteRule": "string",
"interfaceName": "string",
}],
target_pools=["string"],
target_size=0,
target_stopped_size=0,
target_suspended_size=0,
update_policy={
"minimalAction": "string",
"type": "string",
"instanceRedistributionType": "string",
"maxSurgeFixed": 0,
"maxSurgePercent": 0,
"maxUnavailableFixed": 0,
"maxUnavailablePercent": 0,
"minReadySec": 0,
"mostDisruptiveAllowedAction": "string",
"replacementMethod": "string",
},
auto_healing_policies={
"healthCheck": "string",
"initialDelaySec": 0,
},
wait_for_instances=False,
standby_policy={
"initialDelaySec": 0,
"mode": "string",
})
const regionInstanceGroupManagerResource = new gcp.compute.RegionInstanceGroupManager("regionInstanceGroupManagerResource", {
baseInstanceName: "string",
versions: [{
instanceTemplate: "string",
name: "string",
targetSize: {
fixed: 0,
percent: 0,
},
}],
region: "string",
waitForInstancesStatus: "string",
allInstancesConfig: {
labels: {
string: "string",
},
metadata: {
string: "string",
},
},
distributionPolicyZones: ["string"],
instanceLifecyclePolicy: {
defaultActionOnFailure: "string",
forceUpdateOnRepair: "string",
},
listManagedInstancesResults: "string",
name: "string",
namedPorts: [{
name: "string",
port: 0,
}],
params: {
resourceManagerTags: {
string: "string",
},
},
statefulDisks: [{
deviceName: "string",
deleteRule: "string",
}],
distributionPolicyTargetShape: "string",
description: "string",
project: "string",
statefulExternalIps: [{
deleteRule: "string",
interfaceName: "string",
}],
statefulInternalIps: [{
deleteRule: "string",
interfaceName: "string",
}],
targetPools: ["string"],
targetSize: 0,
targetStoppedSize: 0,
targetSuspendedSize: 0,
updatePolicy: {
minimalAction: "string",
type: "string",
instanceRedistributionType: "string",
maxSurgeFixed: 0,
maxSurgePercent: 0,
maxUnavailableFixed: 0,
maxUnavailablePercent: 0,
minReadySec: 0,
mostDisruptiveAllowedAction: "string",
replacementMethod: "string",
},
autoHealingPolicies: {
healthCheck: "string",
initialDelaySec: 0,
},
waitForInstances: false,
standbyPolicy: {
initialDelaySec: 0,
mode: "string",
},
});
type: gcp:compute:RegionInstanceGroupManager
properties:
allInstancesConfig:
labels:
string: string
metadata:
string: string
autoHealingPolicies:
healthCheck: string
initialDelaySec: 0
baseInstanceName: string
description: string
distributionPolicyTargetShape: string
distributionPolicyZones:
- string
instanceLifecyclePolicy:
defaultActionOnFailure: string
forceUpdateOnRepair: string
listManagedInstancesResults: string
name: string
namedPorts:
- name: string
port: 0
params:
resourceManagerTags:
string: string
project: string
region: string
standbyPolicy:
initialDelaySec: 0
mode: string
statefulDisks:
- deleteRule: string
deviceName: string
statefulExternalIps:
- deleteRule: string
interfaceName: string
statefulInternalIps:
- deleteRule: string
interfaceName: string
targetPools:
- string
targetSize: 0
targetStoppedSize: 0
targetSuspendedSize: 0
updatePolicy:
instanceRedistributionType: string
maxSurgeFixed: 0
maxSurgePercent: 0
maxUnavailableFixed: 0
maxUnavailablePercent: 0
minReadySec: 0
minimalAction: string
mostDisruptiveAllowedAction: string
replacementMethod: string
type: string
versions:
- instanceTemplate: string
name: string
targetSize:
fixed: 0
percent: 0
waitForInstances: false
waitForInstancesStatus: string
RegionInstanceGroupManager 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 RegionInstanceGroupManager resource accepts the following input properties:
- Base
Instance stringName - 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<Region
Instance Group Manager Version> - 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 RegionConfig Instance Group Manager All Instances Config - 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 RegionPolicies Instance Group Manager Auto Healing Policies - 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.
- Distribution
Policy stringTarget Shape - The shape to which the group converges either proactively or on resize events (depending on the value set in update_policy.0.instance_redistribution_type). For more information see the official documentation.
- Distribution
Policy List<string>Zones - The distribution policy for this managed instance group. You can specify one or more values. For more information, see the official documentation.
- Instance
Lifecycle RegionPolicy Instance Group Manager Instance Lifecycle Policy - The instance lifecycle policy for this managed instance group.
- List
Managed stringInstances Results - Pagination behavior of the
listManagedInstances
API method for this managed instance group. Valid values are:PAGELESS
,PAGINATED
. IfPAGELESS
(default), Pagination is disabled for the group'slistManagedInstances
API method.maxResults
andpageToken
query parameters are ignored and all instances are returned in a single response. IfPAGINATED
, pagination is enabled,maxResults
andpageToken
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.
- Named
Ports List<RegionInstance Group Manager Named Port> - The named port configuration. See the section below for details on configuration.
- Params
Region
Instance Group Manager Params - Input only additional params for instance group manager creation. Structure is documented below. For more information, see API.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Region string
- The region where the managed instance group resides. If not provided, the provider region is used.
- Standby
Policy RegionInstance Group Manager Standby Policy - The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the official documentation and API
- Stateful
Disks List<RegionInstance Group Manager Stateful Disk> - 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. Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the
update_policy
. - Stateful
External List<RegionIps Instance Group Manager Stateful External Ip> - 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 List<RegionIps Instance Group Manager Stateful Internal Ip> - 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 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.
- 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.
- Target
Stopped intSize - The target number of stopped instances for this managed instance group.
- Target
Suspended intSize - The target number of suspended instances for this managed instance group.
- Update
Policy RegionInstance Group Manager Update Policy - The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API
- Wait
For boolInstances - 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, the provider will continue trying until it times out.
- Wait
For stringInstances Status - When used with
wait_for_instances
it specifies the status to wait for. WhenSTABLE
is specified this resource will wait until the instances are stable before returning. WhenUPDATED
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 areSTABLE
andUPDATED
- Base
Instance stringName - 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
[]Region
Instance Group Manager Version Args - 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 RegionConfig Instance Group Manager All Instances Config Args - 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 RegionPolicies Instance Group Manager Auto Healing Policies Args - 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.
- Distribution
Policy stringTarget Shape - The shape to which the group converges either proactively or on resize events (depending on the value set in update_policy.0.instance_redistribution_type). For more information see the official documentation.
- Distribution
Policy []stringZones - The distribution policy for this managed instance group. You can specify one or more values. For more information, see the official documentation.
- Instance
Lifecycle RegionPolicy Instance Group Manager Instance Lifecycle Policy Args - The instance lifecycle policy for this managed instance group.
- List
Managed stringInstances Results - Pagination behavior of the
listManagedInstances
API method for this managed instance group. Valid values are:PAGELESS
,PAGINATED
. IfPAGELESS
(default), Pagination is disabled for the group'slistManagedInstances
API method.maxResults
andpageToken
query parameters are ignored and all instances are returned in a single response. IfPAGINATED
, pagination is enabled,maxResults
andpageToken
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.
- Named
Ports []RegionInstance Group Manager Named Port Args - The named port configuration. See the section below for details on configuration.
- Params
Region
Instance Group Manager Params Args - Input only additional params for instance group manager creation. Structure is documented below. For more information, see API.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Region string
- The region where the managed instance group resides. If not provided, the provider region is used.
- Standby
Policy RegionInstance Group Manager Standby Policy Args - The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the official documentation and API
- Stateful
Disks []RegionInstance Group Manager Stateful Disk Args - 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. Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the
update_policy
. - Stateful
External []RegionIps Instance Group Manager Stateful External Ip Args - 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 []RegionIps Instance Group Manager Stateful Internal Ip Args - 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 []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.
- 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.
- Target
Stopped intSize - The target number of stopped instances for this managed instance group.
- Target
Suspended intSize - The target number of suspended instances for this managed instance group.
- Update
Policy RegionInstance Group Manager Update Policy Args - The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API
- Wait
For boolInstances - 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, the provider will continue trying until it times out.
- Wait
For stringInstances Status - When used with
wait_for_instances
it specifies the status to wait for. WhenSTABLE
is specified this resource will wait until the instances are stable before returning. WhenUPDATED
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 areSTABLE
andUPDATED
- base
Instance StringName - 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<Region
Instance Group Manager Version> - 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 RegionConfig Instance Group Manager All Instances Config - 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 RegionPolicies Instance Group Manager Auto Healing Policies - 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.
- distribution
Policy StringTarget Shape - The shape to which the group converges either proactively or on resize events (depending on the value set in update_policy.0.instance_redistribution_type). For more information see the official documentation.
- distribution
Policy List<String>Zones - The distribution policy for this managed instance group. You can specify one or more values. For more information, see the official documentation.
- instance
Lifecycle RegionPolicy Instance Group Manager Instance Lifecycle Policy - The instance lifecycle policy for this managed instance group.
- list
Managed StringInstances Results - Pagination behavior of the
listManagedInstances
API method for this managed instance group. Valid values are:PAGELESS
,PAGINATED
. IfPAGELESS
(default), Pagination is disabled for the group'slistManagedInstances
API method.maxResults
andpageToken
query parameters are ignored and all instances are returned in a single response. IfPAGINATED
, pagination is enabled,maxResults
andpageToken
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.
- named
Ports List<RegionInstance Group Manager Named Port> - The named port configuration. See the section below for details on configuration.
- params
Region
Instance Group Manager Params - Input only additional params for instance group manager creation. Structure is documented below. For more information, see API.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region String
- The region where the managed instance group resides. If not provided, the provider region is used.
- standby
Policy RegionInstance Group Manager Standby Policy - The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the official documentation and API
- stateful
Disks List<RegionInstance Group Manager Stateful Disk> - 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. Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the
update_policy
. - stateful
External List<RegionIps Instance Group Manager Stateful External Ip> - 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 List<RegionIps Instance Group Manager Stateful Internal Ip> - 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 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.
- target
Size 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.
- target
Stopped IntegerSize - The target number of stopped instances for this managed instance group.
- target
Suspended IntegerSize - The target number of suspended instances for this managed instance group.
- update
Policy RegionInstance Group Manager Update Policy - The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API
- wait
For BooleanInstances - 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, the provider will continue trying until it times out.
- wait
For StringInstances Status - When used with
wait_for_instances
it specifies the status to wait for. WhenSTABLE
is specified this resource will wait until the instances are stable before returning. WhenUPDATED
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 areSTABLE
andUPDATED
- base
Instance stringName - 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
Region
Instance Group Manager Version[] - 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 RegionConfig Instance Group Manager All Instances Config - 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 RegionPolicies Instance Group Manager Auto Healing Policies - 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.
- distribution
Policy stringTarget Shape - The shape to which the group converges either proactively or on resize events (depending on the value set in update_policy.0.instance_redistribution_type). For more information see the official documentation.
- distribution
Policy string[]Zones - The distribution policy for this managed instance group. You can specify one or more values. For more information, see the official documentation.
- instance
Lifecycle RegionPolicy Instance Group Manager Instance Lifecycle Policy - The instance lifecycle policy for this managed instance group.
- list
Managed stringInstances Results - Pagination behavior of the
listManagedInstances
API method for this managed instance group. Valid values are:PAGELESS
,PAGINATED
. IfPAGELESS
(default), Pagination is disabled for the group'slistManagedInstances
API method.maxResults
andpageToken
query parameters are ignored and all instances are returned in a single response. IfPAGINATED
, pagination is enabled,maxResults
andpageToken
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.
- named
Ports RegionInstance Group Manager Named Port[] - The named port configuration. See the section below for details on configuration.
- params
Region
Instance Group Manager Params - Input only additional params for instance group manager creation. Structure is documented below. For more information, see API.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region string
- The region where the managed instance group resides. If not provided, the provider region is used.
- standby
Policy RegionInstance Group Manager Standby Policy - The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the official documentation and API
- stateful
Disks RegionInstance Group Manager Stateful Disk[] - 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. Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the
update_policy
. - stateful
External RegionIps Instance Group Manager Stateful External Ip[] - 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 RegionIps Instance Group Manager Stateful Internal Ip[] - 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 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.
- target
Size 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.
- target
Stopped numberSize - The target number of stopped instances for this managed instance group.
- target
Suspended numberSize - The target number of suspended instances for this managed instance group.
- update
Policy RegionInstance Group Manager Update Policy - The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API
- wait
For booleanInstances - 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, the provider will continue trying until it times out.
- wait
For stringInstances Status - When used with
wait_for_instances
it specifies the status to wait for. WhenSTABLE
is specified this resource will wait until the instances are stable before returning. WhenUPDATED
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 areSTABLE
andUPDATED
- base_
instance_ strname - 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[Region
Instance Group Manager Version Args] - 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_ Regionconfig Instance Group Manager All Instances Config Args - 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_ Regionpolicies Instance Group Manager Auto Healing Policies Args - 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.
- distribution_
policy_ strtarget_ shape - The shape to which the group converges either proactively or on resize events (depending on the value set in update_policy.0.instance_redistribution_type). For more information see the official documentation.
- distribution_
policy_ Sequence[str]zones - The distribution policy for this managed instance group. You can specify one or more values. For more information, see the official documentation.
- instance_
lifecycle_ Regionpolicy Instance Group Manager Instance Lifecycle Policy Args - The instance lifecycle policy for this managed instance group.
- list_
managed_ strinstances_ results - Pagination behavior of the
listManagedInstances
API method for this managed instance group. Valid values are:PAGELESS
,PAGINATED
. IfPAGELESS
(default), Pagination is disabled for the group'slistManagedInstances
API method.maxResults
andpageToken
query parameters are ignored and all instances are returned in a single response. IfPAGINATED
, pagination is enabled,maxResults
andpageToken
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[RegionInstance Group Manager Named Port Args] - The named port configuration. See the section below for details on configuration.
- params
Region
Instance Group Manager Params Args - Input only additional params for instance group manager creation. Structure is documented below. For more information, see API.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region str
- The region where the managed instance group resides. If not provided, the provider region is used.
- standby_
policy RegionInstance Group Manager Standby Policy Args - The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the official documentation and API
- stateful_
disks Sequence[RegionInstance Group Manager Stateful Disk Args] - 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. Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the
update_policy
. - stateful_
external_ Sequence[Regionips Instance Group Manager Stateful External Ip Args] - 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_ Sequence[Regionips Instance Group Manager Stateful Internal Ip Args] - 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.
- target_
stopped_ intsize - The target number of stopped instances for this managed instance group.
- target_
suspended_ intsize - The target number of suspended instances for this managed instance group.
- update_
policy RegionInstance Group Manager Update Policy Args - The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API
- wait_
for_ boolinstances - 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, the provider will continue trying until it times out.
- wait_
for_ strinstances_ status - When used with
wait_for_instances
it specifies the status to wait for. WhenSTABLE
is specified this resource will wait until the instances are stable before returning. WhenUPDATED
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 areSTABLE
andUPDATED
- base
Instance StringName - 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.
- all
Instances Property MapConfig - 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 Property MapPolicies - 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.
- distribution
Policy StringTarget Shape - The shape to which the group converges either proactively or on resize events (depending on the value set in update_policy.0.instance_redistribution_type). For more information see the official documentation.
- distribution
Policy List<String>Zones - The distribution policy for this managed instance group. You can specify one or more values. For more information, see the official documentation.
- instance
Lifecycle Property MapPolicy - The instance lifecycle policy for this managed instance group.
- list
Managed StringInstances Results - Pagination behavior of the
listManagedInstances
API method for this managed instance group. Valid values are:PAGELESS
,PAGINATED
. IfPAGELESS
(default), Pagination is disabled for the group'slistManagedInstances
API method.maxResults
andpageToken
query parameters are ignored and all instances are returned in a single response. IfPAGINATED
, pagination is enabled,maxResults
andpageToken
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.
- named
Ports List<Property Map> - The named port configuration. See the section below for details on configuration.
- params Property Map
- Input only additional params for instance group manager creation. Structure is documented below. For more information, see API.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region String
- The region where the managed instance group resides. If not provided, the provider region is used.
- standby
Policy Property Map - The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the official documentation and API
- stateful
Disks 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. Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the
update_policy
. - stateful
External List<Property Map>Ips - 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 List<Property Map>Ips - 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 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.
- target
Size 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.
- target
Stopped NumberSize - The target number of stopped instances for this managed instance group.
- target
Suspended NumberSize - The target number of suspended instances for this managed instance group.
- update
Policy Property Map - The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API
- wait
For BooleanInstances - 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, the provider will continue trying until it times out.
- wait
For StringInstances Status - When used with
wait_for_instances
it specifies the status to wait for. WhenSTABLE
is specified this resource will wait until the instances are stable before returning. WhenUPDATED
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 areSTABLE
andUPDATED
Outputs
All input properties are implicitly available as output properties. Additionally, the RegionInstanceGroupManager resource produces the following output properties:
- Creation
Timestamp 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.
- Instance
Group string - The full URL of the instance group created by the manager.
- Self
Link string - The URL of the created resource.
- Statuses
List<Region
Instance Group Manager Status> - The status of this managed instance group.
- Creation
Timestamp 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.
- Instance
Group string - The full URL of the instance group created by the manager.
- Self
Link string - The URL of the created resource.
- Statuses
[]Region
Instance Group Manager Status - The status of this managed instance group.
- creation
Timestamp 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.
- instance
Group String - The full URL of the instance group created by the manager.
- self
Link String - The URL of the created resource.
- statuses
List<Region
Instance Group Manager Status> - The status of this managed instance group.
- creation
Timestamp 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.
- instance
Group string - The full URL of the instance group created by the manager.
- self
Link string - The URL of the created resource.
- statuses
Region
Instance Group Manager Status[] - 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.
- self_
link str - The URL of the created resource.
- statuses
Sequence[Region
Instance Group Manager Status] - The status of this managed instance group.
- creation
Timestamp 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.
- instance
Group String - The full URL of the instance group created by the manager.
- self
Link String - The URL of the created resource.
- statuses List<Property Map>
- The status of this managed instance group.
Look up Existing RegionInstanceGroupManager Resource
Get an existing RegionInstanceGroupManager 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?: RegionInstanceGroupManagerState, opts?: CustomResourceOptions): RegionInstanceGroupManager
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
all_instances_config: Optional[RegionInstanceGroupManagerAllInstancesConfigArgs] = None,
auto_healing_policies: Optional[RegionInstanceGroupManagerAutoHealingPoliciesArgs] = None,
base_instance_name: Optional[str] = None,
creation_timestamp: Optional[str] = None,
description: Optional[str] = None,
distribution_policy_target_shape: Optional[str] = None,
distribution_policy_zones: Optional[Sequence[str]] = None,
fingerprint: Optional[str] = None,
instance_group: Optional[str] = None,
instance_lifecycle_policy: Optional[RegionInstanceGroupManagerInstanceLifecyclePolicyArgs] = None,
list_managed_instances_results: Optional[str] = None,
name: Optional[str] = None,
named_ports: Optional[Sequence[RegionInstanceGroupManagerNamedPortArgs]] = None,
params: Optional[RegionInstanceGroupManagerParamsArgs] = None,
project: Optional[str] = None,
region: Optional[str] = None,
self_link: Optional[str] = None,
standby_policy: Optional[RegionInstanceGroupManagerStandbyPolicyArgs] = None,
stateful_disks: Optional[Sequence[RegionInstanceGroupManagerStatefulDiskArgs]] = None,
stateful_external_ips: Optional[Sequence[RegionInstanceGroupManagerStatefulExternalIpArgs]] = None,
stateful_internal_ips: Optional[Sequence[RegionInstanceGroupManagerStatefulInternalIpArgs]] = None,
statuses: Optional[Sequence[RegionInstanceGroupManagerStatusArgs]] = None,
target_pools: Optional[Sequence[str]] = None,
target_size: Optional[int] = None,
target_stopped_size: Optional[int] = None,
target_suspended_size: Optional[int] = None,
update_policy: Optional[RegionInstanceGroupManagerUpdatePolicyArgs] = None,
versions: Optional[Sequence[RegionInstanceGroupManagerVersionArgs]] = None,
wait_for_instances: Optional[bool] = None,
wait_for_instances_status: Optional[str] = None) -> RegionInstanceGroupManager
func GetRegionInstanceGroupManager(ctx *Context, name string, id IDInput, state *RegionInstanceGroupManagerState, opts ...ResourceOption) (*RegionInstanceGroupManager, error)
public static RegionInstanceGroupManager Get(string name, Input<string> id, RegionInstanceGroupManagerState? state, CustomResourceOptions? opts = null)
public static RegionInstanceGroupManager get(String name, Output<String> id, RegionInstanceGroupManagerState 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.
- All
Instances RegionConfig Instance Group Manager All Instances Config - 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 RegionPolicies Instance Group Manager Auto Healing Policies - 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 stringName - 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 string - Creation timestamp in RFC3339 text format.
- Description string
- An optional textual description of the instance group manager.
- Distribution
Policy stringTarget Shape - The shape to which the group converges either proactively or on resize events (depending on the value set in update_policy.0.instance_redistribution_type). For more information see the official documentation.
- Distribution
Policy List<string>Zones - The distribution policy for this managed instance group. You can specify one or more values. For more information, see the official documentation.
- Fingerprint string
- The fingerprint of the instance group manager.
- Instance
Group string - The full URL of the instance group created by the manager.
- Instance
Lifecycle RegionPolicy Instance Group Manager Instance Lifecycle Policy - The instance lifecycle policy for this managed instance group.
- List
Managed stringInstances Results - Pagination behavior of the
listManagedInstances
API method for this managed instance group. Valid values are:PAGELESS
,PAGINATED
. IfPAGELESS
(default), Pagination is disabled for the group'slistManagedInstances
API method.maxResults
andpageToken
query parameters are ignored and all instances are returned in a single response. IfPAGINATED
, pagination is enabled,maxResults
andpageToken
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.
- Named
Ports List<RegionInstance Group Manager Named Port> - The named port configuration. See the section below for details on configuration.
- Params
Region
Instance Group Manager Params - Input only additional params for instance group manager creation. Structure is documented below. For more information, see API.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Region string
- The region where the managed instance group resides. If not provided, the provider region is used.
- Self
Link string - The URL of the created resource.
- Standby
Policy RegionInstance Group Manager Standby Policy - The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the official documentation and API
- Stateful
Disks List<RegionInstance Group Manager Stateful Disk> - 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. Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the
update_policy
. - Stateful
External List<RegionIps Instance Group Manager Stateful External Ip> - 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 List<RegionIps Instance Group Manager Stateful Internal Ip> - 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<Region
Instance Group Manager Status> - The status of this managed instance group.
- Target
Pools 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.
- 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.
- Target
Stopped intSize - The target number of stopped instances for this managed instance group.
- Target
Suspended intSize - The target number of suspended instances for this managed instance group.
- Update
Policy RegionInstance Group Manager Update Policy - The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API
- Versions
List<Region
Instance Group Manager Version> - 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 boolInstances - 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, the provider will continue trying until it times out.
- Wait
For stringInstances Status - When used with
wait_for_instances
it specifies the status to wait for. WhenSTABLE
is specified this resource will wait until the instances are stable before returning. WhenUPDATED
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 areSTABLE
andUPDATED
- All
Instances RegionConfig Instance Group Manager All Instances Config Args - 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 RegionPolicies Instance Group Manager Auto Healing Policies Args - 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 stringName - 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 string - Creation timestamp in RFC3339 text format.
- Description string
- An optional textual description of the instance group manager.
- Distribution
Policy stringTarget Shape - The shape to which the group converges either proactively or on resize events (depending on the value set in update_policy.0.instance_redistribution_type). For more information see the official documentation.
- Distribution
Policy []stringZones - The distribution policy for this managed instance group. You can specify one or more values. For more information, see the official documentation.
- Fingerprint string
- The fingerprint of the instance group manager.
- Instance
Group string - The full URL of the instance group created by the manager.
- Instance
Lifecycle RegionPolicy Instance Group Manager Instance Lifecycle Policy Args - The instance lifecycle policy for this managed instance group.
- List
Managed stringInstances Results - Pagination behavior of the
listManagedInstances
API method for this managed instance group. Valid values are:PAGELESS
,PAGINATED
. IfPAGELESS
(default), Pagination is disabled for the group'slistManagedInstances
API method.maxResults
andpageToken
query parameters are ignored and all instances are returned in a single response. IfPAGINATED
, pagination is enabled,maxResults
andpageToken
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.
- Named
Ports []RegionInstance Group Manager Named Port Args - The named port configuration. See the section below for details on configuration.
- Params
Region
Instance Group Manager Params Args - Input only additional params for instance group manager creation. Structure is documented below. For more information, see API.
- Project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- Region string
- The region where the managed instance group resides. If not provided, the provider region is used.
- Self
Link string - The URL of the created resource.
- Standby
Policy RegionInstance Group Manager Standby Policy Args - The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the official documentation and API
- Stateful
Disks []RegionInstance Group Manager Stateful Disk Args - 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. Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the
update_policy
. - Stateful
External []RegionIps Instance Group Manager Stateful External Ip Args - 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 []RegionIps Instance Group Manager Stateful Internal Ip Args - 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
[]Region
Instance Group Manager Status Args - The status of this managed instance group.
- Target
Pools []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.
- 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.
- Target
Stopped intSize - The target number of stopped instances for this managed instance group.
- Target
Suspended intSize - The target number of suspended instances for this managed instance group.
- Update
Policy RegionInstance Group Manager Update Policy Args - The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API
- Versions
[]Region
Instance Group Manager Version Args - 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 boolInstances - 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, the provider will continue trying until it times out.
- Wait
For stringInstances Status - When used with
wait_for_instances
it specifies the status to wait for. WhenSTABLE
is specified this resource will wait until the instances are stable before returning. WhenUPDATED
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 areSTABLE
andUPDATED
- all
Instances RegionConfig Instance Group Manager All Instances Config - 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 RegionPolicies Instance Group Manager Auto Healing Policies - 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 StringName - 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 String - Creation timestamp in RFC3339 text format.
- description String
- An optional textual description of the instance group manager.
- distribution
Policy StringTarget Shape - The shape to which the group converges either proactively or on resize events (depending on the value set in update_policy.0.instance_redistribution_type). For more information see the official documentation.
- distribution
Policy List<String>Zones - The distribution policy for this managed instance group. You can specify one or more values. For more information, see the official documentation.
- fingerprint String
- The fingerprint of the instance group manager.
- instance
Group String - The full URL of the instance group created by the manager.
- instance
Lifecycle RegionPolicy Instance Group Manager Instance Lifecycle Policy - The instance lifecycle policy for this managed instance group.
- list
Managed StringInstances Results - Pagination behavior of the
listManagedInstances
API method for this managed instance group. Valid values are:PAGELESS
,PAGINATED
. IfPAGELESS
(default), Pagination is disabled for the group'slistManagedInstances
API method.maxResults
andpageToken
query parameters are ignored and all instances are returned in a single response. IfPAGINATED
, pagination is enabled,maxResults
andpageToken
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.
- named
Ports List<RegionInstance Group Manager Named Port> - The named port configuration. See the section below for details on configuration.
- params
Region
Instance Group Manager Params - Input only additional params for instance group manager creation. Structure is documented below. For more information, see API.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region String
- The region where the managed instance group resides. If not provided, the provider region is used.
- self
Link String - The URL of the created resource.
- standby
Policy RegionInstance Group Manager Standby Policy - The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the official documentation and API
- stateful
Disks List<RegionInstance Group Manager Stateful Disk> - 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. Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the
update_policy
. - stateful
External List<RegionIps Instance Group Manager Stateful External Ip> - 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 List<RegionIps Instance Group Manager Stateful Internal Ip> - 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<Region
Instance Group Manager Status> - The status of this managed instance group.
- target
Pools 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.
- target
Size 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.
- target
Stopped IntegerSize - The target number of stopped instances for this managed instance group.
- target
Suspended IntegerSize - The target number of suspended instances for this managed instance group.
- update
Policy RegionInstance Group Manager Update Policy - The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API
- versions
List<Region
Instance Group Manager Version> - 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 BooleanInstances - 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, the provider will continue trying until it times out.
- wait
For StringInstances Status - When used with
wait_for_instances
it specifies the status to wait for. WhenSTABLE
is specified this resource will wait until the instances are stable before returning. WhenUPDATED
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 areSTABLE
andUPDATED
- all
Instances RegionConfig Instance Group Manager All Instances Config - 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 RegionPolicies Instance Group Manager Auto Healing Policies - 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 stringName - 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 string - Creation timestamp in RFC3339 text format.
- description string
- An optional textual description of the instance group manager.
- distribution
Policy stringTarget Shape - The shape to which the group converges either proactively or on resize events (depending on the value set in update_policy.0.instance_redistribution_type). For more information see the official documentation.
- distribution
Policy string[]Zones - The distribution policy for this managed instance group. You can specify one or more values. For more information, see the official documentation.
- fingerprint string
- The fingerprint of the instance group manager.
- instance
Group string - The full URL of the instance group created by the manager.
- instance
Lifecycle RegionPolicy Instance Group Manager Instance Lifecycle Policy - The instance lifecycle policy for this managed instance group.
- list
Managed stringInstances Results - Pagination behavior of the
listManagedInstances
API method for this managed instance group. Valid values are:PAGELESS
,PAGINATED
. IfPAGELESS
(default), Pagination is disabled for the group'slistManagedInstances
API method.maxResults
andpageToken
query parameters are ignored and all instances are returned in a single response. IfPAGINATED
, pagination is enabled,maxResults
andpageToken
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.
- named
Ports RegionInstance Group Manager Named Port[] - The named port configuration. See the section below for details on configuration.
- params
Region
Instance Group Manager Params - Input only additional params for instance group manager creation. Structure is documented below. For more information, see API.
- project string
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region string
- The region where the managed instance group resides. If not provided, the provider region is used.
- self
Link string - The URL of the created resource.
- standby
Policy RegionInstance Group Manager Standby Policy - The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the official documentation and API
- stateful
Disks RegionInstance Group Manager Stateful Disk[] - 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. Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the
update_policy
. - stateful
External RegionIps Instance Group Manager Stateful External Ip[] - 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 RegionIps Instance Group Manager Stateful Internal Ip[] - 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
Region
Instance Group Manager Status[] - The status of this managed instance group.
- target
Pools 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.
- target
Size 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.
- target
Stopped numberSize - The target number of stopped instances for this managed instance group.
- target
Suspended numberSize - The target number of suspended instances for this managed instance group.
- update
Policy RegionInstance Group Manager Update Policy - The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API
- versions
Region
Instance Group Manager Version[] - 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 booleanInstances - 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, the provider will continue trying until it times out.
- wait
For stringInstances Status - When used with
wait_for_instances
it specifies the status to wait for. WhenSTABLE
is specified this resource will wait until the instances are stable before returning. WhenUPDATED
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 areSTABLE
andUPDATED
- all_
instances_ Regionconfig Instance Group Manager All Instances Config Args - 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_ Regionpolicies Instance Group Manager Auto Healing Policies Args - 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_ strname - 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.
- distribution_
policy_ strtarget_ shape - The shape to which the group converges either proactively or on resize events (depending on the value set in update_policy.0.instance_redistribution_type). For more information see the official documentation.
- distribution_
policy_ Sequence[str]zones - The distribution policy for this managed instance group. You can specify one or more values. For more information, see the official documentation.
- 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_ Regionpolicy Instance Group Manager Instance Lifecycle Policy Args - The instance lifecycle policy for this managed instance group.
- list_
managed_ strinstances_ results - Pagination behavior of the
listManagedInstances
API method for this managed instance group. Valid values are:PAGELESS
,PAGINATED
. IfPAGELESS
(default), Pagination is disabled for the group'slistManagedInstances
API method.maxResults
andpageToken
query parameters are ignored and all instances are returned in a single response. IfPAGINATED
, pagination is enabled,maxResults
andpageToken
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[RegionInstance Group Manager Named Port Args] - The named port configuration. See the section below for details on configuration.
- params
Region
Instance Group Manager Params Args - Input only additional params for instance group manager creation. Structure is documented below. For more information, see API.
- project str
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region str
- The region where the managed instance group resides. If not provided, the provider region is used.
- self_
link str - The URL of the created resource.
- standby_
policy RegionInstance Group Manager Standby Policy Args - The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the official documentation and API
- stateful_
disks Sequence[RegionInstance Group Manager Stateful Disk Args] - 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. Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the
update_policy
. - stateful_
external_ Sequence[Regionips Instance Group Manager Stateful External Ip Args] - 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_ Sequence[Regionips Instance Group Manager Stateful Internal Ip Args] - 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[Region
Instance Group Manager Status Args] - 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.
- target_
stopped_ intsize - The target number of stopped instances for this managed instance group.
- target_
suspended_ intsize - The target number of suspended instances for this managed instance group.
- update_
policy RegionInstance Group Manager Update Policy Args - The update policy for this managed instance group. Structure is documented below. For more information, see the official documentation and API
- versions
Sequence[Region
Instance Group Manager Version Args] - 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_ boolinstances - 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, the provider will continue trying until it times out.
- wait_
for_ strinstances_ status - When used with
wait_for_instances
it specifies the status to wait for. WhenSTABLE
is specified this resource will wait until the instances are stable before returning. WhenUPDATED
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 areSTABLE
andUPDATED
- all
Instances Property MapConfig - 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 Property MapPolicies - 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 StringName - 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 String - Creation timestamp in RFC3339 text format.
- description String
- An optional textual description of the instance group manager.
- distribution
Policy StringTarget Shape - The shape to which the group converges either proactively or on resize events (depending on the value set in update_policy.0.instance_redistribution_type). For more information see the official documentation.
- distribution
Policy List<String>Zones - The distribution policy for this managed instance group. You can specify one or more values. For more information, see the official documentation.
- fingerprint String
- The fingerprint of the instance group manager.
- instance
Group String - The full URL of the instance group created by the manager.
- instance
Lifecycle Property MapPolicy - The instance lifecycle policy for this managed instance group.
- list
Managed StringInstances Results - Pagination behavior of the
listManagedInstances
API method for this managed instance group. Valid values are:PAGELESS
,PAGINATED
. IfPAGELESS
(default), Pagination is disabled for the group'slistManagedInstances
API method.maxResults
andpageToken
query parameters are ignored and all instances are returned in a single response. IfPAGINATED
, pagination is enabled,maxResults
andpageToken
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.
- named
Ports List<Property Map> - The named port configuration. See the section below for details on configuration.
- params Property Map
- Input only additional params for instance group manager creation. Structure is documented below. For more information, see API.
- project String
- The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
- region String
- The region where the managed instance group resides. If not provided, the provider region is used.
- self
Link String - The URL of the created resource.
- standby
Policy Property Map - The standby policy for stopped and suspended instances. Structure is documented below. For more information, see the official documentation and API
- stateful
Disks 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. Proactive cross zone instance redistribution must be disabled before you can update stateful disks on existing instance group managers. This can be controlled via the
update_policy
. - stateful
External List<Property Map>Ips - 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 List<Property Map>Ips - 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.
- target
Pools 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.
- target
Size 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.
- target
Stopped NumberSize - The target number of stopped instances for this managed instance group.
- target
Suspended NumberSize - The target number of suspended instances for this managed instance group.
- update
Policy 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.
- wait
For BooleanInstances - 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, the provider will continue trying until it times out.
- wait
For StringInstances Status - When used with
wait_for_instances
it specifies the status to wait for. WhenSTABLE
is specified this resource will wait until the instances are stable before returning. WhenUPDATED
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 areSTABLE
andUPDATED
Supporting Types
RegionInstanceGroupManagerAllInstancesConfig, RegionInstanceGroupManagerAllInstancesConfigArgs
- 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.
RegionInstanceGroupManagerAutoHealingPolicies, RegionInstanceGroupManagerAutoHealingPoliciesArgs
- Health
Check string - The health check resource that signals autohealing.
- Initial
Delay intSec - 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 string - The health check resource that signals autohealing.
- Initial
Delay intSec - 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 String - The health check resource that signals autohealing.
- initial
Delay IntegerSec - 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 string - The health check resource that signals autohealing.
- initial
Delay numberSec - 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_ intsec - 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 String - The health check resource that signals autohealing.
- initial
Delay NumberSec - 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.
RegionInstanceGroupManagerInstanceLifecyclePolicy, RegionInstanceGroupManagerInstanceLifecyclePolicyArgs
- Default
Action stringOn Failure - , Default behavior for all instance or health check failures. Valid options are:
REPAIR
,DO_NOTHING
. IfDO_NOTHING
then instances will not be repaired. IfREPAIR
(default), then failed instances will be repaired. - Force
Update stringOn Repair - , Specifies whether to apply the group's latest configuration when repairing a VM. Valid options are:
YES
,NO
. IfYES
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. IfNO
(default), then updates are applied in accordance with the group's update policy type.
- Default
Action stringOn Failure - , Default behavior for all instance or health check failures. Valid options are:
REPAIR
,DO_NOTHING
. IfDO_NOTHING
then instances will not be repaired. IfREPAIR
(default), then failed instances will be repaired. - Force
Update stringOn Repair - , Specifies whether to apply the group's latest configuration when repairing a VM. Valid options are:
YES
,NO
. IfYES
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. IfNO
(default), then updates are applied in accordance with the group's update policy type.
- default
Action StringOn Failure - , Default behavior for all instance or health check failures. Valid options are:
REPAIR
,DO_NOTHING
. IfDO_NOTHING
then instances will not be repaired. IfREPAIR
(default), then failed instances will be repaired. - force
Update StringOn Repair - , Specifies whether to apply the group's latest configuration when repairing a VM. Valid options are:
YES
,NO
. IfYES
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. IfNO
(default), then updates are applied in accordance with the group's update policy type.
- default
Action stringOn Failure - , Default behavior for all instance or health check failures. Valid options are:
REPAIR
,DO_NOTHING
. IfDO_NOTHING
then instances will not be repaired. IfREPAIR
(default), then failed instances will be repaired. - force
Update stringOn Repair - , Specifies whether to apply the group's latest configuration when repairing a VM. Valid options are:
YES
,NO
. IfYES
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. IfNO
(default), then updates are applied in accordance with the group's update policy type.
- default_
action_ stron_ failure - , Default behavior for all instance or health check failures. Valid options are:
REPAIR
,DO_NOTHING
. IfDO_NOTHING
then instances will not be repaired. IfREPAIR
(default), then failed instances will be repaired. - force_
update_ stron_ repair - , Specifies whether to apply the group's latest configuration when repairing a VM. Valid options are:
YES
,NO
. IfYES
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. IfNO
(default), then updates are applied in accordance with the group's update policy type.
- default
Action StringOn Failure - , Default behavior for all instance or health check failures. Valid options are:
REPAIR
,DO_NOTHING
. IfDO_NOTHING
then instances will not be repaired. IfREPAIR
(default), then failed instances will be repaired. - force
Update StringOn Repair - , Specifies whether to apply the group's latest configuration when repairing a VM. Valid options are:
YES
,NO
. IfYES
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. IfNO
(default), then updates are applied in accordance with the group's update policy type.
RegionInstanceGroupManagerNamedPort, RegionInstanceGroupManagerNamedPortArgs
RegionInstanceGroupManagerParams, RegionInstanceGroupManagerParamsArgs
- Dictionary<string, string>
- Resource manager tags to bind to the managed instance group. The tags are key-value pairs. Keys must be in the format tagKeys/123 and values in the format tagValues/456. For more information, see Manage tags for resources
- map[string]string
- Resource manager tags to bind to the managed instance group. The tags are key-value pairs. Keys must be in the format tagKeys/123 and values in the format tagValues/456. For more information, see Manage tags for resources
- Map<String,String>
- Resource manager tags to bind to the managed instance group. The tags are key-value pairs. Keys must be in the format tagKeys/123 and values in the format tagValues/456. For more information, see Manage tags for resources
- {[key: string]: string}
- Resource manager tags to bind to the managed instance group. The tags are key-value pairs. Keys must be in the format tagKeys/123 and values in the format tagValues/456. For more information, see Manage tags for resources
- Mapping[str, str]
- Resource manager tags to bind to the managed instance group. The tags are key-value pairs. Keys must be in the format tagKeys/123 and values in the format tagValues/456. For more information, see Manage tags for resources
- Map<String>
- Resource manager tags to bind to the managed instance group. The tags are key-value pairs. Keys must be in the format tagKeys/123 and values in the format tagValues/456. For more information, see Manage tags for resources
RegionInstanceGroupManagerStandbyPolicy, RegionInstanceGroupManagerStandbyPolicyArgs
- Initial
Delay intSec - Specifies the number of seconds that the MIG should wait to suspend or stop a VM after that VM was created. The initial delay gives the initialization script the time to prepare your VM for a quick scale out. The value of initial delay must be between 0 and 3600 seconds. The default value is 0.
- Mode string
- Defines how a MIG resumes or starts VMs from a standby pool when the group scales out. Valid options are:
MANUAL
,SCALE_OUT_POOL
. IfMANUAL
(default), you have full control over which VMs are stopped and suspended in the MIG. IfSCALE_OUT_POOL
, the MIG uses the VMs from the standby pools to accelerate the scale out by resuming or starting them and then automatically replenishes the standby pool with new VMs to maintain the target sizes.
- Initial
Delay intSec - Specifies the number of seconds that the MIG should wait to suspend or stop a VM after that VM was created. The initial delay gives the initialization script the time to prepare your VM for a quick scale out. The value of initial delay must be between 0 and 3600 seconds. The default value is 0.
- Mode string
- Defines how a MIG resumes or starts VMs from a standby pool when the group scales out. Valid options are:
MANUAL
,SCALE_OUT_POOL
. IfMANUAL
(default), you have full control over which VMs are stopped and suspended in the MIG. IfSCALE_OUT_POOL
, the MIG uses the VMs from the standby pools to accelerate the scale out by resuming or starting them and then automatically replenishes the standby pool with new VMs to maintain the target sizes.
- initial
Delay IntegerSec - Specifies the number of seconds that the MIG should wait to suspend or stop a VM after that VM was created. The initial delay gives the initialization script the time to prepare your VM for a quick scale out. The value of initial delay must be between 0 and 3600 seconds. The default value is 0.
- mode String
- Defines how a MIG resumes or starts VMs from a standby pool when the group scales out. Valid options are:
MANUAL
,SCALE_OUT_POOL
. IfMANUAL
(default), you have full control over which VMs are stopped and suspended in the MIG. IfSCALE_OUT_POOL
, the MIG uses the VMs from the standby pools to accelerate the scale out by resuming or starting them and then automatically replenishes the standby pool with new VMs to maintain the target sizes.
- initial
Delay numberSec - Specifies the number of seconds that the MIG should wait to suspend or stop a VM after that VM was created. The initial delay gives the initialization script the time to prepare your VM for a quick scale out. The value of initial delay must be between 0 and 3600 seconds. The default value is 0.
- mode string
- Defines how a MIG resumes or starts VMs from a standby pool when the group scales out. Valid options are:
MANUAL
,SCALE_OUT_POOL
. IfMANUAL
(default), you have full control over which VMs are stopped and suspended in the MIG. IfSCALE_OUT_POOL
, the MIG uses the VMs from the standby pools to accelerate the scale out by resuming or starting them and then automatically replenishes the standby pool with new VMs to maintain the target sizes.
- initial_
delay_ intsec - Specifies the number of seconds that the MIG should wait to suspend or stop a VM after that VM was created. The initial delay gives the initialization script the time to prepare your VM for a quick scale out. The value of initial delay must be between 0 and 3600 seconds. The default value is 0.
- mode str
- Defines how a MIG resumes or starts VMs from a standby pool when the group scales out. Valid options are:
MANUAL
,SCALE_OUT_POOL
. IfMANUAL
(default), you have full control over which VMs are stopped and suspended in the MIG. IfSCALE_OUT_POOL
, the MIG uses the VMs from the standby pools to accelerate the scale out by resuming or starting them and then automatically replenishes the standby pool with new VMs to maintain the target sizes.
- initial
Delay NumberSec - Specifies the number of seconds that the MIG should wait to suspend or stop a VM after that VM was created. The initial delay gives the initialization script the time to prepare your VM for a quick scale out. The value of initial delay must be between 0 and 3600 seconds. The default value is 0.
- mode String
- Defines how a MIG resumes or starts VMs from a standby pool when the group scales out. Valid options are:
MANUAL
,SCALE_OUT_POOL
. IfMANUAL
(default), you have full control over which VMs are stopped and suspended in the MIG. IfSCALE_OUT_POOL
, the MIG uses the VMs from the standby pools to accelerate the scale out by resuming or starting them and then automatically replenishes the standby pool with new VMs to maintain the target sizes.
RegionInstanceGroupManagerStatefulDisk, RegionInstanceGroupManagerStatefulDiskArgs
- Device
Name string - , The device name of the disk to be attached.
- Delete
Rule string - , A value that prescribes what should happen to the stateful disk when the VM instance is deleted. The available options are
NEVER
andON_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 isNEVER
.
- Device
Name string - , The device name of the disk to be attached.
- Delete
Rule string - , A value that prescribes what should happen to the stateful disk when the VM instance is deleted. The available options are
NEVER
andON_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 isNEVER
.
- device
Name String - , The device name of the disk to be attached.
- delete
Rule String - , A value that prescribes what should happen to the stateful disk when the VM instance is deleted. The available options are
NEVER
andON_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 isNEVER
.
- device
Name string - , The device name of the disk to be attached.
- delete
Rule string - , A value that prescribes what should happen to the stateful disk when the VM instance is deleted. The available options are
NEVER
andON_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 isNEVER
.
- 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
andON_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 isNEVER
.
- device
Name String - , The device name of the disk to be attached.
- delete
Rule String - , A value that prescribes what should happen to the stateful disk when the VM instance is deleted. The available options are
NEVER
andON_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 isNEVER
.
RegionInstanceGroupManagerStatefulExternalIp, RegionInstanceGroupManagerStatefulExternalIpArgs
- Delete
Rule string - , A value that prescribes what should happen to the external ip when the VM instance is deleted. The available options are
NEVER
andON_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 string - , The network interface name of the external Ip. Possible value:
nic0
.
- Delete
Rule string - , A value that prescribes what should happen to the external ip when the VM instance is deleted. The available options are
NEVER
andON_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 string - , The network interface name of the external Ip. Possible value:
nic0
.
- delete
Rule String - , A value that prescribes what should happen to the external ip when the VM instance is deleted. The available options are
NEVER
andON_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 String - , The network interface name of the external Ip. Possible value:
nic0
.
- delete
Rule string - , A value that prescribes what should happen to the external ip when the VM instance is deleted. The available options are
NEVER
andON_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 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
andON_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
.
- delete
Rule String - , A value that prescribes what should happen to the external ip when the VM instance is deleted. The available options are
NEVER
andON_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 String - , The network interface name of the external Ip. Possible value:
nic0
.
RegionInstanceGroupManagerStatefulInternalIp, RegionInstanceGroupManagerStatefulInternalIpArgs
- Delete
Rule string - , A value that prescribes what should happen to the internal ip when the VM instance is deleted. The available options are
NEVER
andON_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 string - , The network interface name of the internal Ip. Possible value:
nic0
.
- Delete
Rule string - , A value that prescribes what should happen to the internal ip when the VM instance is deleted. The available options are
NEVER
andON_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 string - , The network interface name of the internal Ip. Possible value:
nic0
.
- delete
Rule String - , A value that prescribes what should happen to the internal ip when the VM instance is deleted. The available options are
NEVER
andON_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 String - , The network interface name of the internal Ip. Possible value:
nic0
.
- delete
Rule string - , A value that prescribes what should happen to the internal ip when the VM instance is deleted. The available options are
NEVER
andON_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 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
andON_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
.
- delete
Rule String - , A value that prescribes what should happen to the internal ip when the VM instance is deleted. The available options are
NEVER
andON_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 String - , The network interface name of the internal Ip. Possible value:
nic0
.
RegionInstanceGroupManagerStatus, RegionInstanceGroupManagerStatusArgs
- All
Instances List<RegionConfigs Instance Group Manager Status All Instances Config> - 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
List<Region
Instance Group Manager Status Stateful> - Stateful status of the given Instance Group Manager.
- Version
Targets List<RegionInstance Group Manager Status Version Target> - 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 []RegionConfigs Instance Group Manager Status All Instances Config - 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
[]Region
Instance Group Manager Status Stateful - Stateful status of the given Instance Group Manager.
- Version
Targets []RegionInstance Group Manager Status Version Target - 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 List<RegionConfigs Instance Group Manager Status All Instances Config> - 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 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<Region
Instance Group Manager Status Stateful> - Stateful status of the given Instance Group Manager.
- version
Targets List<RegionInstance Group Manager Status Version Target> - 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 RegionConfigs Instance Group Manager Status All Instances Config[] - 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 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
Region
Instance Group Manager Status Stateful[] - Stateful status of the given Instance Group Manager.
- version
Targets RegionInstance Group Manager Status Version Target[] - 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_ Sequence[Regionconfigs Instance Group Manager Status All Instances Config] - 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[Region
Instance Group Manager Status Stateful] - Stateful status of the given Instance Group Manager.
- version_
targets Sequence[RegionInstance Group Manager Status Version Target] - 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 List<Property Map>Configs - 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 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.
- version
Targets 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.
RegionInstanceGroupManagerStatusAllInstancesConfig, RegionInstanceGroupManagerStatusAllInstancesConfigArgs
- Current
Revision 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.
- Current
Revision 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.
- current
Revision 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 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.
- current
Revision 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.
RegionInstanceGroupManagerStatusStateful, RegionInstanceGroupManagerStatusStatefulArgs
- Has
Stateful boolConfig - 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 List<RegionConfigs Instance Group Manager Status Stateful Per Instance Config> - Status of per-instance configs on the instances.
- Has
Stateful boolConfig - 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 []RegionConfigs Instance Group Manager Status Stateful Per Instance Config - Status of per-instance configs on the instances.
- has
Stateful BooleanConfig - 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 List<RegionConfigs Instance Group Manager Status Stateful Per Instance Config> - Status of per-instance configs on the instances.
- has
Stateful booleanConfig - 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 RegionConfigs Instance Group Manager Status Stateful Per Instance Config[] - Status of per-instance configs on the instances.
- has_
stateful_ boolconfig - 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_ Sequence[Regionconfigs Instance Group Manager Status Stateful Per Instance Config] - Status of per-instance configs on the instances.
- has
Stateful BooleanConfig - 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 List<Property Map>Configs - Status of per-instance configs on the instances.
RegionInstanceGroupManagerStatusStatefulPerInstanceConfig, RegionInstanceGroupManagerStatusStatefulPerInstanceConfigArgs
- 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.
- 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.
- all
Effective 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 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.
- all
Effective 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.
RegionInstanceGroupManagerStatusVersionTarget, RegionInstanceGroupManagerStatusVersionTargetArgs
- 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.
- 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.
- is
Reached 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 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.
- is
Reached 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.
RegionInstanceGroupManagerUpdatePolicy, RegionInstanceGroupManagerUpdatePolicyArgs
- Minimal
Action string - Minimal action to be taken on an instance. You can specify either
NONE
to forbid any actions,REFRESH
to update without stopping instances,RESTART
to restart existing instances orREPLACE
to delete and create new instances from the target template. If you specify aREFRESH
, 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 orOPPORTUNISTIC
so that no action is proactively executed but the update will be performed as part of other actions (for example, resizes or recreateInstances calls). - Instance
Redistribution stringType - The instance redistribution policy for regional managed instance groups. Valid values are:
"PROACTIVE"
,"NONE"
. IfPROACTIVE
(default), the group attempts to maintain an even distribution of VM instances across zones in the region. IfNONE
, proactive redistribution is disabled. - Max
Surge intFixed - , Specifies a fixed number of VM instances. This must be a positive integer. Conflicts with
max_surge_percent
. Both cannot be 0. - Max
Surge intPercent - , Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%. Conflicts with
max_surge_fixed
. - int
- , Specifies a fixed number of VM instances. This must be a positive integer.
- int
- , Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%..
- Min
Ready intSec - , Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600]
- Most
Disruptive stringAllowed Action - 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 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 string - Minimal action to be taken on an instance. You can specify either
NONE
to forbid any actions,REFRESH
to update without stopping instances,RESTART
to restart existing instances orREPLACE
to delete and create new instances from the target template. If you specify aREFRESH
, 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 orOPPORTUNISTIC
so that no action is proactively executed but the update will be performed as part of other actions (for example, resizes or recreateInstances calls). - Instance
Redistribution stringType - The instance redistribution policy for regional managed instance groups. Valid values are:
"PROACTIVE"
,"NONE"
. IfPROACTIVE
(default), the group attempts to maintain an even distribution of VM instances across zones in the region. IfNONE
, proactive redistribution is disabled. - Max
Surge intFixed - , Specifies a fixed number of VM instances. This must be a positive integer. Conflicts with
max_surge_percent
. Both cannot be 0. - Max
Surge intPercent - , Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%. Conflicts with
max_surge_fixed
. - int
- , Specifies a fixed number of VM instances. This must be a positive integer.
- int
- , Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%..
- Min
Ready intSec - , Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600]
- Most
Disruptive stringAllowed Action - 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 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 String - Minimal action to be taken on an instance. You can specify either
NONE
to forbid any actions,REFRESH
to update without stopping instances,RESTART
to restart existing instances orREPLACE
to delete and create new instances from the target template. If you specify aREFRESH
, 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 orOPPORTUNISTIC
so that no action is proactively executed but the update will be performed as part of other actions (for example, resizes or recreateInstances calls). - instance
Redistribution StringType - The instance redistribution policy for regional managed instance groups. Valid values are:
"PROACTIVE"
,"NONE"
. IfPROACTIVE
(default), the group attempts to maintain an even distribution of VM instances across zones in the region. IfNONE
, proactive redistribution is disabled. - max
Surge IntegerFixed - , Specifies a fixed number of VM instances. This must be a positive integer. Conflicts with
max_surge_percent
. Both cannot be 0. - max
Surge IntegerPercent - , Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%. Conflicts with
max_surge_fixed
. - Integer
- , Specifies a fixed number of VM instances. This must be a positive integer.
- Integer
- , Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%..
- min
Ready IntegerSec - , Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600]
- most
Disruptive StringAllowed Action - 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 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 string - Minimal action to be taken on an instance. You can specify either
NONE
to forbid any actions,REFRESH
to update without stopping instances,RESTART
to restart existing instances orREPLACE
to delete and create new instances from the target template. If you specify aREFRESH
, 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 orOPPORTUNISTIC
so that no action is proactively executed but the update will be performed as part of other actions (for example, resizes or recreateInstances calls). - instance
Redistribution stringType - The instance redistribution policy for regional managed instance groups. Valid values are:
"PROACTIVE"
,"NONE"
. IfPROACTIVE
(default), the group attempts to maintain an even distribution of VM instances across zones in the region. IfNONE
, proactive redistribution is disabled. - max
Surge numberFixed - , Specifies a fixed number of VM instances. This must be a positive integer. Conflicts with
max_surge_percent
. Both cannot be 0. - max
Surge numberPercent - , Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%. Conflicts with
max_surge_fixed
. - number
- , Specifies a fixed number of VM instances. This must be a positive integer.
- number
- , Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%..
- min
Ready numberSec - , Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600]
- most
Disruptive stringAllowed Action - 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 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
NONE
to forbid any actions,REFRESH
to update without stopping instances,RESTART
to restart existing instances orREPLACE
to delete and create new instances from the target template. If you specify aREFRESH
, 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 orOPPORTUNISTIC
so that no action is proactively executed but the update will be performed as part of other actions (for example, resizes or recreateInstances calls). - instance_
redistribution_ strtype - The instance redistribution policy for regional managed instance groups. Valid values are:
"PROACTIVE"
,"NONE"
. IfPROACTIVE
(default), the group attempts to maintain an even distribution of VM instances across zones in the region. IfNONE
, proactive redistribution is disabled. - max_
surge_ intfixed - , Specifies a fixed number of VM instances. This must be a positive integer. Conflicts with
max_surge_percent
. Both cannot be 0. - max_
surge_ intpercent - , Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%. Conflicts with
max_surge_fixed
. - int
- , Specifies a fixed number of VM instances. This must be a positive integer.
- int
- , Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%..
- min_
ready_ intsec - , Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600]
- most_
disruptive_ strallowed_ action - 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.
- minimal
Action String - Minimal action to be taken on an instance. You can specify either
NONE
to forbid any actions,REFRESH
to update without stopping instances,RESTART
to restart existing instances orREPLACE
to delete and create new instances from the target template. If you specify aREFRESH
, 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 orOPPORTUNISTIC
so that no action is proactively executed but the update will be performed as part of other actions (for example, resizes or recreateInstances calls). - instance
Redistribution StringType - The instance redistribution policy for regional managed instance groups. Valid values are:
"PROACTIVE"
,"NONE"
. IfPROACTIVE
(default), the group attempts to maintain an even distribution of VM instances across zones in the region. IfNONE
, proactive redistribution is disabled. - max
Surge NumberFixed - , Specifies a fixed number of VM instances. This must be a positive integer. Conflicts with
max_surge_percent
. Both cannot be 0. - max
Surge NumberPercent - , Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%. Conflicts with
max_surge_fixed
. - Number
- , Specifies a fixed number of VM instances. This must be a positive integer.
- Number
- , Specifies a percentage of instances between 0 to 100%, inclusive. For example, specify 80 for 80%..
- min
Ready NumberSec - , Minimum number of seconds to wait for after a newly created instance becomes available. This value must be from range [0, 3600]
- most
Disruptive StringAllowed Action - 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 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.
RegionInstanceGroupManagerVersion, RegionInstanceGroupManagerVersionArgs
- Instance
Template string - The full URL to an instance template from which all new instances of this version will be created.
- Name string
- Version name.
- Target
Size RegionInstance Group Manager Version Target Size 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 atarget_size
specified. During a rolling update, the instance group manager will fulfill thetarget_size
constraints of every otherversion
, and any remaining instances will be provisioned with the version wheretarget_size
is unset.
- Instance
Template string - The full URL to an instance template from which all new instances of this version will be created.
- Name string
- Version name.
- Target
Size RegionInstance Group Manager Version Target Size 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 atarget_size
specified. During a rolling update, the instance group manager will fulfill thetarget_size
constraints of every otherversion
, and any remaining instances will be provisioned with the version wheretarget_size
is unset.
- instance
Template String - The full URL to an instance template from which all new instances of this version will be created.
- name String
- Version name.
- target
Size RegionInstance Group Manager Version Target Size 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 atarget_size
specified. During a rolling update, the instance group manager will fulfill thetarget_size
constraints of every otherversion
, and any remaining instances will be provisioned with the version wheretarget_size
is unset.
- instance
Template string - The full URL to an instance template from which all new instances of this version will be created.
- name string
- Version name.
- target
Size RegionInstance Group Manager Version Target Size 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 atarget_size
specified. During a rolling update, the instance group manager will fulfill thetarget_size
constraints of every otherversion
, and any remaining instances will be provisioned with the version wheretarget_size
is unset.
- instance_
template str - The full URL to an instance template from which all new instances of this version will be created.
- name str
- Version name.
- target_
size RegionInstance Group Manager Version Target Size 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 atarget_size
specified. During a rolling update, the instance group manager will fulfill thetarget_size
constraints of every otherversion
, and any remaining instances will be provisioned with the version wheretarget_size
is unset.
- instance
Template String - The full URL to an instance template from which all new instances of this version will be created.
- name String
- Version name.
- target
Size 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 atarget_size
specified. During a rolling update, the instance group manager will fulfill thetarget_size
constraints of every otherversion
, and any remaining instances will be provisioned with the version wheretarget_size
is unset.
RegionInstanceGroupManagerVersionTargetSize, RegionInstanceGroupManagerVersionTargetSizeArgs
- 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 usingpercent
, rounding will be in favor of explicitly settarget_size
values; a managed instance group with 2 instances and 2version
s, one of which has atarget_size.percent
of60
will create 2 instances of thatversion
.
- 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 usingpercent
, rounding will be in favor of explicitly settarget_size
values; a managed instance group with 2 instances and 2version
s, one of which has atarget_size.percent
of60
will create 2 instances of thatversion
.
- 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 usingpercent
, rounding will be in favor of explicitly settarget_size
values; a managed instance group with 2 instances and 2version
s, one of which has atarget_size.percent
of60
will create 2 instances of thatversion
.
- 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 usingpercent
, rounding will be in favor of explicitly settarget_size
values; a managed instance group with 2 instances and 2version
s, one of which has atarget_size.percent
of60
will create 2 instances of thatversion
.
- 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 usingpercent
, rounding will be in favor of explicitly settarget_size
values; a managed instance group with 2 instances and 2version
s, one of which has atarget_size.percent
of60
will create 2 instances of thatversion
.
- 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 usingpercent
, rounding will be in favor of explicitly settarget_size
values; a managed instance group with 2 instances and 2version
s, one of which has atarget_size.percent
of60
will create 2 instances of thatversion
.
Import
Instance group managers can be imported using any of these accepted formats:
{{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/regionInstanceGroupManager:RegionInstanceGroupManager default {{name}}
To learn more about importing existing cloud resources, see Importing resources.
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.