@leaflow/sdk 0.74.1 → 0.74.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1596,9 +1596,12 @@ export interface components {
|
|
|
1596
1596
|
total_count?: number;
|
|
1597
1597
|
};
|
|
1598
1598
|
RegionResource: {
|
|
1599
|
+
/** @description ISO 3166-1 alpha-2 country this region sits in. Two letters, uppercase. */
|
|
1599
1600
|
country_code: string;
|
|
1601
|
+
/** @description Display name for this place, shown to tenants (Hong Kong). It is the translatable one; the stable handle is code. */
|
|
1600
1602
|
name: string;
|
|
1601
|
-
|
|
1603
|
+
/** @description The region's code, the way the outside world names this place (hk-1). Stable and human-written; it is not an identifier for addressing — every endpoint takes ids. */
|
|
1604
|
+
code: string;
|
|
1602
1605
|
/** Format: uuid */
|
|
1603
1606
|
id: string;
|
|
1604
1607
|
};
|
|
@@ -1606,8 +1609,10 @@ export interface components {
|
|
|
1606
1609
|
items: components["schemas"]["RegionResource"][] | null;
|
|
1607
1610
|
};
|
|
1608
1611
|
ZoneResource: {
|
|
1612
|
+
/** @description Display name for this zone, shown to tenants (Hong Kong A). It is the translatable one; the stable handle is code. AWS has no equivalent — what it calls an Availability Zone name is our code. */
|
|
1609
1613
|
name: string;
|
|
1610
|
-
|
|
1614
|
+
/** @description The zone's code within its region (hk-1-a). Stable and human-written; addressing is by id. */
|
|
1615
|
+
code: string;
|
|
1611
1616
|
/** Format: uuid */
|
|
1612
1617
|
id: string;
|
|
1613
1618
|
};
|