All Products
Search
Document Center

Resource Orchestration Service:Lindorm resources

Last Updated:Jun 22, 2026

Lists the AssociationProperty values available for Lindorm resources in ROS templates.

AssociationProperty value

Description

Corresponding AssociationPropertyMetadata

ALIYUN::Lindorm::Instance::InstanceId

Retrieves a list of Lindorm instances.

  • RegionId: The ID of the region. The default value is the region of the stack.

  • SupportEngine: The data engine that the instances support. Valid values:

    • 1: Search engine.

    • 2: LindormTSDB.

    • 4: LindormTable.

    • 8: File engine.

  • ServiceType: The type of the instance. Valid values:

    • lindorm: A single-zone Lindorm instance.

    • lindorm_multizone: A multi-zone Lindorm instance.

    • serverless_lindorm: A Lindorm Serverless instance.

    • lindorm_standalone: A Lindorm standalone instance.

    • lts: The Lindorm Tunnel Service type.

Example code

JSON example:

{
  "ROSTemplateFormatVersion": "2015-09-01",
  "Parameters": {
    "RegionId": {
      "Type": "String",
      "AssociationProperty": "ALIYUN::ECS::RegionId"
    },
    "LindormInstanceId": {
      "Type": "String",
      "AssociationProperty": "ALIYUN::Lindorm::Instance::InstanceId",
      "AssociationPropertyMetadata": {
        "RegionId": "${RegionId}",
        "SupportEngine": 1,
        "ServiceType": "lindorm"
      }
    }
  }
}

YAML example:

ROSTemplateFormatVersion: '2015-09-01'
Parameters:
  RegionId:
    Type: String
    AssociationProperty: ALIYUN::ECS::RegionId
  LindormInstanceId:
    Type: String
    AssociationProperty: ALIYUN::Lindorm::Instance::InstanceId
    AssociationPropertyMetadata:
      RegionId: ${RegionId}
      SupportEngine: 1
      ServiceType: lindorm