Esta página ainda não está disponível no idioma selecionado. Estamos trabalhando para adicionar mais opções de idiomas. Agradecemos sua compreensão.

Compute
Elastic Cloud Server
Huawei Cloud Flexus
Bare Metal Server
Auto Scaling
Image Management Service
Dedicated Host
FunctionGraph
Cloud Phone Host
Huawei Cloud EulerOS
Networking
Virtual Private Cloud
Elastic IP
Elastic Load Balance
NAT Gateway
Direct Connect
Virtual Private Network
VPC Endpoint
Cloud Connect
Enterprise Router
Enterprise Switch
Global Accelerator
Management & Governance
Cloud Eye
Identity and Access Management
Cloud Trace Service
Resource Formation Service
Tag Management Service
Log Tank Service
Config
Resource Access Manager
Simple Message Notification
Application Performance Management
Application Operations Management
Organizations
Optimization Advisor
IAM Identity Center
Cloud Operations Center
Resource Governance Center
Migration
Server Migration Service
Object Storage Migration Service
Cloud Data Migration
Migration Center
Cloud Ecosystem
KooGallery
Partner Center
User Support
My Account
Billing Center
Cost Center
Resource Center
Enterprise Management
Service Tickets
HUAWEI CLOUD (International) FAQs
ICP Filing
Support Plans
My Credentials
Customer Operation Capabilities
Partner Support Plans
Professional Services
Analytics
MapReduce Service
Data Lake Insight
CloudTable Service
Cloud Search Service
Data Lake Visualization
Data Ingestion Service
GaussDB(DWS)
DataArts Studio
Data Lake Factory
DataArts Lake Formation
IoT
IoT Device Access
Others
Product Pricing Details
System Permissions
Console Quick Start
Common FAQs
Instructions for Associating with a HUAWEI CLOUD Partner
Message Center
Security & Compliance
Security Technologies and Applications
Web Application Firewall
Host Security Service
Cloud Firewall
SecMaster
Anti-DDoS Service
Data Encryption Workshop
Database Security Service
Cloud Bastion Host
Data Security Center
Cloud Certificate Manager
Edge Security
Situation Awareness
Managed Threat Detection
Blockchain
Blockchain Service
Web3 Node Engine Service
Media Services
Media Processing Center
Video On Demand
Live
SparkRTC
MetaStudio
Storage
Object Storage Service
Elastic Volume Service
Cloud Backup and Recovery
Storage Disaster Recovery Service
Scalable File Service
Volume Backup Service
Cloud Server Backup Service
Data Express Service
Dedicated Distributed Storage Service
Scalable File Service Turbo
Containers
Cloud Container Engine
Software Repository for Container
Application Service Mesh
Ubiquitous Cloud Native Service
Cloud Container Instance
Databases
Relational Database Service
Document Database Service
Data Admin Service
Data Replication Service
GeminiDB
GaussDB
Distributed Database Middleware
Database and Application Migration UGO
TaurusDB
Middleware
Distributed Cache Service
API Gateway
Distributed Message Service for Kafka
Distributed Message Service for RabbitMQ
Distributed Message Service for RocketMQ
Cloud Service Engine
Multi-Site High Availability Service
EventGrid
Dedicated Cloud
Dedicated Computing Cluster
Business Applications
Workspace
ROMA Connect
Message & SMS
Domain Name Service
Edge Data Center Management
Meeting
AI
Face Recognition Service
Graph Engine Service
Content Moderation
Image Recognition
Optical Character Recognition
ModelArts
ImageSearch
Conversational Bot Service
Speech Interaction Service
Huawei HiLens
Video Intelligent Analysis Service
Developer Tools
SDK Developer Guide
API Request Signing Guide
Terraform
Koo Command Line Interface
Content Delivery & Edge Computing
Content Delivery Network
Intelligent EdgeFabric
CloudPond
Solutions
SAP Cloud
High Performance Computing
Developer Services
ServiceStage
CodeArts
CodeArts PerfTest
CodeArts Req
CodeArts Pipeline
CodeArts Build
CodeArts Deploy
CodeArts Artifact
CodeArts TestPlan
CodeArts Check
CodeArts Repo
Cloud Application Engine
MacroVerse aPaaS
KooMessage
KooPhone
KooDrive

