@azure-tools/typespec-azure-resource-manager 0.44.0-dev.10 → 0.44.0-dev.11
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.
|
@@ -140,6 +140,7 @@ model Operation {
|
|
|
140
140
|
isDataAction?: boolean;
|
|
141
141
|
|
|
142
142
|
/** Localized display information for this particular operation. */
|
|
143
|
+
@visibility("read")
|
|
143
144
|
display?: OperationDisplay;
|
|
144
145
|
|
|
145
146
|
/**
|
|
@@ -161,19 +162,23 @@ model OperationDisplay {
|
|
|
161
162
|
/**
|
|
162
163
|
The localized friendly form of the resource provider name, e.g. "Microsoft Monitoring Insights" or "Microsoft Compute".
|
|
163
164
|
*/
|
|
165
|
+
@visibility("read")
|
|
164
166
|
provider?: string;
|
|
165
167
|
|
|
166
168
|
/**
|
|
167
169
|
The localized friendly name of the resource type related to this operation. E.g. "Virtual Machines" or "Job Schedule Collections".
|
|
168
170
|
*/
|
|
171
|
+
@visibility("read")
|
|
169
172
|
resource?: string;
|
|
170
173
|
|
|
171
174
|
/**
|
|
172
175
|
The concise, localized friendly name for the operation; suitable for dropdowns. E.g. "Create or Update Virtual Machine", "Restart Virtual Machine".
|
|
173
176
|
*/
|
|
177
|
+
@visibility("read")
|
|
174
178
|
operation?: string;
|
|
175
179
|
|
|
176
180
|
/** The short, localized friendly description of the operation; suitable for tool tips and detailed views. */
|
|
181
|
+
@visibility("read")
|
|
177
182
|
description?: string;
|
|
178
183
|
}
|
|
179
184
|
|
|
@@ -120,6 +120,7 @@ model ResourceUpdateModel<
|
|
|
120
120
|
Resource,
|
|
121
121
|
"Name" | "name" | "properties"
|
|
122
122
|
>>> {
|
|
123
|
+
/** The resource-specific properties for this resource. */
|
|
123
124
|
@conditionalClientFlatten
|
|
124
125
|
properties?: ResourceUpdateModelProperties<Resource, Properties>;
|
|
125
126
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@azure-tools/typespec-azure-resource-manager",
|
|
3
|
-
"version": "0.44.0-dev.
|
|
3
|
+
"version": "0.44.0-dev.11",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "TypeSpec Azure Resource Manager library",
|
|
6
6
|
"homepage": "https://azure.github.io/typespec-azure",
|