alicloud.compute.NestServiceInstance
Explore with Pulumi AI
Provides a Compute Nest Service Instance resource.
For information about Compute Nest Service Instance and how to use it, see What is Service Instance.
NOTE: Available since v1.205.0.
Example Usage
Basic Usage
import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";
const config = new pulumi.Config();
const name = config.get("name") || "tfexample";
const default = alicloud.resourcemanager.getResourceGroups({});
const defaultGetZones = alicloud.getZones({
    availableDiskCategory: "cloud_efficiency",
    availableResourceCreation: "VSwitch",
});
const defaultGetInstanceTypes = defaultGetZones.then(defaultGetZones => alicloud.ecs.getInstanceTypes({
    availabilityZone: defaultGetZones.zones?.[0]?.id,
    instanceTypeFamily: "ecs.sn1ne",
}));
const defaultGetImages = alicloud.ecs.getImages({
    nameRegex: "^ubuntu_[0-9]+_[0-9]+_x64*",
    owners: "system",
});
const defaultNetwork = new alicloud.vpc.Network("default", {
    vpcName: name,
    cidrBlock: "10.0.0.0/8",
});
const defaultSwitch = new alicloud.vpc.Switch("default", {
    vswitchName: name,
    cidrBlock: "10.1.0.0/16",
    vpcId: defaultNetwork.id,
    zoneId: defaultGetZones.then(defaultGetZones => defaultGetZones.zones?.[0]?.id),
});
const defaultSecurityGroup = new alicloud.ecs.SecurityGroup("default", {vpcId: defaultNetwork.id});
const defaultInstance = new alicloud.ecs.Instance("default", {
    imageId: defaultGetImages.then(defaultGetImages => defaultGetImages.images?.[0]?.id),
    instanceType: defaultGetInstanceTypes.then(defaultGetInstanceTypes => defaultGetInstanceTypes.instanceTypes?.[0]?.id),
    securityGroups: [defaultSecurityGroup].map(__item => __item.id),
    internetChargeType: "PayByTraffic",
    internetMaxBandwidthOut: 10,
    availabilityZone: defaultGetZones.then(defaultGetZones => defaultGetZones.zones?.[0]?.id),
    instanceChargeType: "PostPaid",
    systemDiskCategory: "cloud_efficiency",
    vswitchId: defaultSwitch.id,
});
const defaultNestServiceInstance = new alicloud.compute.NestServiceInstance("default", {
    serviceId: "service-dd475e6e468348799f0f",
    serviceVersion: "1",
    serviceInstanceName: name,
    resourceGroupId: _default.then(_default => _default.groups?.[0]?.id),
    paymentType: "Permanent",
    operationMetadata: {
        operationStartTime: "1681281179000",
        operationEndTime: "1681367579000",
        resources: pulumi.interpolate`    {
      "Type": "ResourceIds",
      "RegionId": "cn-hangzhou",
      "ResourceIds": {
      "ALIYUN::ECS::INSTANCE": [
        "${defaultInstance.id}"
        ]
      } 
    }
`,
    },
    tags: {
        Created: "TF",
        For: "ServiceInstance",
    },
});
import pulumi
import pulumi_alicloud as alicloud
config = pulumi.Config()
name = config.get("name")
if name is None:
    name = "tfexample"
default = alicloud.resourcemanager.get_resource_groups()
default_get_zones = alicloud.get_zones(available_disk_category="cloud_efficiency",
    available_resource_creation="VSwitch")
default_get_instance_types = alicloud.ecs.get_instance_types(availability_zone=default_get_zones.zones[0].id,
    instance_type_family="ecs.sn1ne")
default_get_images = alicloud.ecs.get_images(name_regex="^ubuntu_[0-9]+_[0-9]+_x64*",
    owners="system")
default_network = alicloud.vpc.Network("default",
    vpc_name=name,
    cidr_block="10.0.0.0/8")
default_switch = alicloud.vpc.Switch("default",
    vswitch_name=name,
    cidr_block="10.1.0.0/16",
    vpc_id=default_network.id,
    zone_id=default_get_zones.zones[0].id)
default_security_group = alicloud.ecs.SecurityGroup("default", vpc_id=default_network.id)
default_instance = alicloud.ecs.Instance("default",
    image_id=default_get_images.images[0].id,
    instance_type=default_get_instance_types.instance_types[0].id,
    security_groups=[__item.id for __item in [default_security_group]],
    internet_charge_type="PayByTraffic",
    internet_max_bandwidth_out=10,
    availability_zone=default_get_zones.zones[0].id,
    instance_charge_type="PostPaid",
    system_disk_category="cloud_efficiency",
    vswitch_id=default_switch.id)
