1. Packages
  2. Alibaba Cloud Provider
  3. API Docs
  4. compute
  5. getNestServiceInstances
Alibaba Cloud v3.76.0 published on Tuesday, Apr 8, 2025 by Pulumi

alicloud.compute.getNestServiceInstances

Explore with Pulumi AI

This data source provides the Compute Nest Service Instances of the current Alibaba Cloud user.

NOTE: Available in v1.205.0+.

Example Usage

Basic Usage

import * as pulumi from "@pulumi/pulumi";
import * as alicloud from "@pulumi/alicloud";

const ids = alicloud.compute.getNestServiceInstances({
    ids: ["example_id"],
});
export const armsPrometheisId1 = ids.then(ids => ids.serviceInstances?.[0]?.id);
const nameRegex = alicloud.compute.getNestServiceInstances({
    nameRegex: "tf-example",
});
export const armsPrometheisId2 = nameRegex.then(nameRegex => nameRegex.serviceInstances?.[0]?.id);
Copy
import pulumi
import pulumi_alicloud as alicloud

ids = alicloud.compute.get_nest_service_instances(ids=["example_id"])
pulumi.export("armsPrometheisId1", ids.service_instances[0].id)
name_regex = alicloud.compute.get_nest_service_instances(name_regex="tf-example")
pulumi.export("armsPrometheisId2", name_regex.service_instances[0].id)
Copy
package main

import (
	"github.com/pulumi/pulumi-alicloud/sdk/v3/go/alicloud/compute"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		ids, err := compute.GetNestServiceInstances(ctx, &compute.GetNestServiceInstancesArgs{
			Ids: []string{
				"example_id",
			},
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("armsPrometheisId1", ids.ServiceInstances[0].Id)
		nameRegex, err := compute.GetNestServiceInstances(ctx, &compute.GetNestServiceInstancesArgs{
			NameRegex: pulumi.StringRef("tf-example"),
		}, nil)
		if err != nil {
			return err
		}
		ctx.Export("armsPrometheisId2", nameRegex.ServiceInstances[0].Id)
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AliCloud = Pulumi.AliCloud;

return await Deployment.RunAsync(() => 
{
    var ids = AliCloud.Compute.GetNestServiceInstances.Invoke(new()
    {
        Ids = new[]
        {
            "example_id",
        },
    });

    var nameRegex = AliCloud.Compute.GetNestServiceInstances.Invoke(new()
    {
        NameRegex = "tf-example",
    });

    return new Dictionary<string, object?>
    {
        ["armsPrometheisId1"] = ids.Apply(getNestServiceInstancesResult => getNestServiceInstancesResult.ServiceInstances[0]?.Id),
        ["armsPrometheisId2"] = nameRegex.Apply(getNestServiceInstancesResult => getNestServiceInstancesResult.ServiceInstances[0]?.Id),
    };
});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.alicloud.compute.ComputeFunctions;
import com.pulumi.alicloud.compute.inputs.GetNestServiceInstancesArgs;
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 ids = ComputeFunctions.getNestServiceInstances(GetNestServiceInstancesArgs.builder()
            .ids("example_id")
            .build());

        ctx.export("armsPrometheisId1", ids.applyValue(getNestServiceInstancesResult -> getNestServiceInstancesResult.serviceInstances()[0].id()));
        final var nameRegex = ComputeFunctions.getNestServiceInstances(GetNestServiceInstancesArgs.builder()
            .nameRegex("tf-example")
            .build());

        ctx.export("armsPrometheisId2", nameRegex.applyValue(getNestServiceInstancesResult -> getNestServiceInstancesResult.serviceInstances()[0].id()));
    }
}
Copy
variables:
  ids:
    fn::invoke:
      function: alicloud:compute:getNestServiceInstances
      arguments:
        ids:
          - example_id
  nameRegex:
    fn::invoke:
      function: alicloud:compute:getNestServiceInstances
      arguments:
        nameRegex: tf-example
outputs:
  armsPrometheisId1: ${ids.serviceInstances[0].id}
  armsPrometheisId2: ${nameRegex.serviceInstances[0].id}
Copy

Using getNestServiceInstances

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getNestServiceInstances(args: GetNestServiceInstancesArgs, opts?: InvokeOptions): Promise<GetNestServiceInstancesResult>
function getNestServiceInstancesOutput(args: GetNestServiceInstancesOutputArgs, opts?: InvokeOptions): Output<GetNestServiceInstancesResult>
Copy
def get_nest_service_instances(filters: Optional[Sequence[GetNestServiceInstancesFilter]] = None,
                               ids: Optional[Sequence[str]] = None,
                               name_regex: Optional[str] = None,
                               output_file: Optional[str] = None,
                               status: Optional[str] = None,
                               tags: Optional[Mapping[str, str]] = None,
                               opts: Optional[InvokeOptions] = None) -> GetNestServiceInstancesResult
def get_nest_service_instances_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetNestServiceInstancesFilterArgs]]]] = None,
                               ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                               name_regex: Optional[pulumi.Input[str]] = None,
                               output_file: Optional[pulumi.Input[str]] = None,
                               status: Optional[pulumi.Input[str]] = None,
                               tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
                               opts: Optional[InvokeOptions] = None) -> Output[GetNestServiceInstancesResult]
