@azure-tools/typespec-azure-core 0.40.0-dev.4 → 0.40.0-dev.6
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.
- package/lib/foundations.tsp +1 -0
- package/lib/models.tsp +12 -0
- package/package.json +1 -1
package/lib/foundations.tsp
CHANGED
package/lib/models.tsp
CHANGED
|
@@ -21,6 +21,7 @@ model Page<Resource extends TypeSpec.Reflection.Model> {
|
|
|
21
21
|
|
|
22
22
|
@doc("The link to the next page of items")
|
|
23
23
|
@nextLink
|
|
24
|
+
@visibility("read")
|
|
24
25
|
nextLink?: ResourceLocation<Resource>;
|
|
25
26
|
}
|
|
26
27
|
|
|
@@ -343,3 +344,14 @@ scalar ipV6Address extends string;
|
|
|
343
344
|
#suppress "@azure-tools/typespec-autorest/invalid-format" "Foundation."
|
|
344
345
|
@format("eTag")
|
|
345
346
|
scalar eTag extends string;
|
|
347
|
+
|
|
348
|
+
/**
|
|
349
|
+
* Represents an Azure geography region where supported resource providers live.
|
|
350
|
+
*
|
|
351
|
+
* @example
|
|
352
|
+
*
|
|
353
|
+
* ```
|
|
354
|
+
* WestUS
|
|
355
|
+
* ```
|
|
356
|
+
*/
|
|
357
|
+
scalar azureLocation extends string;
|
package/package.json
CHANGED