@azure-tools/typespec-azure-core 0.34.0-dev.5 → 0.34.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/operations.tsp +2 -0
- package/package.json +1 -1
package/lib/operations.tsp
CHANGED
|
@@ -157,6 +157,7 @@ interface ResourceOperations<
|
|
|
157
157
|
*/
|
|
158
158
|
@Foundations.Private.ensureVerb("ResourceCreateOrUpdate", "PATCH")
|
|
159
159
|
@createsOrUpdatesResource(TResource)
|
|
160
|
+
@parameterVisibility("create", "update")
|
|
160
161
|
ResourceCreateOrUpdate<
|
|
161
162
|
TResource extends TypeSpec.Reflection.Model,
|
|
162
163
|
Traits extends TypeSpec.Reflection.Model = {}
|
|
@@ -191,6 +192,7 @@ interface ResourceOperations<
|
|
|
191
192
|
*/
|
|
192
193
|
@Foundations.Private.ensureVerb("LongRunningResourceCreateOrUpdate", "PATCH")
|
|
193
194
|
@createsOrUpdatesResource(TResource)
|
|
195
|
+
@parameterVisibility("create", "update")
|
|
194
196
|
LongRunningResourceCreateOrUpdate<
|
|
195
197
|
TResource extends TypeSpec.Reflection.Model,
|
|
196
198
|
Traits extends TypeSpec.Reflection.Model = {}
|
package/package.json
CHANGED