1. Packages
  2. Azure Native v2
  3. API Docs
  4. standbypool
  5. StandbyContainerGroupPool
These are the docs for Azure Native v2. We recommenend using the latest version, Azure Native v3.
Azure Native v2 v2.90.0 published on Thursday, Mar 27, 2025 by Pulumi

azure-native-v2.standbypool.StandbyContainerGroupPool

Explore with Pulumi AI

A StandbyContainerGroupPoolResource. Azure REST API version: 2023-12-01-preview.

Other available API versions: 2024-03-01, 2024-03-01-preview.

Example Usage

StandbyContainerGroupPools_CreateOrUpdate

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;

return await Deployment.RunAsync(() => 
{
    var standbyContainerGroupPool = new AzureNative.StandbyPool.StandbyContainerGroupPool("standbyContainerGroupPool", new()
    {
        ContainerGroupProperties = new AzureNative.StandbyPool.Inputs.ContainerGroupPropertiesArgs
        {
            ContainerGroupProfile = new AzureNative.StandbyPool.Inputs.ContainerGroupProfileArgs
            {
                Id = "/subscriptions/8CC31D61-82D7-4B2B-B9DC-6B924DE7D229/resourceGroups/rgstandbypool/providers/Microsoft.ContainerInstance/containerGroupProfiles/cgProfile",
                Revision = 1,
            },
            SubnetIds = new[]
            {
                new AzureNative.StandbyPool.Inputs.SubnetArgs
                {
                    Id = "/subscriptions/8cf6c1b6-c80f-437c-87ad-45fbaff54f73/resourceGroups/rgstandbypool/providers/Microsoft.Network/virtualNetworks/cgSubnet/subnets/cgSubnet",
                },
            },
        },
        ElasticityProfile = new AzureNative.StandbyPool.Inputs.StandbyContainerGroupPoolElasticityProfileArgs
        {
            MaxReadyCapacity = 688,
            RefillPolicy = AzureNative.StandbyPool.RefillPolicy.Always,
        },
        Location = "West US",
        ResourceGroupName = "rgstandbypool",
        StandbyContainerGroupPoolName = "pool",
        Tags = null,
    });

});
Copy
package main

