1. Packages
  2. Azure Native
  3. API Docs
  4. standbypool
  5. StandbyContainerGroupPool
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi

azure-native.standbypool.StandbyContainerGroupPool

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi

    A StandbyContainerGroupPoolResource. Azure REST API version: 2023-12-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,
        });
    
    });
    
    package main
    
    import (
    	"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:                          nil,
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    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());
    
        }
    }
    
    import pulumi
    import pulumi_azure_native as azure_native
    
    standby_container_group_pool = azure_native.standbypool.StandbyContainerGroupPool("standbyContainerGroupPool",
        container_group_properties=azure_native.standbypool.ContainerGroupPropertiesArgs(
            container_group_profile=azure_native.standbypool.ContainerGroupProfileArgs(
                id="/subscriptions/8CC31D61-82D7-4B2B-B9DC-6B924DE7D229/resourceGroups/rgstandbypool/providers/Microsoft.ContainerInstance/containerGroupProfiles/cgProfile",
                revision=1,
            ),
            subnet_ids=[azure_native.standbypool.SubnetArgs(
                id="/subscriptions/8cf6c1b6-c80f-437c-87ad-45fbaff54f73/resourceGroups/rgstandbypool/providers/Microsoft.Network/virtualNetworks/cgSubnet/subnets/cgSubnet",
            )],
        ),
        elasticity_profile=azure_native.standbypool.StandbyContainerGroupPoolElasticityProfileArgs(
            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={})
    
    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: {},
    });
    
    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: {}
    

    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 string
    The unique name of the resource.
    args StandbyContainerGroupPoolArgs
    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 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 string
    The unique name of the resource.
    args StandbyContainerGroupPoolArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args StandbyContainerGroupPoolArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args StandbyContainerGroupPoolArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var standbyContainerGroupPoolResource = new AzureNative.StandbyPool.StandbyContainerGroupPool("standbyContainerGroupPoolResource", new()
    {
        ContainerGroupProperties = new AzureNative.StandbyPool.Inputs.ContainerGroupPropertiesArgs
        {
            ContainerGroupProfile = new AzureNative.StandbyPool.Inputs.ContainerGroupProfileArgs
            {
                Id = "string",
                Revision = 0,
            },
            SubnetIds = new[]
            {
                new AzureNative.StandbyPool.Inputs.SubnetArgs
                {
                    Id = "string",
                },
            },
        },
        ElasticityProfile = new AzureNative.StandbyPool.Inputs.StandbyContainerGroupPoolElasticityProfileArgs
        {
            MaxReadyCapacity = 0,
            RefillPolicy = "string",
        },
        ResourceGroupName = "string",
        Location = "string",
        StandbyContainerGroupPoolName = "string",
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := standbypool.NewStandbyContainerGroupPool(ctx, "standbyContainerGroupPoolResource", &standbypool.StandbyContainerGroupPoolArgs{
    ContainerGroupProperties: &standbypool.ContainerGroupPropertiesArgs{
    ContainerGroupProfile: &standbypool.ContainerGroupProfileArgs{
    Id: pulumi.String("string"),
    Revision: pulumi.Float64(0),
    },
    SubnetIds: standbypool.SubnetArray{
    &standbypool.SubnetArgs{
    Id: pulumi.String("string"),
    },
    },
    },
    ElasticityProfile: &standbypool.StandbyContainerGroupPoolElasticityProfileArgs{
    MaxReadyCapacity: pulumi.Float64(0),
    RefillPolicy: pulumi.String("string"),
    },
    ResourceGroupName: pulumi.String("string"),
    Location: pulumi.String("string"),
    StandbyContainerGroupPoolName: pulumi.String("string"),
    Tags: pulumi.StringMap{
    "string": pulumi.String("string"),
    },
    })
    
    var standbyContainerGroupPoolResource = new StandbyContainerGroupPool("standbyContainerGroupPoolResource", StandbyContainerGroupPoolArgs.builder()        
        .containerGroupProperties(ContainerGroupPropertiesArgs.builder()
            .containerGroupProfile(ContainerGroupProfileArgs.builder()
                .id("string")
                .revision(0)
                .build())
            .subnetIds(SubnetArgs.builder()
                .id("string")
                .build())
            .build())
        .elasticityProfile(StandbyContainerGroupPoolElasticityProfileArgs.builder()
            .maxReadyCapacity(0)
            .refillPolicy("string")
            .build())
        .resourceGroupName("string")
        .location("string")
        .standbyContainerGroupPoolName("string")
        .tags(Map.of("string", "string"))
        .build());
    
    standby_container_group_pool_resource = azure_native.standbypool.StandbyContainerGroupPool("standbyContainerGroupPoolResource",
        container_group_properties=azure_native.standbypool.ContainerGroupPropertiesArgs(
            container_group_profile=azure_native.standbypool.ContainerGroupProfileArgs(
                id="string",
                revision=0,
            ),
            subnet_ids=[azure_native.standbypool.SubnetArgs(
                id="string",
            )],
        ),
        elasticity_profile=azure_native.standbypool.StandbyContainerGroupPoolElasticityProfileArgs(
            max_ready_capacity=0,
            refill_policy="string",
        ),
        resource_group_name="string",
        location="string",
        standby_container_group_pool_name="string",
        tags={
            "string": "string",
        })
    
    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",
        },
    });
    
    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
    

    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

    The StandbyContainerGroupPool resource accepts the following input properties:

    ContainerGroupProperties Pulumi.AzureNative.StandbyPool.Inputs.ContainerGroupProperties
    Specifies container group properties of standby container group pools.
    ElasticityProfile Pulumi.AzureNative.StandbyPool.Inputs.StandbyContainerGroupPoolElasticityProfile
    Specifies elasticity profile of standby container group pools.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    StandbyContainerGroupPoolName string
    Name of the standby container group pool
    Tags Dictionary<string, string>
    Resource tags.
    ContainerGroupProperties ContainerGroupPropertiesArgs
    Specifies container group properties of standby container group pools.
    ElasticityProfile StandbyContainerGroupPoolElasticityProfileArgs
    Specifies elasticity profile of standby container group pools.
    ResourceGroupName string
    The name of the resource group. The name is case insensitive.
    Location string
    The geo-location where the resource lives
    StandbyContainerGroupPoolName string
    Name of the standby container group pool
    Tags map[string]string
    Resource tags.
    containerGroupProperties ContainerGroupProperties
    Specifies container group properties of standby container group pools.
    elasticityProfile StandbyContainerGroupPoolElasticityProfile
    Specifies elasticity profile of standby container group pools.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    standbyContainerGroupPoolName String
    Name of the standby container group pool
    tags Map<String,String>
    Resource tags.
    containerGroupProperties ContainerGroupProperties
    Specifies container group properties of standby container group pools.
    elasticityProfile StandbyContainerGroupPoolElasticityProfile
    Specifies elasticity profile of standby container group pools.
    resourceGroupName string
    The name of the resource group. The name is case insensitive.
    location string
    The geo-location where the resource lives
    standbyContainerGroupPoolName string
    Name of the standby container group pool
    tags {[key: string]: string}
    Resource tags.
    container_group_properties ContainerGroupPropertiesArgs
    Specifies container group properties of standby container group pools.
    elasticity_profile StandbyContainerGroupPoolElasticityProfileArgs
    Specifies elasticity profile of standby container group pools.
    resource_group_name str
    The name of the resource group. The name is case insensitive.
    location str
    The geo-location where the resource lives
    standby_container_group_pool_name str
    Name of the standby container group pool
    tags Mapping[str, str]
    Resource tags.
    containerGroupProperties Property Map
    Specifies container group properties of standby container group pools.
    elasticityProfile Property Map
    Specifies elasticity profile of standby container group pools.
    resourceGroupName String
    The name of the resource group. The name is case insensitive.
    location String
    The geo-location where the resource lives
    standbyContainerGroupPoolName 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 string
    Specifies container group profile id of standby container groups.
    Revision double
    Specifies revision of container group profile.
    Id string
    Specifies container group profile id of standby container groups.
    Revision float64
    Specifies revision of container group profile.
    id String
    Specifies container group profile id of standby container groups.
    revision Double
    Specifies revision of container group profile.
    id string
    Specifies container group profile id of standby container groups.
    revision number
    Specifies revision of container group profile.
    id str
    Specifies container group profile id of standby container groups.
    revision float
    Specifies revision of container group profile.
    id String
    Specifies container group profile id of standby container groups.
    revision Number
    Specifies revision of container group profile.

    ContainerGroupProfileResponse, ContainerGroupProfileResponseArgs

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

    ContainerGroupProperties, ContainerGroupPropertiesArgs

    ContainerGroupProfile 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 ContainerGroupProfile
    Specifies container group profile of standby container groups.
    SubnetIds []Subnet
    Specifies subnet Ids for container group.
    containerGroupProfile ContainerGroupProfile
    Specifies container group profile of standby container groups.
    subnetIds List<Subnet>
    Specifies subnet Ids for container group.
    containerGroupProfile ContainerGroupProfile
    Specifies container group profile of standby container groups.
    subnetIds Subnet[]
    Specifies subnet Ids for container group.
    container_group_profile ContainerGroupProfile
    Specifies container group profile of standby container groups.
    subnet_ids Sequence[Subnet]
    Specifies subnet Ids for container group.
    containerGroupProfile Property Map
    Specifies container group profile of standby container groups.
    subnetIds List<Property Map>
    Specifies subnet Ids for container group.

    ContainerGroupPropertiesResponse, ContainerGroupPropertiesResponseArgs

    ContainerGroupProfile 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 ContainerGroupProfileResponse
    Specifies container group profile of standby container groups.
    SubnetIds []SubnetResponse
    Specifies subnet Ids for container group.
    containerGroupProfile ContainerGroupProfileResponse
    Specifies container group profile of standby container groups.
    subnetIds List<SubnetResponse>
    Specifies subnet Ids for container group.
    containerGroupProfile ContainerGroupProfileResponse
    Specifies container group profile of standby container groups.
    subnetIds SubnetResponse[]
    Specifies subnet Ids for container group.
    container_group_profile ContainerGroupProfileResponse
    Specifies container group profile of standby container groups.
    subnet_ids Sequence[SubnetResponse]
    Specifies subnet Ids for container group.
    containerGroupProfile 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 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 float64
    Specifies maximum number of standby container groups in the standby pool.
    RefillPolicy string | RefillPolicy
    Specifies refill policy of the pool.
    maxReadyCapacity Double
    Specifies maximum number of standby container groups in the standby pool.
    refillPolicy String | RefillPolicy
    Specifies refill policy of the pool.
    maxReadyCapacity number
    Specifies maximum number of standby container groups in the standby pool.
    refillPolicy string | RefillPolicy
    Specifies refill policy of the pool.
    max_ready_capacity float
    Specifies maximum number of standby container groups in the standby pool.
    refill_policy str | RefillPolicy
    Specifies refill policy of the pool.
    maxReadyCapacity Number
    Specifies maximum number of standby container groups in the standby pool.
    refillPolicy String | "always"
    Specifies refill policy of the pool.

    StandbyContainerGroupPoolElasticityProfileResponse, StandbyContainerGroupPoolElasticityProfileResponseArgs

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

    Subnet, SubnetArgs

    Id string
    Specifies ARM resource id of the subnet.
    Id string
    Specifies ARM resource id of the subnet.
    id String
    Specifies ARM resource id of the subnet.
    id string
    Specifies ARM resource id of the subnet.
    id str
    Specifies ARM resource id of the subnet.
    id String
    Specifies ARM resource id of the subnet.

    SubnetResponse, SubnetResponseArgs

    Id string
    Specifies ARM resource id of the subnet.
    Id string
    Specifies ARM resource id of the subnet.
    id String
    Specifies ARM resource id of the subnet.
    id string
    Specifies ARM resource id of the subnet.
    id str
    Specifies ARM resource id of the subnet.
    id 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} 
    

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

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.41.0 published on Tuesday, May 14, 2024 by Pulumi