@azure/arm-postgresql-flexible 8.1.0-alpha.20250613.1 → 8.1.0-alpha.20250616.1
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/package.json
CHANGED
|
@@ -1965,7 +1965,7 @@ export interface Server extends TrackedResource {
|
|
|
1965
1965
|
sku?: Sku;
|
|
1966
1966
|
sourceServerResourceId?: string;
|
|
1967
1967
|
readonly state?: ServerState;
|
|
1968
|
-
storage?:
|
|
1968
|
+
storage?: Storage;
|
|
1969
1969
|
version?: ServerVersion;
|
|
1970
1970
|
}
|
|
1971
1971
|
|
|
@@ -2017,7 +2017,7 @@ export interface ServerForUpdate {
|
|
|
2017
2017
|
replica?: Replica;
|
|
2018
2018
|
replicationRole?: ReplicationRole;
|
|
2019
2019
|
sku?: Sku;
|
|
2020
|
-
storage?:
|
|
2020
|
+
storage?: Storage;
|
|
2021
2021
|
tags?: {
|
|
2022
2022
|
[propertyName: string]: string;
|
|
2023
2023
|
};
|
|
@@ -2308,7 +2308,7 @@ export type SslMode = string;
|
|
|
2308
2308
|
export type StartDataMigrationEnum = string;
|
|
2309
2309
|
|
|
2310
2310
|
// @public
|
|
2311
|
-
interface
|
|
2311
|
+
export interface Storage {
|
|
2312
2312
|
autoGrow?: StorageAutoGrow;
|
|
2313
2313
|
iops?: number;
|
|
2314
2314
|
storageSizeGB?: number;
|
|
@@ -2316,7 +2316,6 @@ interface Storage_2 {
|
|
|
2316
2316
|
tier?: AzureManagedDiskPerformanceTiers;
|
|
2317
2317
|
type?: StorageType;
|
|
2318
2318
|
}
|
|
2319
|
-
export { Storage_2 as Storage }
|
|
2320
2319
|
|
|
2321
2320
|
// @public
|
|
2322
2321
|
export type StorageAutoGrow = string;
|