Copy
func GetNestServiceInstances(ctx *Context, args *GetNestServiceInstancesArgs, opts ...InvokeOption) (*GetNestServiceInstancesResult, error)
func GetNestServiceInstancesOutput(ctx *Context, args *GetNestServiceInstancesOutputArgs, opts ...InvokeOption) GetNestServiceInstancesResultOutput
Copy

> Note: This function is named GetNestServiceInstances in the Go SDK.

public static class GetNestServiceInstances 
{
    public static Task<GetNestServiceInstancesResult> InvokeAsync(GetNestServiceInstancesArgs args, InvokeOptions? opts = null)
    public static Output<GetNestServiceInstancesResult> Invoke(GetNestServiceInstancesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetNestServiceInstancesResult> getNestServiceInstances(GetNestServiceInstancesArgs args, InvokeOptions options)
public static Output<GetNestServiceInstancesResult> getNestServiceInstances(GetNestServiceInstancesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: alicloud:compute/getNestServiceInstances:getNestServiceInstances
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

Filters Changes to this property will trigger replacement. List<Pulumi.AliCloud.Compute.Inputs.GetNestServiceInstancesFilter>
The conditions that are used to filter. See the following Block filter.
Ids Changes to this property will trigger replacement. List<string>
A list of Service Instance IDs.
NameRegex Changes to this property will trigger replacement. string
A regex string to filter results by Service Instance name.
OutputFile string
File name where to save data source results (after running pulumi preview).
Status Changes to this property will trigger replacement. string
The status of the Service Instance. Valid Values: Created, Deploying, DeployedFailed, Deployed, Upgrading, Deleting, Deleted, DeletedFailed.
Tags Changes to this property will trigger replacement. Dictionary<string, string>
A mapping of tags to assign to the resource.
Filters Changes to this property will trigger replacement. []GetNestServiceInstancesFilter
The conditions that are used to filter. See the following Block filter.
Ids Changes to this property will trigger replacement. []string
A list of Service Instance IDs.
NameRegex Changes to this property will trigger replacement. string
A regex string to filter results by Service Instance name.
OutputFile string
File name where to save data source results (after running pulumi preview).
Status Changes to this property will trigger replacement. string
The status of the Service Instance. Valid Values: Created, Deploying, DeployedFailed, Deployed, Upgrading, Deleting, Deleted, DeletedFailed.
Tags Changes to this property will trigger replacement. map[string]string
A mapping of tags to assign to the resource.
filters Changes to this property will trigger replacement. List<GetNestServiceInstancesFilter>
The conditions that are used to filter. See the following Block filter.
ids Changes to this property will trigger replacement. List<String>
A list of Service Instance IDs.
nameRegex Changes to this property will trigger replacement. String
A regex string to filter results by Service Instance name.
outputFile String
File name where to save data source results (after running pulumi preview).
status Changes to this property will trigger replacement. String
The status of the Service Instance. Valid Values: Created, Deploying, DeployedFailed, Deployed, Upgrading, Deleting, Deleted, DeletedFailed.
tags Changes to this property will trigger replacement. Map<String,String>
A mapping of tags to assign to the resource.
filters Changes to this property will trigger replacement. GetNestServiceInstancesFilter[]
The conditions that are used to filter. See the following Block filter.
ids Changes to this property will trigger replacement. string[]
A list of Service Instance IDs.
nameRegex Changes to this property will trigger replacement. string
A regex string to filter results by Service Instance name.
outputFile string
File name where to save data source results (after running pulumi preview).
status Changes to this property will trigger replacement. string
The status of the Service Instance. Valid Values: Created, Deploying, DeployedFailed, Deployed, Upgrading, Deleting, Deleted, DeletedFailed.
tags Changes to this property will trigger replacement. {[key: string]: string}
A mapping of tags to assign to the resource.
filters Changes to this property will trigger replacement. Sequence[GetNestServiceInstancesFilter]
The conditions that are used to filter. See the following Block filter.
ids Changes to this property will trigger replacement. Sequence[str]
A list of Service Instance IDs.
name_regex Changes to this property will trigger replacement. str
A regex string to filter results by Service Instance name.
output_file str
File name where to save data source results (after running pulumi preview).
status Changes to this property will trigger replacement. str
The status of the Service Instance. Valid Values: Created, Deploying, DeployedFailed, Deployed, Upgrading, Deleting, Deleted, DeletedFailed.
tags Changes to this property will trigger replacement. Mapping[str, str]
A mapping of tags to assign to the resource.
filters Changes to this property will trigger replacement. List<Property Map>
The conditions that are used to filter. See the following Block filter.
ids Changes to this property will trigger replacement. List<String>
A list of Service Instance IDs.
nameRegex Changes to this property will trigger replacement. String
A regex string to filter results by Service Instance name.
outputFile String
File name where to save data source results (after running pulumi preview).
status Changes to this property will trigger replacement. String
The status of the Service Instance. Valid Values: Created, Deploying, DeployedFailed, Deployed, Upgrading, Deleting, Deleted, DeletedFailed.
tags Changes to this property will trigger replacement. Map<String>
A mapping of tags to assign to the resource.

getNestServiceInstances Result

The following output properties are available:

Id string
The provider-assigned unique ID for this managed resource.
Ids List<string>
Names List<string>
A list of Service Instance names.
ServiceInstances List<Pulumi.AliCloud.Compute.Outputs.GetNestServiceInstancesServiceInstance>
A list of Service Instances. Each element contains the following attributes:
Filters List<Pulumi.AliCloud.Compute.Outputs.GetNestServiceInstancesFilter>
NameRegex string
OutputFile string
Status string
The status of the Service Instance.
Tags Dictionary<string, string>
The tag of the Service Instance.
Id string
The provider-assigned unique ID for this managed resource.
Ids []string
Names []string
A list of Service Instance names.
ServiceInstances []GetNestServiceInstancesServiceInstance
A list of Service Instances. Each element contains the following attributes:
Filters []GetNestServiceInstancesFilter
NameRegex string
OutputFile string
Status string
The status of the Service Instance.
Tags map[string]string
The tag of the Service Instance.
id String
The provider-assigned unique ID for this managed resource.
ids List<String>
names List<String>
A list of Service Instance names.
serviceInstances List<GetNestServiceInstancesServiceInstance>
A list of Service Instances. Each element contains the following attributes:
filters List<GetNestServiceInstancesFilter>
nameRegex String
outputFile String
status String
The status of the Service Instance.
tags Map<String,String>
The tag of the Service Instance.
id string
The provider-assigned unique ID for this managed resource.
ids string[]
names string[]
A list of Service Instance names.
serviceInstances GetNestServiceInstancesServiceInstance[]
A list of Service Instances. Each element contains the following attributes:
filters GetNestServiceInstancesFilter[]
nameRegex string
outputFile string
status string
The status of the Service Instance.
tags {[key: string]: string}
The tag of the Service Instance.
id str
The provider-assigned unique ID for this managed resource.
ids Sequence[str]
names Sequence[str]
A list of Service Instance names.
service_instances Sequence[GetNestServiceInstancesServiceInstance]
A list of Service Instances. Each element contains the following attributes:
filters Sequence[GetNestServiceInstancesFilter]
name_regex str
output_file str
status str
The status of the Service Instance.
tags Mapping[str, str]
The tag of the Service Instance.
id String
The provider-assigned unique ID for this managed resource.
ids List<String>
names List<String>
A list of Service Instance names.
serviceInstances List<Property Map>
A list of Service Instances. Each element contains the following attributes:
filters List<Property Map>
nameRegex String
outputFile String
status String
The status of the Service Instance.
tags Map<String>
The tag of the Service Instance.

Supporting Types

GetNestServiceInstancesFilter

Name string
The name of the service.
Values List<string>
Set of values that are accepted for the given field.
Name string
The name of the service.
Values []string
Set of values that are accepted for the given field.
name String
The name of the service.
values List<String>
Set of values that are accepted for the given field.
name string
The name of the service.
values string[]
Set of values that are accepted for the given field.
name str
The name of the service.
values Sequence[str]
Set of values that are accepted for the given field.
name String
The name of the service.
values List<String>
Set of values that are accepted for the given field.

GetNestServiceInstancesServiceInstance

EnableInstanceOps This property is required. bool
Whether the service instance has the O&M function.
Id This property is required. string
The ID of the Service Instance.
OperatedServiceInstanceId This property is required. string
The ID of the imported service instance.
OperationEndTime This property is required. string
The end time of O&M.
OperationStartTime This property is required. string
The start time of O&M.
Parameters This property is required. string
The parameters entered by the deployment service instance.
Resources This property is required. string
The list of imported resources.
ServiceInstanceId This property is required. string
The ID of the Service Instance.
ServiceInstanceName This property is required. string
The name of the Service Instance.
Services This property is required. List<Pulumi.AliCloud.Compute.Inputs.GetNestServiceInstancesServiceInstanceService>
Service details.
Source This property is required. string
The source of the Service Instance.
Status This property is required. string
The status of the Service Instance. Valid Values: Created, Deploying, DeployedFailed, Deployed, Upgrading, Deleting, Deleted, DeletedFailed.
Tags This property is required. Dictionary<string, string>
A mapping of tags to assign to the resource.
TemplateName This property is required. string
The name of the template.
EnableInstanceOps This property is required. bool
Whether the service instance has the O&M function.
Id This property is required. string
The ID of the Service Instance.
OperatedServiceInstanceId This property is required. string
The ID of the imported service instance.
OperationEndTime This property is required. string
The end time of O&M.
OperationStartTime This property is required. string
The start time of O&M.
Parameters This property is required. string
The parameters entered by the deployment service instance.
Resources This property is required. string
The list of imported resources.
ServiceInstanceId This property is required. string
The ID of the Service Instance.
ServiceInstanceName This property is required. string
The name of the Service Instance.
Services This property is required. []GetNestServiceInstancesServiceInstanceService
Service details.
Source This property is required. string
The source of the Service Instance.
Status This property is required. string
The status of the Service Instance. Valid Values: Created, Deploying, DeployedFailed, Deployed, Upgrading, Deleting, Deleted, DeletedFailed.
Tags This property is required. map[string]string
A mapping of tags to assign to the resource.
TemplateName This property is required. string
The name of the template.
enableInstanceOps This property is required. Boolean
Whether the service instance has the O&M function.
id This property is required. String
The ID of the Service Instance.
operatedServiceInstanceId This property is required. String
The ID of the imported service instance.
operationEndTime This property is required. String
The end time of O&M.
operationStartTime This property is required. String
The start time of O&M.
parameters This property is required. String
The parameters entered by the deployment service instance.
resources This property is required. String
The list of imported resources.
serviceInstanceId This property is required. String
The ID of the Service Instance.
serviceInstanceName This property is required. String
The name of the Service Instance.
services This property is required. List<GetNestServiceInstancesServiceInstanceService>
Service details.
source This property is required. String
The source of the Service Instance.
status This property is required. String
The status of the Service Instance. Valid Values: Created, Deploying, DeployedFailed, Deployed, Upgrading, Deleting, Deleted, DeletedFailed.
tags This property is required. Map<String,String>
A mapping of tags to assign to the resource.
templateName This property is required. String
The name of the template.
enableInstanceOps This property is required. boolean
Whether the service instance has the O&M function.
id This property is required. string
The ID of the Service Instance.
operatedServiceInstanceId This property is required. string
The ID of the imported service instance.
operationEndTime This property is required. string
The end time of O&M.
operationStartTime This property is required. string
The start time of O&M.
parameters This property is required. string
The parameters entered by the deployment service instance.
resources This property is required. string
The list of imported resources.
serviceInstanceId This property is required. string
The ID of the Service Instance.
serviceInstanceName This property is required. string
The name of the Service Instance.
services This property is required. GetNestServiceInstancesServiceInstanceService[]
Service details.
source This property is required. string
The source of the Service Instance.
status This property is required. string
The status of the Service Instance. Valid Values: Created, Deploying, DeployedFailed, Deployed, Upgrading, Deleting, Deleted, DeletedFailed.
tags This property is required. {[key: string]: string}
A mapping of tags to assign to the resource.
templateName This property is required. string
The name of the template.
enable_instance_ops This property is required. bool
Whether the service instance has the O&M function.
id This property is required. str
The ID of the Service Instance.
operated_service_instance_id This property is required. str
The ID of the imported service instance.
operation_end_time This property is required. str
The end time of O&M.
operation_start_time This property is required. str
The start time of O&M.
parameters This property is required. str
The parameters entered by the deployment service instance.
resources This property is required. str
The list of imported resources.
service_instance_id This property is required. str
The ID of the Service Instance.
service_instance_name This property is required. str
The name of the Service Instance.
services This property is required. Sequence[GetNestServiceInstancesServiceInstanceService]
Service details.
source This property is required. str
The source of the Service Instance.
status This property is required. str
The status of the Service Instance. Valid Values: Created, Deploying, DeployedFailed, Deployed, Upgrading, Deleting, Deleted, DeletedFailed.
tags This property is required. Mapping[str, str]
A mapping of tags to assign to the resource.
template_name This property is required. str
The name of the template.
enableInstanceOps This property is required. Boolean
Whether the service instance has the O&M function.
id This property is required. String
The ID of the Service Instance.
operatedServiceInstanceId This property is required. String
The ID of the imported service instance.
operationEndTime This property is required. String
The end time of O&M.
operationStartTime This property is required. String
The start time of O&M.
parameters This property is required. String
The parameters entered by the deployment service instance.
resources This property is required. String
The list of imported resources.
serviceInstanceId This property is required. String
The ID of the Service Instance.
serviceInstanceName This property is required. String
The name of the Service Instance.
services This property is required. List<Property Map>
Service details.
source This property is required. String
The source of the Service Instance.
status This property is required. String
The status of the Service Instance. Valid Values: Created, Deploying, DeployedFailed, Deployed, Upgrading, Deleting, Deleted, DeletedFailed.
tags This property is required. Map<String>
A mapping of tags to assign to the resource.
templateName This property is required. String
The name of the template.

GetNestServiceInstancesServiceInstanceService

DeployType This property is required. string
The type of the deployment.
PublishTime This property is required. string
The time of publish.
ServiceId This property is required. string
The id of the service.
ServiceInfos This property is required. List<Pulumi.AliCloud.Compute.Inputs.GetNestServiceInstancesServiceInstanceServiceServiceInfo>
Service information.
ServiceType This property is required. string
The type of the service.
Status This property is required. string
The status of the Service Instance. Valid Values: Created, Deploying, DeployedFailed, Deployed, Upgrading, Deleting, Deleted, DeletedFailed.
SupplierName This property is required. string
The name of the supplier.
SupplierUrl This property is required. string
The url of the supplier.
Version This property is required. string
The version of the service.
VersionName This property is required. string
The version name of the service.
DeployType This property is required. string
The type of the deployment.
PublishTime This property is required. string
The time of publish.
ServiceId This property is required. string
The id of the service.
ServiceInfos This property is required. []GetNestServiceInstancesServiceInstanceServiceServiceInfo
Service information.
ServiceType This property is required. string
The type of the service.
Status This property is required. string
The status of the Service Instance. Valid Values: Created, Deploying, DeployedFailed, Deployed, Upgrading, Deleting, Deleted, DeletedFailed.
SupplierName This property is required. string
The name of the supplier.
SupplierUrl This property is required. string
The url of the supplier.
Version This property is required. string
The version of the service.
VersionName This property is required. string
The version name of the service.
deployType This property is required. String
The type of the deployment.
publishTime This property is required. String
The time of publish.
serviceId This property is required. String
The id of the service.
serviceInfos This property is required. List<GetNestServiceInstancesServiceInstanceServiceServiceInfo>
Service information.
serviceType This property is required. String
The type of the service.
status This property is required. String
The status of the Service Instance. Valid Values: Created, Deploying, DeployedFailed, Deployed, Upgrading, Deleting, Deleted, DeletedFailed.
supplierName This property is required. String
The name of the supplier.
supplierUrl This property is required. String
The url of the supplier.
version This property is required. String
The version of the service.
versionName This property is required. String
The version name of the service.
deployType This property is required. string
The type of the deployment.
publishTime This property is required. string
The time of publish.
serviceId This property is required. string
The id of the service.
serviceInfos This property is required. GetNestServiceInstancesServiceInstanceServiceServiceInfo[]
Service information.
serviceType This property is required. string
The type of the service.
status This property is required. string
The status of the Service Instance. Valid Values: Created, Deploying, DeployedFailed, Deployed, Upgrading, Deleting, Deleted, DeletedFailed.
supplierName This property is required. string
The name of the supplier.
supplierUrl This property is required. string
The url of the supplier.
version This property is required. string
The version of the service.
versionName This property is required. string
The version name of the service.
deploy_type This property is required. str
The type of the deployment.
publish_time This property is required. str
The time of publish.
service_id This property is required. str
The id of the service.
service_infos This property is required. Sequence[GetNestServiceInstancesServiceInstanceServiceServiceInfo]
Service information.
service_type This property is required. str
The type of the service.
status This property is required. str
The status of the Service Instance. Valid Values: Created, Deploying, DeployedFailed, Deployed, Upgrading, Deleting, Deleted, DeletedFailed.
supplier_name This property is required. str
The name of the supplier.
supplier_url This property is required. str
The url of the supplier.
version This property is required. str
The version of the service.
version_name This property is required. str
The version name of the service.
deployType This property is required. String
The type of the deployment.
publishTime This property is required. String
The time of publish.
serviceId This property is required. String
The id of the service.
serviceInfos This property is required. List<Property Map>
Service information.
serviceType This property is required. String
The type of the service.
status This property is required. String
The status of the Service Instance. Valid Values: Created, Deploying, DeployedFailed, Deployed, Upgrading, Deleting, Deleted, DeletedFailed.
supplierName This property is required. String
The name of the supplier.
supplierUrl This property is required. String
The url of the supplier.
version This property is required. String
The version of the service.
versionName This property is required. String
The version name of the service.

GetNestServiceInstancesServiceInstanceServiceServiceInfo

Image This property is required. string
The image of the service.
Locale This property is required. string
The locale of the service.
Name This property is required. string
The name of the service.
ShortDescription This property is required. string
The short description of the service.
Image This property is required. string
The image of the service.
Locale This property is required. string
The locale of the service.
Name This property is required. string
The name of the service.
ShortDescription This property is required. string
The short description of the service.
image This property is required. String
The image of the service.
locale This property is required. String
The locale of the service.
name This property is required. String
The name of the service.
shortDescription This property is required. String
The short description of the service.
image This property is required. string
The image of the service.
locale This property is required. string
The locale of the service.
name This property is required. string
The name of the service.
shortDescription This property is required. string
The short description of the service.
image This property is required. str
The image of the service.
locale This property is required. str
The locale of the service.
name This property is required. str
The name of the service.
short_description This property is required. str
The short description of the service.
image This property is required. String
The image of the service.
locale This property is required. String
The locale of the service.
name This property is required. String
The name of the service.
shortDescription This property is required. String
The short description of the service.

Package Details

Repository
Alibaba Cloud pulumi/pulumi-alicloud
License
Apache-2.0
Notes
This Pulumi package is based on the alicloud Terraform Provider.