Skip to content

Commit

Permalink
SWagger fixes to GA for CLI and powershell.
Browse files Browse the repository at this point in the history
  • Loading branch information
Umang Shah committed Sep 6, 2024
1 parent 095c2ca commit 3369acb
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 23 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -636,8 +636,7 @@
"type": "string",
"readOnly": true
}
},
"readOnly": true
}
},
"BillingAccount": {
"description": "A billing account.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1379,7 +1379,6 @@
"totalCount": {
"description": "Total number of records.",
"type": "number",
"format": "int32",
"readOnly": true
},
"value": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1241,9 +1241,6 @@
"description": "The ID of credit note.",
"type": "string",
"readOnly": true
},
"rebillDetails": {
"$ref": "#/definitions/RebillDetails"
}
},
"readOnly": true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
"description": "Service-defined resource names such as 'default' which are reserved resource names.",
"required": true,
"type": "string",
"pattern": "^[a-zA-Z\\d-_]{1,128}$",
"pattern": "^[a-zA-Z\d-_]{1,128}$",
"enum": [
"default"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1043,16 +1043,6 @@
"renew": {
"$ref": "#/definitions/Renew"
},
"reservedResourceProperties": {
"type": "object",
"description": "Properties specific to each reserved resource type. Not required if not applicable.",
"x-ms-client-flatten": true,
"properties": {
"instanceFlexibility": {
"$ref": "#/definitions/InstanceFlexibility"
}
}
},
"instanceFlexibility": {
"description": "Allows reservation discount to be applied across skus within the same auto fit group. Not all skus support instance size flexibility.",
"$ref": "#/definitions/InstanceFlexibility"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -597,7 +597,8 @@
"type": "string"
},
"billingProfileDisplayName": {
"description": "The name of the billing profile."
"description": "The name of the billing profile.",
"type": "string"
},
"billingProfileId": {
"description": "The fully qualified ID that uniquely identifies a billing profile.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@
"description": "The ID that uniquely identifies a billing profile.",
"required": true,
"type": "string",
"pattern": "^[a-zA-Z\\d-_]{1,128}$",
"pattern": "^[a-zA-Z\d-_]{1,128}$",
"x-ms-parameter-location": "method"
},
"customerName": {
Expand All @@ -264,7 +264,7 @@
"description": "The ID that uniquely identifies a customer.",
"required": true,
"type": "string",
"pattern": "^[a-zA-Z\\d-_]{1,128}$",
"pattern": "^[a-zA-Z\d-_]{1,128}$",
"x-ms-parameter-location": "method"
},
"invoiceSectionName": {
Expand All @@ -273,7 +273,7 @@
"description": "The ID that uniquely identifies an invoice section.",
"required": true,
"type": "string",
"pattern": "^[a-zA-Z\\d-_]{1,128}$",
"pattern": "^[a-zA-Z\d-_]{1,128}$",
"x-ms-parameter-location": "method"
},
"departmentName": {
Expand All @@ -282,7 +282,7 @@
"description": "The name of the department.",
"required": true,
"type": "string",
"pattern": "^[a-zA-Z\\d-_]{1,128}$",
"pattern": "^[a-zA-Z\d-_]{1,128}$",
"x-ms-parameter-location": "method"
},
"enrollmentAccountName": {
Expand All @@ -291,7 +291,7 @@
"description": "The name of the enrollment account.",
"required": true,
"type": "string",
"pattern": "^[a-zA-Z\\d-_]{1,128}$",
"pattern": "^[a-zA-Z\d-_]{1,128}$",
"x-ms-parameter-location": "method"
},
"subscriptionId": {
Expand Down

0 comments on commit 3369acb

Please sign in to comment.