Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ReleasePR @azure/arm-storage] Revert "[SRP] Add default response status code" #6815

Closed
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion sdk/storage/arm-storage/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2019 Microsoft
Copyright (c) 2020 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 4 additions & 4 deletions sdk/storage/arm-storage/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1887,7 +1887,7 @@ export interface FileShare extends AzureEntityResource {
metadata?: { [propertyName: string]: string };
/**
* The maximum size of the share, in gigabytes. Must be greater than 0, and less than or equal to
* 5TB (5120). For Large File Shares, the maximum size is 100000.
* 5TB (5120). For Large File Shares, the maximum size is 102400.
*/
shareQuota?: number;
}
Expand All @@ -1907,7 +1907,7 @@ export interface FileShareItem extends AzureEntityResource {
metadata?: { [propertyName: string]: string };
/**
* The maximum size of the share, in gigabytes. Must be greater than 0, and less than or equal to
* 5TB (5120). For Large File Shares, the maximum size is 100000.
* 5TB (5120). For Large File Shares, the maximum size is 102400.
*/
shareQuota?: number;
}
Expand Down Expand Up @@ -2053,7 +2053,7 @@ export interface FileSharesCreateOptionalParams extends msRest.RequestOptionsBas
metadata?: { [propertyName: string]: string };
/**
* The maximum size of the share, in gigabytes. Must be greater than 0, and less than or equal to
* 5TB (5120). For Large File Shares, the maximum size is 100000.
* 5TB (5120). For Large File Shares, the maximum size is 102400.
*/
shareQuota?: number;
}
Expand All @@ -2068,7 +2068,7 @@ export interface FileSharesUpdateOptionalParams extends msRest.RequestOptionsBas
metadata?: { [propertyName: string]: string };
/**
* The maximum size of the share, in gigabytes. Must be greater than 0, and less than or equal to
* 5TB (5120). For Large File Shares, the maximum size is 100000.
* 5TB (5120). For Large File Shares, the maximum size is 102400.
*/
shareQuota?: number;
}
Expand Down
4 changes: 2 additions & 2 deletions sdk/storage/arm-storage/src/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3046,7 +3046,7 @@ export const FileShare: msRest.CompositeMapper = {
shareQuota: {
serializedName: "properties.shareQuota",
constraints: {
InclusiveMaximum: 100000,
InclusiveMaximum: 102400,
InclusiveMinimum: 1
},
type: {
Expand Down Expand Up @@ -3085,7 +3085,7 @@ export const FileShareItem: msRest.CompositeMapper = {
shareQuota: {
serializedName: "properties.shareQuota",
constraints: {
InclusiveMaximum: 100000,
InclusiveMaximum: 102400,
InclusiveMinimum: 1
},
type: {
Expand Down