default_nest_service_instance = alicloud.compute.NestServiceInstance("default",
    service_id="service-dd475e6e468348799f0f",
    service_version="1",
    service_instance_name=name,
    resource_group_id=default.groups[0].id,
    payment_type="Permanent",
    operation_metadata={
        "operation_start_time": "1681281179000",
        "operation_end_time": "1681367579000",
        "resources": default_instance.id.apply(lambda id: f"""    {{
      "Type": "ResourceIds",
      "RegionId": "cn-hangzhou",
      "ResourceIds": {{
      "ALIYUN::ECS::INSTANCE": [
        "{id}"
        ]
      }} 
    }}
"""),
    },
    tags={
        "Created": "TF",
        "For": "ServiceInstance",
    })
package main
import (
	"fmt"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/compute"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/ecs"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/resourcemanager"
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/vpc"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
cfg := config.New(ctx, "")
name := "tfexample";
if param := cfg.Get("name"); param != ""{
name = param
}
_default, err := resourcemanager.GetResourceGroups(ctx, &resourcemanager.GetResourceGroupsArgs{
}, nil);
if err != nil {
return err
}
defaultGetZones, err := alicloud.GetZones(ctx, &alicloud.GetZonesArgs{
AvailableDiskCategory: pulumi.StringRef("cloud_efficiency"),
AvailableResourceCreation: pulumi.StringRef("VSwitch"),
}, nil);
if err != nil {
return err
}
defaultGetInstanceTypes, err := ecs.GetInstanceTypes(ctx, &ecs.GetInstanceTypesArgs{
AvailabilityZone: pulumi.StringRef(defaultGetZones.Zones[0].Id),
InstanceTypeFamily: pulumi.StringRef("ecs.sn1ne"),
}, nil);
if err != nil {
return err
}
defaultGetImages, err := ecs.GetImages(ctx, &ecs.GetImagesArgs{
NameRegex: pulumi.StringRef("^ubuntu_[0-9]+_[0-9]+_x64*"),
Owners: pulumi.StringRef("system"),
}, nil);
if err != nil {
return err
}
defaultNetwork, err := vpc.NewNetwork(ctx, "default", &vpc.NetworkArgs{
VpcName: pulumi.String(name),
CidrBlock: pulumi.String("10.0.0.0/8"),
})
if err != nil {
return err
}
defaultSwitch, err := vpc.NewSwitch(ctx, "default", &vpc.SwitchArgs{
VswitchName: pulumi.String(name),
CidrBlock: pulumi.String("10.1.0.0/16"),
VpcId: defaultNetwork.ID(),
ZoneId: pulumi.String(defaultGetZones.Zones[0].Id),
})
if err != nil {
return err
}
defaultSecurityGroup, err := ecs.NewSecurityGroup(ctx, "default", &ecs.SecurityGroupArgs{
VpcId: defaultNetwork.ID(),
})
if err != nil {
return err
}
var splat0 pulumi.StringArray
for _, val0 := range %!v(PANIC=Format method: fatal: An assertion has failed: tok: ) {
splat0 = append(splat0, val0.ID())
}
defaultInstance, err := ecs.NewInstance(ctx, "default", &ecs.InstanceArgs{
ImageId: pulumi.String(defaultGetImages.Images[0].Id),
InstanceType: pulumi.String(defaultGetInstanceTypes.InstanceTypes[0].Id),
SecurityGroups: splat0,
InternetChargeType: pulumi.String("PayByTraffic"),
InternetMaxBandwidthOut: pulumi.Int(10),
AvailabilityZone: pulumi.String(defaultGetZones.Zones[0].Id),
InstanceChargeType: pulumi.String("PostPaid"),
SystemDiskCategory: pulumi.String("cloud_efficiency"),
VswitchId: defaultSwitch.ID(),
})
if err != nil {
return err
}
_, err = compute.NewNestServiceInstance(ctx, "default", &compute.NestServiceInstanceArgs{
ServiceId: pulumi.String("service-dd475e6e468348799f0f"),
ServiceVersion: pulumi.String("1"),
ServiceInstanceName: pulumi.String(name),
ResourceGroupId: pulumi.String(_default.Groups[0].Id),
PaymentType: pulumi.String("Permanent"),
OperationMetadata: &compute.NestServiceInstanceOperationMetadataArgs{
OperationStartTime: pulumi.String("1681281179000"),
OperationEndTime: pulumi.String("1681367579000"),
Resources: defaultInstance.ID().ApplyT(func(id string) (string, error) {
return fmt.Sprintf(`    {
      "Type": "ResourceIds",
      "RegionId": "cn-hangzhou",
      "ResourceIds": {
      "ALIYUN::ECS::INSTANCE": [
        "%v"
        ]
      } 
    }
`, id), nil
}).(pulumi.StringOutput),
},
Tags: pulumi.StringMap{
"Created": pulumi.String("TF"),
"For": pulumi.String("ServiceInstance"),
},
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;
return await Deployment.RunAsync(() => 
{
    var config = new Config();
    var name = config.Get("name") ?? "tfexample";
    var @default = AliCloud.ResourceManager.GetResourceGroups.Invoke();
    var defaultGetZones = AliCloud.GetZones.Invoke(new()
    {
        AvailableDiskCategory = "cloud_efficiency",
        AvailableResourceCreation = "VSwitch",
    });
    var defaultGetInstanceTypes = AliCloud.Ecs.GetInstanceTypes.Invoke(new()
    {
        AvailabilityZone = defaultGetZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
        InstanceTypeFamily = "ecs.sn1ne",
    });
    var defaultGetImages = AliCloud.Ecs.GetImages.Invoke(new()
    {
        NameRegex = "^ubuntu_[0-9]+_[0-9]+_x64*",
        Owners = "system",
    });
    var defaultNetwork = new AliCloud.Vpc.Network("default", new()
    {
        VpcName = name,
        CidrBlock = "10.0.0.0/8",
    });
    var defaultSwitch = new AliCloud.Vpc.Switch("default", new()
    {
        VswitchName = name,
        CidrBlock = "10.1.0.0/16",
        VpcId = defaultNetwork.Id,
        ZoneId = defaultGetZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
    });
    var defaultSecurityGroup = new AliCloud.Ecs.SecurityGroup("default", new()
    {
        VpcId = defaultNetwork.Id,
    });
    var defaultInstance = new AliCloud.Ecs.Instance("default", new()
    {
        ImageId = defaultGetImages.Apply(getImagesResult => getImagesResult.Images[0]?.Id),
        InstanceType = defaultGetInstanceTypes.Apply(getInstanceTypesResult => getInstanceTypesResult.InstanceTypes[0]?.Id),
        SecurityGroups = new[]
        {
            defaultSecurityGroup,
        }.Select(__item => __item.Id).ToList(),
        InternetChargeType = "PayByTraffic",
        InternetMaxBandwidthOut = 10,
        AvailabilityZone = defaultGetZones.Apply(getZonesResult => getZonesResult.Zones[0]?.Id),
        InstanceChargeType = "PostPaid",
        SystemDiskCategory = "cloud_efficiency",
        VswitchId = defaultSwitch.Id,
    });
    var defaultNestServiceInstance = new AliCloud.Compute.NestServiceInstance("default", new()
    {
        ServiceId = "service-dd475e6e468348799f0f",
        ServiceVersion = "1",
        ServiceInstanceName = name,
        ResourceGroupId = @default.Apply(@default => @default.Apply(getResourceGroupsResult => getResourceGroupsResult.Groups[0]?.Id)),
        PaymentType = "Permanent",
        OperationMetadata = new AliCloud.Compute.Inputs.NestServiceInstanceOperationMetadataArgs
        {
            OperationStartTime = "1681281179000",
            OperationEndTime = "1681367579000",
            Resources = defaultInstance.Id.Apply(id => @$"    {{
      ""Type"": ""ResourceIds"",
      ""RegionId"": ""cn-hangzhou"",
      ""ResourceIds"": {{
      ""ALIYUN::ECS::INSTANCE"": [
        ""{id}""
        ]
      }} 
    }}
"),
        },
        Tags = 
        {
            { "Created", "TF" },
            { "For", "ServiceInstance" },
        },
    });
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.resourcemanager.ResourcemanagerFunctions;
import com.pulumi.alicloud.resourcemanager.inputs.GetResourceGroupsArgs;
import com.pulumi.alicloud.AlicloudFunctions;
import com.pulumi.alicloud.inputs.GetZonesArgs;
import com.pulumi.alicloud.ecs.EcsFunctions;
import com.pulumi.alicloud.ecs.inputs.GetInstanceTypesArgs;
import com.pulumi.alicloud.ecs.inputs.GetImagesArgs;
import com.pulumi.alicloud.vpc.Network;
import com.pulumi.alicloud.vpc.NetworkArgs;
import com.pulumi.alicloud.vpc.Switch;
import com.pulumi.alicloud.vpc.SwitchArgs;
import com.pulumi.alicloud.ecs.SecurityGroup;
import com.pulumi.alicloud.ecs.SecurityGroupArgs;
import com.pulumi.alicloud.ecs.Instance;
import com.pulumi.alicloud.ecs.InstanceArgs;
import com.pulumi.alicloud.compute.NestServiceInstance;
import com.pulumi.alicloud.compute.NestServiceInstanceArgs;
import com.pulumi.alicloud.compute.inputs.NestServiceInstanceOperationMetadataArgs;
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) {
        final var config = ctx.config();
        final var name = config.get("name").orElse("tfexample");
        final var default = ResourcemanagerFunctions.getResourceGroups();
        final var defaultGetZones = AlicloudFunctions.getZones(GetZonesArgs.builder()
            .availableDiskCategory("cloud_efficiency")
            .availableResourceCreation("VSwitch")
            .build());
        final var defaultGetInstanceTypes = EcsFunctions.getInstanceTypes(GetInstanceTypesArgs.builder()
            .availabilityZone(defaultGetZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
            .instanceTypeFamily("ecs.sn1ne")
            .build());
        final var defaultGetImages = EcsFunctions.getImages(GetImagesArgs.builder()
            .nameRegex("^ubuntu_[0-9]+_[0-9]+_x64*")
            .owners("system")
            .build());
        var defaultNetwork = new Network("defaultNetwork", NetworkArgs.builder()
            .vpcName(name)
            .cidrBlock("10.0.0.0/8")
            .build());
        var defaultSwitch = new Switch("defaultSwitch", SwitchArgs.builder()
            .vswitchName(name)
            .cidrBlock("10.1.0.0/16")
            .vpcId(defaultNetwork.id())
            .zoneId(defaultGetZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
            .build());
        var defaultSecurityGroup = new SecurityGroup("defaultSecurityGroup", SecurityGroupArgs.builder()
            .vpcId(defaultNetwork.id())
            .build());
        var defaultInstance = new Instance("defaultInstance", InstanceArgs.builder()
            .imageId(defaultGetImages.applyValue(getImagesResult -> getImagesResult.images()[0].id()))
            .instanceType(defaultGetInstanceTypes.applyValue(getInstanceTypesResult -> getInstanceTypesResult.instanceTypes()[0].id()))
            .securityGroups(defaultSecurityGroup.stream().map(element -> element.id()).collect(toList()))
            .internetChargeType("PayByTraffic")
            .internetMaxBandwidthOut("10")
            .availabilityZone(defaultGetZones.applyValue(getZonesResult -> getZonesResult.zones()[0].id()))
            .instanceChargeType("PostPaid")
            .systemDiskCategory("cloud_efficiency")
            .vswitchId(defaultSwitch.id())
            .build());
        var defaultNestServiceInstance = new NestServiceInstance("defaultNestServiceInstance", NestServiceInstanceArgs.builder()
            .serviceId("service-dd475e6e468348799f0f")
            .serviceVersion("1")
            .serviceInstanceName(name)
            .resourceGroupId(default_.groups()[0].id())
            .paymentType("Permanent")
            .operationMetadata(NestServiceInstanceOperationMetadataArgs.builder()
                .operationStartTime("1681281179000")
                .operationEndTime("1681367579000")
                .resources(defaultInstance.id().applyValue(id -> """
    {
      "Type": "ResourceIds",
      "RegionId": "cn-hangzhou",
      "ResourceIds": {
      "ALIYUN::ECS::INSTANCE": [
        "%s"
        ]
      } 
    }
", id)))
                .build())
            .tags(Map.ofEntries(
                Map.entry("Created", "TF"),
                Map.entry("For", "ServiceInstance")
            ))
            .build());
    }
}
Coming soon!
Create NestServiceInstance Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new NestServiceInstance(name: string, args: NestServiceInstanceArgs, opts?: CustomResourceOptions);@overload
def NestServiceInstance(resource_name: str,
                        args: NestServiceInstanceArgs,
                        opts: Optional[ResourceOptions] = None)
@overload
def NestServiceInstance(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        service_id: Optional[str] = None,
                        service_version: Optional[str] = None,
                        operation_metadata: Optional[NestServiceInstanceOperationMetadataArgs] = None,
                        commodity: Optional[NestServiceInstanceCommodityArgs] = None,
                        parameters: Optional[str] = None,
                        payment_type: Optional[str] = None,
                        resource_group_id: Optional[str] = None,
                        enable_user_prometheus: Optional[bool] = None,
                        service_instance_name: Optional[str] = None,
                        enable_instance_ops: Optional[bool] = None,
                        specification_name: Optional[str] = None,
                        tags: Optional[Mapping[str, str]] = None,
                        template_name: Optional[str] = None)func NewNestServiceInstance(ctx *Context, name string, args NestServiceInstanceArgs, opts ...ResourceOption) (*NestServiceInstance, error)public NestServiceInstance(string name, NestServiceInstanceArgs args, CustomResourceOptions? opts = null)
public NestServiceInstance(String name, NestServiceInstanceArgs args)
public NestServiceInstance(String name, NestServiceInstanceArgs args, CustomResourceOptions options)
type: alicloud:compute:NestServiceInstance
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 NestServiceInstanceArgs
- 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 NestServiceInstanceArgs
- 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 NestServiceInstanceArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args NestServiceInstanceArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args NestServiceInstanceArgs
- 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 nestServiceInstanceResource = new AliCloud.Compute.NestServiceInstance("nestServiceInstanceResource", new()
{
    ServiceId = "string",
    ServiceVersion = "string",
    OperationMetadata = new AliCloud.Compute.Inputs.NestServiceInstanceOperationMetadataArgs
    {
        OperatedServiceInstanceId = "string",
        OperationEndTime = "string",
        OperationStartTime = "string",
        Resources = "string",
    },
    Commodity = new AliCloud.Compute.Inputs.NestServiceInstanceCommodityArgs
    {
        PayPeriod = 0,
        PayPeriodUnit = "string",
    },
    Parameters = "string",
    PaymentType = "string",
    ResourceGroupId = "string",
    EnableUserPrometheus = false,
    ServiceInstanceName = "string",
    EnableInstanceOps = false,
    SpecificationName = "string",
    Tags = 
    {
        { "string", "string" },
    },
    TemplateName = "string",
});
example, err := compute.NewNestServiceInstance(ctx, "nestServiceInstanceResource", &compute.NestServiceInstanceArgs{
	ServiceId:      pulumi.String("string"),
	ServiceVersion: pulumi.String("string"),
	OperationMetadata: &compute.NestServiceInstanceOperationMetadataArgs{
		OperatedServiceInstanceId: pulumi.String("string"),
		OperationEndTime:          pulumi.String("string"),
		OperationStartTime:        pulumi.String("string"),
		Resources:                 pulumi.String("string"),
	},
	Commodity: &compute.NestServiceInstanceCommodityArgs{
		PayPeriod:     pulumi.Int(0),
		PayPeriodUnit: pulumi.String("string"),
	},
	Parameters:           pulumi.String("string"),
	PaymentType:          pulumi.String("string"),
	ResourceGroupId:      pulumi.String("string"),
	EnableUserPrometheus: pulumi.Bool(false),
	ServiceInstanceName:  pulumi.String("string"),
	EnableInstanceOps:    pulumi.Bool(false),
	SpecificationName:    pulumi.String("string"),
	Tags: pulumi.StringMap{
		"string": pulumi.String("string"),
	},
	TemplateName: pulumi.String("string"),
})
var nestServiceInstanceResource = new NestServiceInstance("nestServiceInstanceResource", NestServiceInstanceArgs.builder()
    .serviceId("string")
    .serviceVersion("string")
    .operationMetadata(NestServiceInstanceOperationMetadataArgs.builder()
        .operatedServiceInstanceId("string")
        .operationEndTime("string")
        .operationStartTime("string")
        .resources("string")
        .build())
    .commodity(NestServiceInstanceCommodityArgs.builder()
        .payPeriod(0)
        .payPeriodUnit("string")
        .build())
    .parameters("string")
    .paymentType("string")
    .resourceGroupId("string")
    .enableUserPrometheus(false)
    .serviceInstanceName("string")
    .enableInstanceOps(false)
    .specificationName("string")
    .tags(Map.of("string", "string"))
    .templateName("string")
    .build());
nest_service_instance_resource = alicloud.compute.NestServiceInstance("nestServiceInstanceResource",
    service_id="string",
    service_version="string",
    operation_metadata={
        "operated_service_instance_id": "string",
        "operation_end_time": "string",
        "operation_start_time": "string",
        "resources": "string",
    },
    commodity={
        "pay_period": 0,
        "pay_period_unit": "string",
    },
    parameters="string",
    payment_type="string",
    resource_group_id="string",
    enable_user_prometheus=False,
    service_instance_name="string",
    enable_instance_ops=False,
    specification_name="string",
    tags={
        "string": "string",
    },
    template_name="string")
const nestServiceInstanceResource = new alicloud.compute.NestServiceInstance("nestServiceInstanceResource", {
    serviceId: "string",
    serviceVersion: "string",
    operationMetadata: {
        operatedServiceInstanceId: "string",
        operationEndTime: "string",
        operationStartTime: "string",
        resources: "string",
    },
    commodity: {
        payPeriod: 0,
        payPeriodUnit: "string",
    },
    parameters: "string",
    paymentType: "string",
    resourceGroupId: "string",
    enableUserPrometheus: false,
    serviceInstanceName: "string",
    enableInstanceOps: false,
    specificationName: "string",
    tags: {
        string: "string",
    },
    templateName: "string",
});
type: alicloud:compute:NestServiceInstance
properties:
    commodity:
        payPeriod: 0
        payPeriodUnit: string
    enableInstanceOps: false
    enableUserPrometheus: false
    operationMetadata:
        operatedServiceInstanceId: string
        operationEndTime: string
        operationStartTime: string
        resources: string
    parameters: string
    paymentType: string
    resourceGroupId: string
    serviceId: string
    serviceInstanceName: string
    serviceVersion: string
    specificationName: string
    tags:
        string: string
    templateName: string
NestServiceInstance 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 NestServiceInstance resource accepts the following input properties:
- ServiceId string
- The ID of the service.
- ServiceVersion string
- The version of the service.
- Commodity
Pulumi.Ali Cloud. Compute. Inputs. Nest Service Instance Commodity 
- The order information of cloud market. See commoditybelow.
- EnableInstance boolOps 
- Whether the service instance has the O&M function. Default value: false. Valid values:
- EnableUser boolPrometheus 
- Whether Prometheus monitoring is enabled. Default value: false. Valid values:
- OperationMetadata Pulumi.Ali Cloud. Compute. Inputs. Nest Service Instance Operation Metadata 
- The configuration of O&M. See operation_metadatabelow.
- Parameters string
- The parameters entered by the deployment service instance.
- PaymentType string
- The type of payment. Valid values: Permanent,Subscription,PayAsYouGo,CustomFixTime.
- ResourceGroup stringId 
- The ID of the resource group.
- ServiceInstance stringName 
- The name of the Service Instance.
- SpecificationName string
- The name of the specification.
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- TemplateName string
- The name of the template.
- ServiceId string
- The ID of the service.
- ServiceVersion string
- The version of the service.
- Commodity
NestService Instance Commodity Args 
- The order information of cloud market. See commoditybelow.
- EnableInstance boolOps 
- Whether the service instance has the O&M function. Default value: false. Valid values:
- EnableUser boolPrometheus 
- Whether Prometheus monitoring is enabled. Default value: false. Valid values:
- OperationMetadata NestService Instance Operation Metadata Args 
- The configuration of O&M. See operation_metadatabelow.
- Parameters string
- The parameters entered by the deployment service instance.
- PaymentType string
- The type of payment. Valid values: Permanent,Subscription,PayAsYouGo,CustomFixTime.
- ResourceGroup stringId 
- The ID of the resource group.
- ServiceInstance stringName 
- The name of the Service Instance.
- SpecificationName string
- The name of the specification.
- map[string]string
- A mapping of tags to assign to the resource.
- TemplateName string
- The name of the template.
- serviceId String
- The ID of the service.
- serviceVersion String
- The version of the service.
- commodity
NestService Instance Commodity 
- The order information of cloud market. See commoditybelow.
- enableInstance BooleanOps 
- Whether the service instance has the O&M function. Default value: false. Valid values:
- enableUser BooleanPrometheus 
- Whether Prometheus monitoring is enabled. Default value: false. Valid values:
- operationMetadata NestService Instance Operation Metadata 
- The configuration of O&M. See operation_metadatabelow.
- parameters String
- The parameters entered by the deployment service instance.
- paymentType String
- The type of payment. Valid values: Permanent,Subscription,PayAsYouGo,CustomFixTime.
- resourceGroup StringId 
- The ID of the resource group.
- serviceInstance StringName 
- The name of the Service Instance.
- specificationName String
- The name of the specification.
- Map<String,String>
- A mapping of tags to assign to the resource.
- templateName String
- The name of the template.
- serviceId string
- The ID of the service.
- serviceVersion string
- The version of the service.
- commodity
NestService Instance Commodity 
- The order information of cloud market. See commoditybelow.
- enableInstance booleanOps 
- Whether the service instance has the O&M function. Default value: false. Valid values:
- enableUser booleanPrometheus 
- Whether Prometheus monitoring is enabled. Default value: false. Valid values:
- operationMetadata NestService Instance Operation Metadata 
- The configuration of O&M. See operation_metadatabelow.
- parameters string
- The parameters entered by the deployment service instance.
- paymentType string
- The type of payment. Valid values: Permanent,Subscription,PayAsYouGo,CustomFixTime.
- resourceGroup stringId 
- The ID of the resource group.
- serviceInstance stringName 
- The name of the Service Instance.
- specificationName string
- The name of the specification.
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- templateName string
- The name of the template.
- service_id str
- The ID of the service.
- service_version str
- The version of the service.
- commodity
NestService Instance Commodity Args 
- The order information of cloud market. See commoditybelow.
- enable_instance_ boolops 
- Whether the service instance has the O&M function. Default value: false. Valid values:
- enable_user_ boolprometheus 
- Whether Prometheus monitoring is enabled. Default value: false. Valid values:
- operation_metadata NestService Instance Operation Metadata Args 
- The configuration of O&M. See operation_metadatabelow.
- parameters str
- The parameters entered by the deployment service instance.
- payment_type str
- The type of payment. Valid values: Permanent,Subscription,PayAsYouGo,CustomFixTime.
- resource_group_ strid 
- The ID of the resource group.
- service_instance_ strname 
- The name of the Service Instance.
- specification_name str
- The name of the specification.
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- template_name str
- The name of the template.
- serviceId String
- The ID of the service.
- serviceVersion String
- The version of the service.
- commodity Property Map
- The order information of cloud market. See commoditybelow.
- enableInstance BooleanOps 
- Whether the service instance has the O&M function. Default value: false. Valid values:
- enableUser BooleanPrometheus 
- Whether Prometheus monitoring is enabled. Default value: false. Valid values:
- operationMetadata Property Map
- The configuration of O&M. See operation_metadatabelow.
- parameters String
- The parameters entered by the deployment service instance.
- paymentType String
- The type of payment. Valid values: Permanent,Subscription,PayAsYouGo,CustomFixTime.
- resourceGroup StringId 
- The ID of the resource group.
- serviceInstance StringName 
- The name of the Service Instance.
- specificationName String
- The name of the specification.
- Map<String>
- A mapping of tags to assign to the resource.
- templateName String
- The name of the template.
Outputs
All input properties are implicitly available as output properties. Additionally, the NestServiceInstance resource produces the following output properties:
Look up Existing NestServiceInstance Resource
Get an existing NestServiceInstance 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?: NestServiceInstanceState, opts?: CustomResourceOptions): NestServiceInstance@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        commodity: Optional[NestServiceInstanceCommodityArgs] = None,
        enable_instance_ops: Optional[bool] = None,
        enable_user_prometheus: Optional[bool] = None,
        operation_metadata: Optional[NestServiceInstanceOperationMetadataArgs] = None,
        parameters: Optional[str] = None,
        payment_type: Optional[str] = None,
        resource_group_id: Optional[str] = None,
        service_id: Optional[str] = None,
        service_instance_name: Optional[str] = None,
        service_version: Optional[str] = None,
        specification_name: Optional[str] = None,
        status: Optional[str] = None,
        tags: Optional[Mapping[str, str]] = None,
        template_name: Optional[str] = None) -> NestServiceInstancefunc GetNestServiceInstance(ctx *Context, name string, id IDInput, state *NestServiceInstanceState, opts ...ResourceOption) (*NestServiceInstance, error)public static NestServiceInstance Get(string name, Input<string> id, NestServiceInstanceState? state, CustomResourceOptions? opts = null)public static NestServiceInstance get(String name, Output<String> id, NestServiceInstanceState state, CustomResourceOptions options)Resource lookup is not supported in YAML- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Commodity
Pulumi.Ali Cloud. Compute. Inputs. Nest Service Instance Commodity 
- The order information of cloud market. See commoditybelow.
- EnableInstance boolOps 
- Whether the service instance has the O&M function. Default value: false. Valid values:
- EnableUser boolPrometheus 
- Whether Prometheus monitoring is enabled. Default value: false. Valid values:
- OperationMetadata Pulumi.Ali Cloud. Compute. Inputs. Nest Service Instance Operation Metadata 
- The configuration of O&M. See operation_metadatabelow.
- Parameters string
- The parameters entered by the deployment service instance.
- PaymentType string
- The type of payment. Valid values: Permanent,Subscription,PayAsYouGo,CustomFixTime.
- ResourceGroup stringId 
- The ID of the resource group.
- ServiceId string
- The ID of the service.
- ServiceInstance stringName 
- The name of the Service Instance.
- ServiceVersion string
- The version of the service.
- SpecificationName string
- The name of the specification.
- Status string
- The status of the Service Instance.
- Dictionary<string, string>
- A mapping of tags to assign to the resource.
- TemplateName string
- The name of the template.
- Commodity
NestService Instance Commodity Args 
- The order information of cloud market. See commoditybelow.
- EnableInstance boolOps 
- Whether the service instance has the O&M function. Default value: false. Valid values:
- EnableUser boolPrometheus 
- Whether Prometheus monitoring is enabled. Default value: false. Valid values:
- OperationMetadata NestService Instance Operation Metadata Args 
- The configuration of O&M. See operation_metadatabelow.
- Parameters string
- The parameters entered by the deployment service instance.
- PaymentType string
- The type of payment. Valid values: Permanent,Subscription,PayAsYouGo,CustomFixTime.
- ResourceGroup stringId 
- The ID of the resource group.
- ServiceId string
- The ID of the service.
- ServiceInstance stringName 
- The name of the Service Instance.
- ServiceVersion string
- The version of the service.
- SpecificationName string
- The name of the specification.
- Status string
- The status of the Service Instance.
- map[string]string
- A mapping of tags to assign to the resource.
- TemplateName string
- The name of the template.
- commodity
NestService Instance Commodity 
- The order information of cloud market. See commoditybelow.
- enableInstance BooleanOps 
- Whether the service instance has the O&M function. Default value: false. Valid values:
- enableUser BooleanPrometheus 
- Whether Prometheus monitoring is enabled. Default value: false. Valid values:
- operationMetadata NestService Instance Operation Metadata 
- The configuration of O&M. See operation_metadatabelow.
- parameters String
- The parameters entered by the deployment service instance.
- paymentType String
- The type of payment. Valid values: Permanent,Subscription,PayAsYouGo,CustomFixTime.
- resourceGroup StringId 
- The ID of the resource group.
- serviceId String
- The ID of the service.
- serviceInstance StringName 
- The name of the Service Instance.
- serviceVersion String
- The version of the service.
- specificationName String
- The name of the specification.
- status String
- The status of the Service Instance.
- Map<String,String>
- A mapping of tags to assign to the resource.
- templateName String
- The name of the template.
- commodity
NestService Instance Commodity 
- The order information of cloud market. See commoditybelow.
- enableInstance booleanOps 
- Whether the service instance has the O&M function. Default value: false. Valid values:
- enableUser booleanPrometheus 
- Whether Prometheus monitoring is enabled. Default value: false. Valid values:
- operationMetadata NestService Instance Operation Metadata 
- The configuration of O&M. See operation_metadatabelow.
- parameters string
- The parameters entered by the deployment service instance.
- paymentType string
- The type of payment. Valid values: Permanent,Subscription,PayAsYouGo,CustomFixTime.
- resourceGroup stringId 
- The ID of the resource group.
- serviceId string
- The ID of the service.
- serviceInstance stringName 
- The name of the Service Instance.
- serviceVersion string
- The version of the service.
- specificationName string
- The name of the specification.
- status string
- The status of the Service Instance.
- {[key: string]: string}
- A mapping of tags to assign to the resource.
- templateName string
- The name of the template.
- commodity
NestService Instance Commodity Args 
- The order information of cloud market. See commoditybelow.
- enable_instance_ boolops 
- Whether the service instance has the O&M function. Default value: false. Valid values:
- enable_user_ boolprometheus 
- Whether Prometheus monitoring is enabled. Default value: false. Valid values:
- operation_metadata NestService Instance Operation Metadata Args 
- The configuration of O&M. See operation_metadatabelow.
- parameters str
- The parameters entered by the deployment service instance.
- payment_type str
- The type of payment. Valid values: Permanent,Subscription,PayAsYouGo,CustomFixTime.
- resource_group_ strid 
- The ID of the resource group.
- service_id str
- The ID of the service.
- service_instance_ strname 
- The name of the Service Instance.
- service_version str
- The version of the service.
- specification_name str
- The name of the specification.
- status str
- The status of the Service Instance.
- Mapping[str, str]
- A mapping of tags to assign to the resource.
- template_name str
- The name of the template.
- commodity Property Map
- The order information of cloud market. See commoditybelow.
- enableInstance BooleanOps 
- Whether the service instance has the O&M function. Default value: false. Valid values:
- enableUser BooleanPrometheus 
- Whether Prometheus monitoring is enabled. Default value: false. Valid values:
- operationMetadata Property Map
- The configuration of O&M. See operation_metadatabelow.
- parameters String
- The parameters entered by the deployment service instance.
- paymentType String
- The type of payment. Valid values: Permanent,Subscription,PayAsYouGo,CustomFixTime.
- resourceGroup StringId 
- The ID of the resource group.
- serviceId String
- The ID of the service.
- serviceInstance StringName 
- The name of the Service Instance.
- serviceVersion String
- The version of the service.
- specificationName String
- The name of the specification.
- status String
- The status of the Service Instance.
- Map<String>
- A mapping of tags to assign to the resource.
- templateName String
- The name of the template.
Supporting Types
NestServiceInstanceCommodity, NestServiceInstanceCommodityArgs        
- PayPeriod int
- Length of purchase.
- PayPeriod stringUnit 
- Duration unit. Valid values: Year,Month,Day.
- PayPeriod int
- Length of purchase.
- PayPeriod stringUnit 
- Duration unit. Valid values: Year,Month,Day.
- payPeriod Integer
- Length of purchase.
- payPeriod StringUnit 
- Duration unit. Valid values: Year,Month,Day.
- payPeriod number
- Length of purchase.
- payPeriod stringUnit 
- Duration unit. Valid values: Year,Month,Day.
- pay_period int
- Length of purchase.
- pay_period_ strunit 
- Duration unit. Valid values: Year,Month,Day.
- payPeriod Number
- Length of purchase.
- payPeriod StringUnit 
- Duration unit. Valid values: Year,Month,Day.
NestServiceInstanceOperationMetadata, NestServiceInstanceOperationMetadataArgs          
- OperatedService stringInstance Id 
- The ID of the imported service instance.
- OperationEnd stringTime 
- The end time of O&M.
- OperationStart stringTime 
- The start time of O&M.
- Resources string
- The list of imported resources.
- OperatedService stringInstance Id 
- The ID of the imported service instance.
- OperationEnd stringTime 
- The end time of O&M.
- OperationStart stringTime 
- The start time of O&M.
- Resources string
- The list of imported resources.
- operatedService StringInstance Id 
- The ID of the imported service instance.
- operationEnd StringTime 
- The end time of O&M.
- operationStart StringTime 
- The start time of O&M.
- resources String
- The list of imported resources.
- operatedService stringInstance Id 
- The ID of the imported service instance.
- operationEnd stringTime 
- The end time of O&M.
- operationStart stringTime 
- The start time of O&M.
- resources string
- The list of imported resources.
- operated_service_ strinstance_ id 
- The ID of the imported service instance.
- operation_end_ strtime 
- The end time of O&M.
- operation_start_ strtime 
- The start time of O&M.
- resources str
- The list of imported resources.
- operatedService StringInstance Id 
- The ID of the imported service instance.
- operationEnd StringTime 
- The end time of O&M.
- operationStart StringTime 
- The start time of O&M.
- resources String
- The list of imported resources.
Import
Compute Nest Service Instance can be imported using the id, e.g.
$ pulumi import alicloud:compute/nestServiceInstance:NestServiceInstance example <id>
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- Alibaba Cloud pulumi/pulumi-alicloud
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the alicloudTerraform Provider.