YAML Syntax

Updated on 2022-02-22 GMT+08:00

YAML is a simple and powerful language. It is designed to make the language easy to read.

Basic Syntax Rules

  • Characters are case-sensitive.
  • Indentation is used to represent hierarchical relationships.
  • Only spaces can be used for indentation.
  • The number of spaces used for indentation does not matter. Elements of the same level must be aligned on the left side.
  • Lines that start with a number sign (#) are comments.

YAML supports three types of data structures.

  • Object: A set of key-value pairs, which is also called mapping, hashes, or dictionary.
  • Array: A group of values arranged in sequence, which is also called a sequence or list.
  • Scalar: A single and irreducible value, which is the minimum data unit.

Object

An object is a group of key-value pairs. For key: value, the colon (:) must be followed by a space or newline character. The valid expression is as follows:

animal: pets
plant:
  tree

You can also write multiple key-value pairs into an inline object.

hash: {name: Steve, foo: bar}

However, an error occurs in the following scenario:

foo: somebody said I should put a colon here: so I did
windows_drive: c:

To resolve the issue, you can use single quotation marks (' '), as shown in the following:

foo: 'somebody said I should put a colon here: so I did'
windows_drive: 'c:'

Array

An array is represented by a hyphen (-) and space. The valid expression is as follows:

animal:
- Cat
- Dog
- Goldfish

You can also use the inline representation.

animal: [Cat, Dog, Goldfish]

Objects and arrays can be used in combination to form a composite structure.

languages:
 - Ruby
 - Perl
 - Python
websites: 
 YAML: yaml.org
 Ruby: ruby-lang.org
 Python: python.org
 Perl: use.perl.org

Scalar

Scalar data types include string, Boolean value, integer, floating-point number, null, time, and date.

  • String:

    By default, a string is not enclosed in quotation marks.

    str: This_is_a_line

    If a string contains spaces or special characters, the string needs to be enclosed in quotation marks.

    str: 'content: a string'

    Both single and double quotation marks can be used. The difference between them is that the former can identify escape characters while the latter cannot convert special characters.

    s1: 'content:\n a string'
    s2: "content:\n a string"

    If there is a single quotation mark between two single quotation marks, ensure that two single quotation marks are used consecutively to achieve conversion.

    str: 'labor''s day'

    Strings can be written into multiple lines. The lines except the first line must be indented with one space. The newline character will be converted to a space.

    str: This_is
     a_multi_line
  • Integer:
    int_value: 314
  • Floating-point number:
    float_value: 3.14
  • Null:
    parent: ~
  • Time:

    The time is in the ISO8601 format.

    iso8601: 2018-12-14t21:59:43.10-05:00
  • Date:

    The date is in the compound ISO8601 format: year-month-day.

    date: 1976-07-31

Special Symbols

  • ---: indicates the start of a YAML file. ...: indicates the end of a YAML file.
---
# A list of delicious fruits
- Apple
- Strawberry
- Mango
...
  • You can use two exclamation marks (!) to forcibly convert an integer, a floating-point number, or a Boolean value.
strbool: !!str true
strint: !!str 10
  • For a string in multiple lines, you can use a literal block scalar (|) to start new lines or folded block scalar (>) to fold new lines. The two symbols are often used in the character strings of YAML files.
this: |
 Foo
 Bar
that: >
 Foo
 Bar

The corresponding objects are as follows:

{ this: 'Foo\nBar\n', that: 'Foo Bar\n' }

It is advised to use block scalars (|) in most scenarios.

Comment

YAML supports comments. This is an advantage of YAML compared with JSON.

The comment of YAML starts with a number sign (#), as shown in the following:

languages:
 - Ruby                # Indicates the Ruby language.
 - Go                  # Indicates the Go language.
   --  PythonPy               # Indicates the Python language.

Usamos cookies para aprimorar nosso site e sua experiência. Ao continuar a navegar em nosso site, você aceita nossa política de cookies. Saiba mais

Feedback

Feedback

Feedback

0/500

Selected Content

Submit selected content with the feedback