import (
	standbypool "github.com/pulumi/pulumi-azure-native-sdk/standbypool/v2"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := standbypool.NewStandbyContainerGroupPool(ctx, "standbyContainerGroupPool", &standbypool.StandbyContainerGroupPoolArgs{
			ContainerGroupProperties: &standbypool.ContainerGroupPropertiesArgs{
				ContainerGroupProfile: &standbypool.ContainerGroupProfileArgs{
					Id:       pulumi.String("/subscriptions/8CC31D61-82D7-4B2B-B9DC-6B924DE7D229/resourceGroups/rgstandbypool/providers/Microsoft.ContainerInstance/containerGroupProfiles/cgProfile"),
					Revision: pulumi.Float64(1),
				},
				SubnetIds: standbypool.SubnetArray{
					&standbypool.SubnetArgs{
						Id: pulumi.String("/subscriptions/8cf6c1b6-c80f-437c-87ad-45fbaff54f73/resourceGroups/rgstandbypool/providers/Microsoft.Network/virtualNetworks/cgSubnet/subnets/cgSubnet"),
					},
				},
			},
			ElasticityProfile: &standbypool.StandbyContainerGroupPoolElasticityProfileArgs{
				MaxReadyCapacity: pulumi.Float64(688),
				RefillPolicy:     pulumi.String(standbypool.RefillPolicyAlways),
			},
			Location:                      pulumi.String("West US"),
			ResourceGroupName:             pulumi.String("rgstandbypool"),
			StandbyContainerGroupPoolName: pulumi.String("pool"),
			Tags:                          pulumi.StringMap{},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.standbypool.StandbyContainerGroupPool;
import com.pulumi.azurenative.standbypool.StandbyContainerGroupPoolArgs;
import com.pulumi.azurenative.standbypool.inputs.ContainerGroupPropertiesArgs;
import com.pulumi.azurenative.standbypool.inputs.ContainerGroupProfileArgs;
import com.pulumi.azurenative.standbypool.inputs.StandbyContainerGroupPoolElasticityProfileArgs;
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 standbyContainerGroupPool = new StandbyContainerGroupPool("standbyContainerGroupPool", StandbyContainerGroupPoolArgs.builder()
            .containerGroupProperties(ContainerGroupPropertiesArgs.builder()
                .containerGroupProfile(ContainerGroupProfileArgs.builder()
                    .id("/subscriptions/8CC31D61-82D7-4B2B-B9DC-6B924DE7D229/resourceGroups/rgstandbypool/providers/Microsoft.ContainerInstance/containerGroupProfiles/cgProfile")
                    .revision(1)
                    .build())
                .subnetIds(SubnetArgs.builder()
                    .id("/subscriptions/8cf6c1b6-c80f-437c-87ad-45fbaff54f73/resourceGroups/rgstandbypool/providers/Microsoft.Network/virtualNetworks/cgSubnet/subnets/cgSubnet")
                    .build())
                .build())
            .elasticityProfile(StandbyContainerGroupPoolElasticityProfileArgs.builder()
                .maxReadyCapacity(688)
                .refillPolicy("always")
                .build())
            .location("West US")
            .resourceGroupName("rgstandbypool")
            .standbyContainerGroupPoolName("pool")
            .tags()
            .build());

    }
}
Copy
import * as pulumi from "@pulumi/pulumi";
import * as azure_native from "@pulumi/azure-native";

const standbyContainerGroupPool = new azure_native.standbypool.StandbyContainerGroupPool("standbyContainerGroupPool", {
    containerGroupProperties: {
        containerGroupProfile: {
            id: "/subscriptions/8CC31D61-82D7-4B2B-B9DC-6B924DE7D229/resourceGroups/rgstandbypool/providers/Microsoft.ContainerInstance/containerGroupProfiles/cgProfile",
            revision: 1,
        },
        subnetIds: [{
            id: "/subscriptions/8cf6c1b6-c80f-437c-87ad-45fbaff54f73/resourceGroups/rgstandbypool/providers/Microsoft.Network/virtualNetworks/cgSubnet/subnets/cgSubnet",
        }],
    },
    elasticityProfile: {
        maxReadyCapacity: 688,
        refillPolicy: azure_native.standbypool.RefillPolicy.Always,
    },
    location: "West US",
    resourceGroupName: "rgstandbypool",
    standbyContainerGroupPoolName: "pool",
    tags: {},
});
Copy
import pulumi
import pulumi_azure_native as azure_native

standby_container_group_pool = azure_native.standbypool.StandbyContainerGroupPool("standbyContainerGroupPool",
    container_group_properties={
        "container_group_profile": {
            "id": "/subscriptions/8CC31D61-82D7-4B2B-B9DC-6B924DE7D229/resourceGroups/rgstandbypool/providers/Microsoft.ContainerInstance/containerGroupProfiles/cgProfile",
            "revision": 1,
        },
        "subnet_ids": [{
            "id": "/subscriptions/8cf6c1b6-c80f-437c-87ad-45fbaff54f73/resourceGroups/rgstandbypool/providers/Microsoft.Network/virtualNetworks/cgSubnet/subnets/cgSubnet",
        }],
    },
    elasticity_profile={
        "max_ready_capacity": 688,
        "refill_policy": azure_native.standbypool.RefillPolicy.ALWAYS,
    },
    location="West US",
    resource_group_name="rgstandbypool",
    standby_container_group_pool_name="pool",
    tags={})
Copy
resources:
  standbyContainerGroupPool:
    type: azure-native:standbypool:StandbyContainerGroupPool
    properties:
      containerGroupProperties:
        containerGroupProfile:
          id: /subscriptions/8CC31D61-82D7-4B2B-B9DC-6B924DE7D229/resourceGroups/rgstandbypool/providers/Microsoft.ContainerInstance/containerGroupProfiles/cgProfile
          revision: 1
        subnetIds:
          - id: /subscriptions/8cf6c1b6-c80f-437c-87ad-45fbaff54f73/resourceGroups/rgstandbypool/providers/Microsoft.Network/virtualNetworks/cgSubnet/subnets/cgSubnet
      elasticityProfile:
        maxReadyCapacity: 688
        refillPolicy: always
      location: West US
      resourceGroupName: rgstandbypool
      standbyContainerGroupPoolName: pool
      tags: {}
Copy

Create StandbyContainerGroupPool Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new StandbyContainerGroupPool(name: string, args: StandbyContainerGroupPoolArgs, opts?: CustomResourceOptions);
@overload
def StandbyContainerGroupPool(resource_name: str,
                              args: StandbyContainerGroupPoolArgs,
                              opts: Optional[ResourceOptions] = None)

@overload
def StandbyContainerGroupPool(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              container_group_properties: Optional[ContainerGroupPropertiesArgs] = None,
                              elasticity_profile: Optional[StandbyContainerGroupPoolElasticityProfileArgs] = None,
                              resource_group_name: Optional[str] = None,
                              location: Optional[str] = None,
                              standby_container_group_pool_name: Optional[str] = None,
                              tags: Optional[Mapping[str, str]] = None)
func NewStandbyContainerGroupPool(ctx *Context, name string, args StandbyContainerGroupPoolArgs, opts ...ResourceOption) (*StandbyContainerGroupPool, error)
public StandbyContainerGroupPool(string name, StandbyContainerGroupPoolArgs args, CustomResourceOptions? opts = null)
public StandbyContainerGroupPool(String name, StandbyContainerGroupPoolArgs args)
public StandbyContainerGroupPool(String name, StandbyContainerGroupPoolArgs args, CustomResourceOptions options)
type: azure-native:standbypool:StandbyContainerGroupPool
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. StandbyContainerGroupPoolArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. StandbyContainerGroupPoolArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. StandbyContainerGroupPoolArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. StandbyContainerGroupPoolArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. StandbyContainerGroupPoolArgs
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 standbyContainerGroupPoolResource = new AzureNative.Standbypool.StandbyContainerGroupPool("standbyContainerGroupPoolResource", new()
{
    ContainerGroupProperties = 
    {
        { "containerGroupProfile", 
        {
            { "id", "string" },
            { "revision", 0 },
        } },
        { "subnetIds", new[]
        {
            
            {
                { "id", "string" },
            },
        } },
    },
    ElasticityProfile = 
    {
        { "maxReadyCapacity", 0 },
        { "refillPolicy", "string" },
    },
    ResourceGroupName = "string",
    Location = "string",
    StandbyContainerGroupPoolName = "string",
    Tags = 
    {
        { "string", "string" },
    },
});
Copy
example, err := standbypool.NewStandbyContainerGroupPool(ctx, "standbyContainerGroupPoolResource", &standbypool.StandbyContainerGroupPoolArgs{
	ContainerGroupProperties: map[string]interface{}{
		"containerGroupProfile": map[string]interface{}{
			"id":       "string",
			"revision": 0,
		},
		"subnetIds": []map[string]interface{}{
			map[string]interface{}{
				"id": "string",
			},
		},
	},
	ElasticityProfile: map[string]interface{}{
		"maxReadyCapacity": 0,
		"refillPolicy":     "string",
	},
	ResourceGroupName:             "string",
	Location:                      "string",
	StandbyContainerGroupPoolName: "string",
	Tags: map[string]interface{}{
		"string": "string",
	},
})
Copy
var standbyContainerGroupPoolResource = new StandbyContainerGroupPool("standbyContainerGroupPoolResource", StandbyContainerGroupPoolArgs.builder()
    .containerGroupProperties(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .elasticityProfile(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .resourceGroupName("string")
    .location("string")
    .standbyContainerGroupPoolName("string")
    .tags(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
    .build());
Copy
standby_container_group_pool_resource = azure_native.standbypool.StandbyContainerGroupPool("standbyContainerGroupPoolResource",
    container_group_properties={
        containerGroupProfile: {
            id: string,
            revision: 0,
        },
        subnetIds: [{
            id: string,
        }],
    },
    elasticity_profile={
        maxReadyCapacity: 0,
        refillPolicy: string,
    },
    resource_group_name=string,
    location=string,
    standby_container_group_pool_name=string,
    tags={
        string: string,
    })
Copy
const standbyContainerGroupPoolResource = new azure_native.standbypool.StandbyContainerGroupPool("standbyContainerGroupPoolResource", {
    containerGroupProperties: {
        containerGroupProfile: {
            id: "string",
            revision: 0,
        },
        subnetIds: [{
            id: "string",
        }],
    },
    elasticityProfile: {
        maxReadyCapacity: 0,
        refillPolicy: "string",
    },
    resourceGroupName: "string",
    location: "string",
    standbyContainerGroupPoolName: "string",
    tags: {
        string: "string",
    },
});
Copy
type: azure-native:standbypool:StandbyContainerGroupPool
properties:
    containerGroupProperties:
        containerGroupProfile:
            id: string
            revision: 0
        subnetIds:
            - id: string
    elasticityProfile:
        maxReadyCapacity: 0
        refillPolicy: string
    location: string
    resourceGroupName: string
    standbyContainerGroupPoolName: string
    tags:
        string: string
Copy

StandbyContainerGroupPool Resource Properties

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

Inputs

In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

The StandbyContainerGroupPool resource accepts the following input properties:

ContainerGroupProperties This property is required. Pulumi.AzureNative.StandbyPool.Inputs.ContainerGroupProperties
Specifies container group properties of standby container group pools.
ElasticityProfile This property is required. Pulumi.AzureNative.StandbyPool.Inputs.StandbyContainerGroupPoolElasticityProfile
Specifies elasticity profile of standby container group pools.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
StandbyContainerGroupPoolName Changes to this property will trigger replacement. string
Name of the standby container group pool
Tags Dictionary<string, string>
Resource tags.
ContainerGroupProperties This property is required. ContainerGroupPropertiesArgs
Specifies container group properties of standby container group pools.
ElasticityProfile This property is required. StandbyContainerGroupPoolElasticityProfileArgs
Specifies elasticity profile of standby container group pools.
ResourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
Location Changes to this property will trigger replacement. string
The geo-location where the resource lives
StandbyContainerGroupPoolName Changes to this property will trigger replacement. string
Name of the standby container group pool
Tags map[string]string
Resource tags.
containerGroupProperties This property is required. ContainerGroupProperties
Specifies container group properties of standby container group pools.
elasticityProfile This property is required. StandbyContainerGroupPoolElasticityProfile
Specifies elasticity profile of standby container group pools.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
standbyContainerGroupPoolName Changes to this property will trigger replacement. String
Name of the standby container group pool
tags Map<String,String>
Resource tags.
containerGroupProperties This property is required. ContainerGroupProperties
Specifies container group properties of standby container group pools.
elasticityProfile This property is required. StandbyContainerGroupPoolElasticityProfile
Specifies elasticity profile of standby container group pools.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
string
The name of the resource group. The name is case insensitive.
location Changes to this property will trigger replacement. string
The geo-location where the resource lives
standbyContainerGroupPoolName Changes to this property will trigger replacement. string
Name of the standby container group pool
tags {[key: string]: string}
Resource tags.
container_group_properties This property is required. ContainerGroupPropertiesArgs
Specifies container group properties of standby container group pools.
elasticity_profile This property is required. StandbyContainerGroupPoolElasticityProfileArgs
Specifies elasticity profile of standby container group pools.
resource_group_name
This property is required.
Changes to this property will trigger replacement.
str
The name of the resource group. The name is case insensitive.
location Changes to this property will trigger replacement. str
The geo-location where the resource lives
standby_container_group_pool_name Changes to this property will trigger replacement. str
Name of the standby container group pool
tags Mapping[str, str]
Resource tags.
containerGroupProperties This property is required. Property Map
Specifies container group properties of standby container group pools.
elasticityProfile This property is required. Property Map
Specifies elasticity profile of standby container group pools.
resourceGroupName
This property is required.
Changes to this property will trigger replacement.
String
The name of the resource group. The name is case insensitive.
location Changes to this property will trigger replacement. String
The geo-location where the resource lives
standbyContainerGroupPoolName Changes to this property will trigger replacement. String
Name of the standby container group pool
tags Map<String>
Resource tags.

Outputs

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

Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
The status of the last operation.
SystemData Pulumi.AzureNative.StandbyPool.Outputs.SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
Id string
The provider-assigned unique ID for this managed resource.
Name string
The name of the resource
ProvisioningState string
The status of the last operation.
SystemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
Type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
The status of the last operation.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id string
The provider-assigned unique ID for this managed resource.
name string
The name of the resource
provisioningState string
The status of the last operation.
systemData SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type string
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id str
The provider-assigned unique ID for this managed resource.
name str
The name of the resource
provisioning_state str
The status of the last operation.
system_data SystemDataResponse
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type str
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
id String
The provider-assigned unique ID for this managed resource.
name String
The name of the resource
provisioningState String
The status of the last operation.
systemData Property Map
Azure Resource Manager metadata containing createdBy and modifiedBy information.
type String
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Supporting Types

ContainerGroupProfile
, ContainerGroupProfileArgs

Id This property is required. string
Specifies container group profile id of standby container groups.
Revision double
Specifies revision of container group profile.
Id This property is required. string
Specifies container group profile id of standby container groups.
Revision float64
Specifies revision of container group profile.
id This property is required. String
Specifies container group profile id of standby container groups.
revision Double
Specifies revision of container group profile.
id This property is required. string
Specifies container group profile id of standby container groups.
revision number
Specifies revision of container group profile.
id This property is required. str
Specifies container group profile id of standby container groups.
revision float
Specifies revision of container group profile.
id This property is required. String
Specifies container group profile id of standby container groups.
revision Number
Specifies revision of container group profile.

ContainerGroupProfileResponse
, ContainerGroupProfileResponseArgs

Id This property is required. string
Specifies container group profile id of standby container groups.
Revision double
Specifies revision of container group profile.
Id This property is required. string
Specifies container group profile id of standby container groups.
Revision float64
Specifies revision of container group profile.
id This property is required. String
Specifies container group profile id of standby container groups.
revision Double
Specifies revision of container group profile.
id This property is required. string
Specifies container group profile id of standby container groups.
revision number
Specifies revision of container group profile.
id This property is required. str
Specifies container group profile id of standby container groups.
revision float
Specifies revision of container group profile.
id This property is required. String
Specifies container group profile id of standby container groups.
revision Number
Specifies revision of container group profile.

ContainerGroupProperties
, ContainerGroupPropertiesArgs

ContainerGroupProfile This property is required. Pulumi.AzureNative.StandbyPool.Inputs.ContainerGroupProfile
Specifies container group profile of standby container groups.
SubnetIds List<Pulumi.AzureNative.StandbyPool.Inputs.Subnet>
Specifies subnet Ids for container group.
ContainerGroupProfile This property is required. ContainerGroupProfile
Specifies container group profile of standby container groups.
SubnetIds []Subnet
Specifies subnet Ids for container group.
containerGroupProfile This property is required. ContainerGroupProfile
Specifies container group profile of standby container groups.
subnetIds List<Subnet>
Specifies subnet Ids for container group.
containerGroupProfile This property is required. ContainerGroupProfile
Specifies container group profile of standby container groups.
subnetIds Subnet[]
Specifies subnet Ids for container group.
container_group_profile This property is required. ContainerGroupProfile
Specifies container group profile of standby container groups.
subnet_ids Sequence[Subnet]
Specifies subnet Ids for container group.
containerGroupProfile This property is required. Property Map
Specifies container group profile of standby container groups.
subnetIds List<Property Map>
Specifies subnet Ids for container group.

ContainerGroupPropertiesResponse
, ContainerGroupPropertiesResponseArgs

ContainerGroupProfile This property is required. Pulumi.AzureNative.StandbyPool.Inputs.ContainerGroupProfileResponse
Specifies container group profile of standby container groups.
SubnetIds List<Pulumi.AzureNative.StandbyPool.Inputs.SubnetResponse>
Specifies subnet Ids for container group.
ContainerGroupProfile This property is required. ContainerGroupProfileResponse
Specifies container group profile of standby container groups.
SubnetIds []SubnetResponse
Specifies subnet Ids for container group.
containerGroupProfile This property is required. ContainerGroupProfileResponse
Specifies container group profile of standby container groups.
subnetIds List<SubnetResponse>
Specifies subnet Ids for container group.
containerGroupProfile This property is required. ContainerGroupProfileResponse
Specifies container group profile of standby container groups.
subnetIds SubnetResponse[]
Specifies subnet Ids for container group.
container_group_profile This property is required. ContainerGroupProfileResponse
Specifies container group profile of standby container groups.
subnet_ids Sequence[SubnetResponse]
Specifies subnet Ids for container group.
containerGroupProfile This property is required. Property Map
Specifies container group profile of standby container groups.
subnetIds List<Property Map>
Specifies subnet Ids for container group.

RefillPolicy
, RefillPolicyArgs

Always
alwaysA refill policy that standby pool is automatically refilled to maintain maxReadyCapacity.
RefillPolicyAlways
alwaysA refill policy that standby pool is automatically refilled to maintain maxReadyCapacity.
Always
alwaysA refill policy that standby pool is automatically refilled to maintain maxReadyCapacity.
Always
alwaysA refill policy that standby pool is automatically refilled to maintain maxReadyCapacity.
ALWAYS
alwaysA refill policy that standby pool is automatically refilled to maintain maxReadyCapacity.
"always"
alwaysA refill policy that standby pool is automatically refilled to maintain maxReadyCapacity.

StandbyContainerGroupPoolElasticityProfile
, StandbyContainerGroupPoolElasticityProfileArgs

MaxReadyCapacity This property is required. double
Specifies maximum number of standby container groups in the standby pool.
RefillPolicy string | Pulumi.AzureNative.StandbyPool.RefillPolicy
Specifies refill policy of the pool.
MaxReadyCapacity This property is required. float64
Specifies maximum number of standby container groups in the standby pool.
RefillPolicy string | RefillPolicy
Specifies refill policy of the pool.
maxReadyCapacity This property is required. Double
Specifies maximum number of standby container groups in the standby pool.
refillPolicy String | RefillPolicy
Specifies refill policy of the pool.
maxReadyCapacity This property is required. number
Specifies maximum number of standby container groups in the standby pool.
refillPolicy string | RefillPolicy
Specifies refill policy of the pool.
max_ready_capacity This property is required. float
Specifies maximum number of standby container groups in the standby pool.
refill_policy str | RefillPolicy
Specifies refill policy of the pool.
maxReadyCapacity This property is required. Number
Specifies maximum number of standby container groups in the standby pool.
refillPolicy String | "always"
Specifies refill policy of the pool.

StandbyContainerGroupPoolElasticityProfileResponse
, StandbyContainerGroupPoolElasticityProfileResponseArgs

MaxReadyCapacity This property is required. double
Specifies maximum number of standby container groups in the standby pool.
RefillPolicy string
Specifies refill policy of the pool.
MaxReadyCapacity This property is required. float64
Specifies maximum number of standby container groups in the standby pool.
RefillPolicy string
Specifies refill policy of the pool.
maxReadyCapacity This property is required. Double
Specifies maximum number of standby container groups in the standby pool.
refillPolicy String
Specifies refill policy of the pool.
maxReadyCapacity This property is required. number
Specifies maximum number of standby container groups in the standby pool.
refillPolicy string
Specifies refill policy of the pool.
max_ready_capacity This property is required. float
Specifies maximum number of standby container groups in the standby pool.
refill_policy str
Specifies refill policy of the pool.
maxReadyCapacity This property is required. Number
Specifies maximum number of standby container groups in the standby pool.
refillPolicy String
Specifies refill policy of the pool.

Subnet
, SubnetArgs

Id This property is required. string
Specifies ARM resource id of the subnet.
Id This property is required. string
Specifies ARM resource id of the subnet.
id This property is required. String
Specifies ARM resource id of the subnet.
id This property is required. string
Specifies ARM resource id of the subnet.
id This property is required. str
Specifies ARM resource id of the subnet.
id This property is required. String
Specifies ARM resource id of the subnet.

SubnetResponse
, SubnetResponseArgs

Id This property is required. string
Specifies ARM resource id of the subnet.
Id This property is required. string
Specifies ARM resource id of the subnet.
id This property is required. String
Specifies ARM resource id of the subnet.
id This property is required. string
Specifies ARM resource id of the subnet.
id This property is required. str
Specifies ARM resource id of the subnet.
id This property is required. String
Specifies ARM resource id of the subnet.

SystemDataResponse
, SystemDataResponseArgs

CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
CreatedAt string
The timestamp of resource creation (UTC).
CreatedBy string
The identity that created the resource.
CreatedByType string
The type of identity that created the resource.
LastModifiedAt string
The timestamp of resource last modification (UTC)
LastModifiedBy string
The identity that last modified the resource.
LastModifiedByType string
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.
createdAt string
The timestamp of resource creation (UTC).
createdBy string
The identity that created the resource.
createdByType string
The type of identity that created the resource.
lastModifiedAt string
The timestamp of resource last modification (UTC)
lastModifiedBy string
The identity that last modified the resource.
lastModifiedByType string
The type of identity that last modified the resource.
created_at str
The timestamp of resource creation (UTC).
created_by str
The identity that created the resource.
created_by_type str
The type of identity that created the resource.
last_modified_at str
The timestamp of resource last modification (UTC)
last_modified_by str
The identity that last modified the resource.
last_modified_by_type str
The type of identity that last modified the resource.
createdAt String
The timestamp of resource creation (UTC).
createdBy String
The identity that created the resource.
createdByType String
The type of identity that created the resource.
lastModifiedAt String
The timestamp of resource last modification (UTC)
lastModifiedBy String
The identity that last modified the resource.
lastModifiedByType String
The type of identity that last modified the resource.

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:standbypool:StandbyContainerGroupPool pool /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.StandbyPool/standbyContainerGroupPools/{standbyContainerGroupPoolName} 
Copy

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
azure-native-v2 pulumi/pulumi-azure-native
License
Apache-2.0