Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
f5b7a42
migrate once
haolingdong-msft Sep 3, 2025
5219e4b
Fix error type for operations interface
haolingdong-msft Sep 4, 2025
f6a842d
add readonly visibility for paging model value
haolingdong-msft Sep 4, 2025
ef1abc5
fix x-ms-secret
haolingdong-msft Sep 5, 2025
bc155ac
update swagger
haolingdong-msft Sep 5, 2025
7bf5909
update swagger
haolingdong-msft Sep 9, 2025
85cfcc9
Update cspell.yaml
welovej Sep 9, 2025
bc24f7b
Revert "Update cspell.yaml"
welovej Sep 9, 2025
1bf7baa
update
welovej Sep 9, 2025
68bb7b3
update
welovej Sep 10, 2025
727de32
update
welovej Sep 10, 2025
9b5585e
Delete databoxedge.json
welovej Sep 10, 2025
8ddfbeb
Update readme.md
welovej Sep 10, 2025
4d62eb3
prettier
welovej Sep 10, 2025
62e1c4e
Create client.tsp
welovej Sep 10, 2025
282165f
Update client.tsp
welovej Sep 10, 2025
6f01a04
Merge branch 'main' into tsp-conversion-databoxedge
mcgallan Oct 17, 2025
e533657
update no properties resource model and summary
mcgallan Oct 17, 2025
108513e
update tspconfig
mcgallan Oct 20, 2025
42cffef
Add Java SDK breaking change mitigations for TypeSpec migration
weidongxu-microsoft Oct 21, 2025
78fd8f8
resolve js breaking
v-jiaodi Oct 21, 2025
2937bf1
mitigate reorder breakings (#38379)
ChenxiJiang333 Oct 23, 2025
27dd7b3
Update client.tsp
weidongxu-microsoft Oct 23, 2025
bcd453b
resolve the conflicts from the folder migration.
zedy-wj Oct 31, 2025
96a2a3d
Merge branch 'main' into tsp-conversion-databoxedge
mcgallan Nov 6, 2025
da78334
add config (#38636)
jliusan Nov 7, 2025
d90b6fa
Add 'go' support to DataBoxEdge client overrides
tadelesh Nov 7, 2025
b306ba1
format
mcgallan Nov 10, 2025
71b50fc
Merge branch 'main' into tsp-conversion-databoxedge
pshao25 Nov 10, 2025
dc0f9ea
update
mcgallan Nov 10, 2025
d582a04
Merge branch 'tsp-conversion-databoxedge' of https://github.com/Azure…
mcgallan Nov 10, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
add readonly visibility for paging model value
  • Loading branch information
haolingdong-msft committed Sep 4, 2025
commit f6a842dccad3f2751ebd707d2eafc7f3b8e7d0ec
29 changes: 25 additions & 4 deletions specification/databoxedge/DataBoxEdge.Management/models.tsp
Original file line number Diff line number Diff line change
Expand Up @@ -1110,13 +1110,13 @@ model ServiceSpecification {
* Metric specification as defined by shoebox.
*/
@OpenAPI.extension("x-ms-identifiers", #["name"])
metricSpecifications?: MetricSpecificationV1[];
metricSpecifications?: MetricSpecification_V1[];
}

/**
* Metric specification version 1.
*/
model MetricSpecificationV1 {
model MetricSpecification_V1 {
/**
* Name of the metric.
*/
Expand Down Expand Up @@ -1146,7 +1146,7 @@ model MetricSpecificationV1 {
* Metric dimensions, other than default dimension which is resource.
*/
@OpenAPI.extension("x-ms-identifiers", #["name"])
dimensions?: MetricDimensionV1[];
dimensions?: MetricDimension_V1[];

/**
* Set true to fill the gaps with zero.
Expand Down Expand Up @@ -1177,7 +1177,7 @@ model MetricSpecificationV1 {
/**
* Metric Dimension v1.
*/
model MetricDimensionV1 {
model MetricDimension_V1 {
/**
* Name of the metrics dimension.
*/
Expand Down Expand Up @@ -4586,3 +4586,24 @@ model PeriodicTimerSourceInfo {
*/
topic?: string;
}

/**
* The list of operations supported by Microsoft.DataBoxEdge resource provider.
*/
model OperationsList {
/**
* The list of operations.
*/
@OpenAPI.extension("x-ms-identifiers", #["name"])
@pageItems
value: Operation[];

/**
* The URL to get the next page of operations.
*/
@nextLink
nextLink?: url;
}

@@visibility(Azure.Core.Page.value, Lifecycle.Read);
@@visibility(OperationsList.value, Lifecycle.Read);