avi.Autoscalelaunchconfig
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Autoscalelaunchconfig” sidebar_current: “docs-avi-resource-autoscalelaunchconfig” description: |- Creates and manages Avi AutoScaleLaunchConfig.
avi.Autoscalelaunchconfig
The AutoScaleLaunchConfig resource allows the creation and management of Avi AutoScaleLaunchConfig
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Autoscalelaunchconfig("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Autoscalelaunchconfig("foo", tenant_ref="/api/tenant/?name=admin")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := avi.NewAutoscalelaunchconfig(ctx, "foo", &avi.AutoscalelaunchconfigArgs{
TenantRef: pulumi.String("/api/tenant/?name=admin"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Avi = Pulumi.Avi;
return await Deployment.RunAsync(() =>
{
var foo = new Avi.Autoscalelaunchconfig("foo", new()
{
TenantRef = "/api/tenant/?name=admin",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.avi.Autoscalelaunchconfig;
import com.pulumi.avi.AutoscalelaunchconfigArgs;
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 foo = new Autoscalelaunchconfig("foo", AutoscalelaunchconfigArgs.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Autoscalelaunchconfig
properties:
tenantRef: /api/tenant/?name=admin
Create Autoscalelaunchconfig Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Autoscalelaunchconfig(name: string, args?: AutoscalelaunchconfigArgs, opts?: CustomResourceOptions);
@overload
def Autoscalelaunchconfig(resource_name: str,
args: Optional[AutoscalelaunchconfigArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Autoscalelaunchconfig(resource_name: str,
opts: Optional[ResourceOptions] = None,
autoscalelaunchconfig_id: Optional[str] = None,
configpb_attributes: Optional[Sequence[AutoscalelaunchconfigConfigpbAttributeArgs]] = None,
description: Optional[str] = None,
image_id: Optional[str] = None,
markers: Optional[Sequence[AutoscalelaunchconfigMarkerArgs]] = None,
mesos: Optional[Sequence[AutoscalelaunchconfigMesoArgs]] = None,
name: Optional[str] = None,
openstacks: Optional[Sequence[AutoscalelaunchconfigOpenstackArgs]] = None,
tenant_ref: Optional[str] = None,
use_external_asg: Optional[str] = None,
uuid: Optional[str] = None)
func NewAutoscalelaunchconfig(ctx *Context, name string, args *AutoscalelaunchconfigArgs, opts ...ResourceOption) (*Autoscalelaunchconfig, error)
public Autoscalelaunchconfig(string name, AutoscalelaunchconfigArgs? args = null, CustomResourceOptions? opts = null)
public Autoscalelaunchconfig(String name, AutoscalelaunchconfigArgs args)
public Autoscalelaunchconfig(String name, AutoscalelaunchconfigArgs args, CustomResourceOptions options)
type: avi:Autoscalelaunchconfig
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 AutoscalelaunchconfigArgs
- 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 AutoscalelaunchconfigArgs
- 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 AutoscalelaunchconfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AutoscalelaunchconfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AutoscalelaunchconfigArgs
- 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 autoscalelaunchconfigResource = new Avi.Autoscalelaunchconfig("autoscalelaunchconfigResource", new()
{
AutoscalelaunchconfigId = "string",
ConfigpbAttributes = new[]
{
new Avi.Inputs.AutoscalelaunchconfigConfigpbAttributeArgs
{
Version = "string",
},
},
Description = "string",
ImageId = "string",
Markers = new[]
{
new Avi.Inputs.AutoscalelaunchconfigMarkerArgs
{
Key = "string",
Values = new[]
{
"string",
},
},
},
Mesos = new[]
{
new Avi.Inputs.AutoscalelaunchconfigMesoArgs
{
Force = "string",
},
},
Name = "string",
Openstacks = new[]
{
new Avi.Inputs.AutoscalelaunchconfigOpenstackArgs
{
HeatScaleDownUrl = "string",
HeatScaleUpUrl = "string",
},
},
TenantRef = "string",
UseExternalAsg = "string",
Uuid = "string",
});
example, err := avi.NewAutoscalelaunchconfig(ctx, "autoscalelaunchconfigResource", &avi.AutoscalelaunchconfigArgs{
AutoscalelaunchconfigId: pulumi.String("string"),
ConfigpbAttributes: avi.AutoscalelaunchconfigConfigpbAttributeArray{
&avi.AutoscalelaunchconfigConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
ImageId: pulumi.String("string"),
Markers: avi.AutoscalelaunchconfigMarkerArray{
&avi.AutoscalelaunchconfigMarkerArgs{
Key: pulumi.String("string"),
Values: pulumi.StringArray{
pulumi.String("string"),
},
},
},
Mesos: avi.AutoscalelaunchconfigMesoArray{
&avi.AutoscalelaunchconfigMesoArgs{
Force: pulumi.String("string"),
},
},
Name: pulumi.String("string"),
Openstacks: avi.AutoscalelaunchconfigOpenstackArray{
&avi.AutoscalelaunchconfigOpenstackArgs{
HeatScaleDownUrl: pulumi.String("string"),
HeatScaleUpUrl: pulumi.String("string"),
},
},
TenantRef: pulumi.String("string"),
UseExternalAsg: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var autoscalelaunchconfigResource = new Autoscalelaunchconfig("autoscalelaunchconfigResource", AutoscalelaunchconfigArgs.builder()
.autoscalelaunchconfigId("string")
.configpbAttributes(AutoscalelaunchconfigConfigpbAttributeArgs.builder()
.version("string")
.build())
.description("string")
.imageId("string")
.markers(AutoscalelaunchconfigMarkerArgs.builder()
.key("string")
.values("string")
.build())
.mesos(AutoscalelaunchconfigMesoArgs.builder()
.force("string")
.build())
.name("string")
.openstacks(AutoscalelaunchconfigOpenstackArgs.builder()
.heatScaleDownUrl("string")
.heatScaleUpUrl("string")
.build())
.tenantRef("string")
.useExternalAsg("string")
.uuid("string")
.build());
autoscalelaunchconfig_resource = avi.Autoscalelaunchconfig("autoscalelaunchconfigResource",
autoscalelaunchconfig_id="string",
configpb_attributes=[{
"version": "string",
}],
description="string",
image_id="string",
markers=[{
"key": "string",
"values": ["string"],
}],
mesos=[{
"force": "string",
}],
name="string",
openstacks=[{
"heat_scale_down_url": "string",
"heat_scale_up_url": "string",
}],
tenant_ref="string",
use_external_asg="string",
uuid="string")
const autoscalelaunchconfigResource = new avi.Autoscalelaunchconfig("autoscalelaunchconfigResource", {
autoscalelaunchconfigId: "string",
configpbAttributes: [{
version: "string",
}],
description: "string",
imageId: "string",
markers: [{
key: "string",
values: ["string"],
}],
mesos: [{
force: "string",
}],
name: "string",
openstacks: [{
heatScaleDownUrl: "string",
heatScaleUpUrl: "string",
}],
tenantRef: "string",
useExternalAsg: "string",
uuid: "string",
});
type: avi:Autoscalelaunchconfig
properties:
autoscalelaunchconfigId: string
configpbAttributes:
- version: string
description: string
imageId: string
markers:
- key: string
values:
- string
mesos:
- force: string
name: string
openstacks:
- heatScaleDownUrl: string
heatScaleUpUrl: string
tenantRef: string
useExternalAsg: string
uuid: string
Autoscalelaunchconfig 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 Autoscalelaunchconfig resource accepts the following input properties:
- Autoscalelaunchconfig
Id string - Configpb
Attributes List<AutoscalelaunchconfigConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Image
Id string - Unique id of the amazon machine image (ami) or openstack vm id. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
List<Autoscalelaunchconfig
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Mesos
List<Autoscalelaunchconfig
Meso> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Openstacks
List<Autoscalelaunchconfig
Openstack> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Use
External stringAsg - If set to true, serverautoscalepolicy will use the autoscaling group (external_autoscaling_groups) from pool to perform scale up and scale down. Pool should have single autoscaling group configured. Field introduced in 17.2.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Autoscalelaunchconfig
Id string - Configpb
Attributes []AutoscalelaunchconfigConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Image
Id string - Unique id of the amazon machine image (ami) or openstack vm id. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
[]Autoscalelaunchconfig
Marker Args - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Mesos
[]Autoscalelaunchconfig
Meso Args - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Openstacks
[]Autoscalelaunchconfig
Openstack Args - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Use
External stringAsg - If set to true, serverautoscalepolicy will use the autoscaling group (external_autoscaling_groups) from pool to perform scale up and scale down. Pool should have single autoscaling group configured. Field introduced in 17.2.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- autoscalelaunchconfig
Id String - configpb
Attributes List<AutoscalelaunchconfigConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image
Id String - Unique id of the amazon machine image (ami) or openstack vm id. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
List<Autoscalelaunchconfig
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- mesos
List<Autoscalelaunchconfig
Meso> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- openstacks
List<Autoscalelaunchconfig
Openstack> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- use
External StringAsg - If set to true, serverautoscalepolicy will use the autoscaling group (external_autoscaling_groups) from pool to perform scale up and scale down. Pool should have single autoscaling group configured. Field introduced in 17.2.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- autoscalelaunchconfig
Id string - configpb
Attributes AutoscalelaunchconfigConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image
Id string - Unique id of the amazon machine image (ami) or openstack vm id. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Autoscalelaunchconfig
Marker[] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- mesos
Autoscalelaunchconfig
Meso[] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- openstacks
Autoscalelaunchconfig
Openstack[] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- use
External stringAsg - If set to true, serverautoscalepolicy will use the autoscaling group (external_autoscaling_groups) from pool to perform scale up and scale down. Pool should have single autoscaling group configured. Field introduced in 17.2.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- autoscalelaunchconfig_
id str - configpb_
attributes Sequence[AutoscalelaunchconfigConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image_
id str - Unique id of the amazon machine image (ami) or openstack vm id. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Sequence[Autoscalelaunchconfig
Marker Args] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- mesos
Sequence[Autoscalelaunchconfig
Meso Args] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- openstacks
Sequence[Autoscalelaunchconfig
Openstack Args] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- use_
external_ strasg - If set to true, serverautoscalepolicy will use the autoscaling group (external_autoscaling_groups) from pool to perform scale up and scale down. Pool should have single autoscaling group configured. Field introduced in 17.2.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- autoscalelaunchconfig
Id String - configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image
Id String - Unique id of the amazon machine image (ami) or openstack vm id. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers List<Property Map>
- List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- mesos List<Property Map>
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- openstacks List<Property Map>
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- use
External StringAsg - If set to true, serverautoscalepolicy will use the autoscaling group (external_autoscaling_groups) from pool to perform scale up and scale down. Pool should have single autoscaling group configured. Field introduced in 17.2.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Outputs
All input properties are implicitly available as output properties. Additionally, the Autoscalelaunchconfig resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Autoscalelaunchconfig Resource
Get an existing Autoscalelaunchconfig resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AutoscalelaunchconfigState, opts?: CustomResourceOptions): Autoscalelaunchconfig
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
autoscalelaunchconfig_id: Optional[str] = None,
configpb_attributes: Optional[Sequence[AutoscalelaunchconfigConfigpbAttributeArgs]] = None,
description: Optional[str] = None,
image_id: Optional[str] = None,
markers: Optional[Sequence[AutoscalelaunchconfigMarkerArgs]] = None,
mesos: Optional[Sequence[AutoscalelaunchconfigMesoArgs]] = None,
name: Optional[str] = None,
openstacks: Optional[Sequence[AutoscalelaunchconfigOpenstackArgs]] = None,
tenant_ref: Optional[str] = None,
use_external_asg: Optional[str] = None,
uuid: Optional[str] = None) -> Autoscalelaunchconfig
func GetAutoscalelaunchconfig(ctx *Context, name string, id IDInput, state *AutoscalelaunchconfigState, opts ...ResourceOption) (*Autoscalelaunchconfig, error)
public static Autoscalelaunchconfig Get(string name, Input<string> id, AutoscalelaunchconfigState? state, CustomResourceOptions? opts = null)
public static Autoscalelaunchconfig get(String name, Output<String> id, AutoscalelaunchconfigState state, CustomResourceOptions options)
resources: _: type: avi:Autoscalelaunchconfig get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Autoscalelaunchconfig
Id string - Configpb
Attributes List<AutoscalelaunchconfigConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Image
Id string - Unique id of the amazon machine image (ami) or openstack vm id. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
List<Autoscalelaunchconfig
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Mesos
List<Autoscalelaunchconfig
Meso> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Openstacks
List<Autoscalelaunchconfig
Openstack> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Use
External stringAsg - If set to true, serverautoscalepolicy will use the autoscaling group (external_autoscaling_groups) from pool to perform scale up and scale down. Pool should have single autoscaling group configured. Field introduced in 17.2.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Autoscalelaunchconfig
Id string - Configpb
Attributes []AutoscalelaunchconfigConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Image
Id string - Unique id of the amazon machine image (ami) or openstack vm id. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Markers
[]Autoscalelaunchconfig
Marker Args - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Mesos
[]Autoscalelaunchconfig
Meso Args - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Openstacks
[]Autoscalelaunchconfig
Openstack Args - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Use
External stringAsg - If set to true, serverautoscalepolicy will use the autoscaling group (external_autoscaling_groups) from pool to perform scale up and scale down. Pool should have single autoscaling group configured. Field introduced in 17.2.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- autoscalelaunchconfig
Id String - configpb
Attributes List<AutoscalelaunchconfigConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image
Id String - Unique id of the amazon machine image (ami) or openstack vm id. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
List<Autoscalelaunchconfig
Marker> - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- mesos
List<Autoscalelaunchconfig
Meso> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- openstacks
List<Autoscalelaunchconfig
Openstack> - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- use
External StringAsg - If set to true, serverautoscalepolicy will use the autoscaling group (external_autoscaling_groups) from pool to perform scale up and scale down. Pool should have single autoscaling group configured. Field introduced in 17.2.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- autoscalelaunchconfig
Id string - configpb
Attributes AutoscalelaunchconfigConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image
Id string - Unique id of the amazon machine image (ami) or openstack vm id. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Autoscalelaunchconfig
Marker[] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- mesos
Autoscalelaunchconfig
Meso[] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- openstacks
Autoscalelaunchconfig
Openstack[] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- use
External stringAsg - If set to true, serverautoscalepolicy will use the autoscaling group (external_autoscaling_groups) from pool to perform scale up and scale down. Pool should have single autoscaling group configured. Field introduced in 17.2.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- autoscalelaunchconfig_
id str - configpb_
attributes Sequence[AutoscalelaunchconfigConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image_
id str - Unique id of the amazon machine image (ami) or openstack vm id. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers
Sequence[Autoscalelaunchconfig
Marker Args] - List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- mesos
Sequence[Autoscalelaunchconfig
Meso Args] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- openstacks
Sequence[Autoscalelaunchconfig
Openstack Args] - Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- use_
external_ strasg - If set to true, serverautoscalepolicy will use the autoscaling group (external_autoscaling_groups) from pool to perform scale up and scale down. Pool should have single autoscaling group configured. Field introduced in 17.2.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- autoscalelaunchconfig
Id String - configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- image
Id String - Unique id of the amazon machine image (ami) or openstack vm id. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- markers List<Property Map>
- List of labels to be used for granular rbac. Field introduced in 20.1.5. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- mesos List<Property Map>
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- openstacks List<Property Map>
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- use
External StringAsg - If set to true, serverautoscalepolicy will use the autoscaling group (external_autoscaling_groups) from pool to perform scale up and scale down. Pool should have single autoscaling group configured. Field introduced in 17.2.3. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Supporting Types
AutoscalelaunchconfigConfigpbAttribute, AutoscalelaunchconfigConfigpbAttributeArgs
- Version string
- Version string
- version String
- version string
- version str
- version String
AutoscalelaunchconfigMarker, AutoscalelaunchconfigMarkerArgs
AutoscalelaunchconfigMeso, AutoscalelaunchconfigMesoArgs
- Force string
- Force string
- force String
- force string
- force str
- force String
AutoscalelaunchconfigOpenstack, AutoscalelaunchconfigOpenstackArgs
- Heat
Scale stringDown Url - Heat
Scale stringUp Url
- Heat
Scale stringDown Url - Heat
Scale stringUp Url
- heat
Scale StringDown Url - heat
Scale StringUp Url
- heat
Scale stringDown Url - heat
Scale stringUp Url
- heat
Scale StringDown Url - heat
Scale StringUp Url
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.