azure-native.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,
});
});
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: 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={
"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={})
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.
Constructor 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={
"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",
})
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:
- Container
Group Pulumi.Properties Azure Native. Standby Pool. Inputs. Container Group Properties - Specifies container group properties of standby container group pools.
- Elasticity
Profile Pulumi.Azure Native. Standby Pool. Inputs. Standby Container Group Pool Elasticity Profile - Specifies elasticity profile of standby container group pools.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Standby
Container stringGroup Pool Name - Name of the standby container group pool
- Dictionary<string, string>
- Resource tags.
- Container
Group ContainerProperties Group Properties Args - Specifies container group properties of standby container group pools.
- Elasticity
Profile StandbyContainer Group Pool Elasticity Profile Args - Specifies elasticity profile of standby container group pools.
- Resource
Group stringName - The name of the resource group. The name is case insensitive.
- Location string
- The geo-location where the resource lives
- Standby
Container stringGroup Pool Name - Name of the standby container group pool
- map[string]string
- Resource tags.
- container
Group ContainerProperties Group Properties - Specifies container group properties of standby container group pools.
- elasticity
Profile StandbyContainer Group Pool Elasticity Profile - Specifies elasticity profile of standby container group pools.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- standby
Container StringGroup Pool Name - Name of the standby container group pool
- Map<String,String>
- Resource tags.
- container
Group ContainerProperties Group Properties - Specifies container group properties of standby container group pools.
- elasticity
Profile StandbyContainer Group Pool Elasticity Profile - Specifies elasticity profile of standby container group pools.
- resource
Group stringName - The name of the resource group. The name is case insensitive.
- location string
- The geo-location where the resource lives
- standby
Container stringGroup Pool Name - Name of the standby container group pool
- {[key: string]: string}
- Resource tags.
- container_
group_ Containerproperties Group Properties Args - Specifies container group properties of standby container group pools.
- elasticity_
profile StandbyContainer Group Pool Elasticity Profile Args - Specifies elasticity profile of standby container group pools.
- resource_
group_ strname - The name of the resource group. The name is case insensitive.
- location str
- The geo-location where the resource lives
- standby_
container_ strgroup_ pool_ name - Name of the standby container group pool
- Mapping[str, str]
- Resource tags.
- container
Group Property MapProperties - Specifies container group properties of standby container group pools.
- elasticity
Profile Property Map - Specifies elasticity profile of standby container group pools.
- resource
Group StringName - The name of the resource group. The name is case insensitive.
- location String
- The geo-location where the resource lives
- standby
Container StringGroup Pool Name - Name of the standby container group pool
- 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
- Provisioning
State string - The status of the last operation.
- System
Data Pulumi.Azure Native. Standby Pool. Outputs. System Data Response - 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
- Provisioning
State string - The status of the last operation.
- System
Data SystemData Response - 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
- provisioning
State String - The status of the last operation.
- system
Data SystemData Response - 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
- provisioning
State string - The status of the last operation.
- system
Data SystemData Response - 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 SystemData Response - 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
- provisioning
State String - The status of the last operation.
- system
Data 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
ContainerGroupProfileResponse, ContainerGroupProfileResponseArgs
ContainerGroupProperties, ContainerGroupPropertiesArgs
- Container
Group Pulumi.Profile Azure Native. Standby Pool. Inputs. Container Group Profile - Specifies container group profile of standby container groups.
- Subnet
Ids List<Pulumi.Azure Native. Standby Pool. Inputs. Subnet> - Specifies subnet Ids for container group.
- Container
Group ContainerProfile Group Profile - Specifies container group profile of standby container groups.
- Subnet
Ids []Subnet - Specifies subnet Ids for container group.
- container
Group ContainerProfile Group Profile - Specifies container group profile of standby container groups.
- subnet
Ids List<Subnet> - Specifies subnet Ids for container group.
- container
Group ContainerProfile Group Profile - Specifies container group profile of standby container groups.
- subnet
Ids Subnet[] - Specifies subnet Ids for container group.
- container_
group_ Containerprofile Group Profile - Specifies container group profile of standby container groups.
- subnet_
ids Sequence[Subnet] - Specifies subnet Ids for container group.
- container
Group Property MapProfile - Specifies container group profile of standby container groups.
- subnet
Ids List<Property Map> - Specifies subnet Ids for container group.
ContainerGroupPropertiesResponse, ContainerGroupPropertiesResponseArgs
- Container
Group Pulumi.Profile Azure Native. Standby Pool. Inputs. Container Group Profile Response - Specifies container group profile of standby container groups.
- Subnet
Ids List<Pulumi.Azure Native. Standby Pool. Inputs. Subnet Response> - Specifies subnet Ids for container group.
- Container
Group ContainerProfile Group Profile Response - Specifies container group profile of standby container groups.
- Subnet
Ids []SubnetResponse - Specifies subnet Ids for container group.
- container
Group ContainerProfile Group Profile Response - Specifies container group profile of standby container groups.
- subnet
Ids List<SubnetResponse> - Specifies subnet Ids for container group.
- container
Group ContainerProfile Group Profile Response - Specifies container group profile of standby container groups.
- subnet
Ids SubnetResponse[] - Specifies subnet Ids for container group.
- container_
group_ Containerprofile Group Profile Response - Specifies container group profile of standby container groups.
- subnet_
ids Sequence[SubnetResponse] - Specifies subnet Ids for container group.
- container
Group Property MapProfile - Specifies container group profile of standby container groups.
- subnet
Ids List<Property Map> - Specifies subnet Ids for container group.
RefillPolicy, RefillPolicyArgs
- Always
- alwaysA refill policy that standby pool is automatically refilled to maintain maxReadyCapacity.
- Refill
Policy 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.
- "always"
- alwaysA refill policy that standby pool is automatically refilled to maintain maxReadyCapacity.
StandbyContainerGroupPoolElasticityProfile, StandbyContainerGroupPoolElasticityProfileArgs
- Max
Ready doubleCapacity - Specifies maximum number of standby container groups in the standby pool.
- Refill
Policy string | Pulumi.Azure Native. Standby Pool. Refill Policy - Specifies refill policy of the pool.
- Max
Ready float64Capacity - Specifies maximum number of standby container groups in the standby pool.
- Refill
Policy string | RefillPolicy - Specifies refill policy of the pool.
- max
Ready DoubleCapacity - Specifies maximum number of standby container groups in the standby pool.
- refill
Policy String | RefillPolicy - Specifies refill policy of the pool.
- max
Ready numberCapacity - Specifies maximum number of standby container groups in the standby pool.
- refill
Policy string | RefillPolicy - Specifies refill policy of the pool.
- max_
ready_ floatcapacity - Specifies maximum number of standby container groups in the standby pool.
- refill_
policy str | RefillPolicy - Specifies refill policy of the pool.
- max
Ready NumberCapacity - Specifies maximum number of standby container groups in the standby pool.
- refill
Policy String | "always" - Specifies refill policy of the pool.
StandbyContainerGroupPoolElasticityProfileResponse, StandbyContainerGroupPoolElasticityProfileResponseArgs
- Max
Ready doubleCapacity - Specifies maximum number of standby container groups in the standby pool.
- Refill
Policy string - Specifies refill policy of the pool.
- Max
Ready float64Capacity - Specifies maximum number of standby container groups in the standby pool.
- Refill
Policy string - Specifies refill policy of the pool.
- max
Ready DoubleCapacity - Specifies maximum number of standby container groups in the standby pool.
- refill
Policy String - Specifies refill policy of the pool.
- max
Ready numberCapacity - Specifies maximum number of standby container groups in the standby pool.
- refill
Policy string - Specifies refill policy of the pool.
- max_
ready_ floatcapacity - Specifies maximum number of standby container groups in the standby pool.
- refill_
policy str - Specifies refill policy of the pool.
- max
Ready NumberCapacity - Specifies maximum number of standby container groups in the standby pool.
- refill
Policy 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
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- Created
At string - The timestamp of resource creation (UTC).
- Created
By string - The identity that created the resource.
- Created
By stringType - The type of identity that created the resource.
- Last
Modified stringAt - The timestamp of resource last modification (UTC)
- Last
Modified stringBy - The identity that last modified the resource.
- Last
Modified stringBy Type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - The type of identity that last modified the resource.
- created
At string - The timestamp of resource creation (UTC).
- created
By string - The identity that created the resource.
- created
By stringType - The type of identity that created the resource.
- last
Modified stringAt - The timestamp of resource last modification (UTC)
- last
Modified stringBy - The identity that last modified the resource.
- last
Modified stringBy Type - 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_ strtype - The type of identity that created the resource.
- last_
modified_ strat - The timestamp of resource last modification (UTC)
- last_
modified_ strby - The identity that last modified the resource.
- last_
modified_ strby_ type - The type of identity that last modified the resource.
- created
At String - The timestamp of resource creation (UTC).
- created
By String - The identity that created the resource.
- created
By StringType - The type of identity that created the resource.
- last
Modified StringAt - The timestamp of resource last modification (UTC)
- last
Modified StringBy - The identity that last modified the resource.
- last
Modified StringBy Type - 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