@azure/arm-cosmosdb 16.3.0-alpha.20250613.1 → 16.3.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
|
@@ -1040,7 +1040,7 @@ export interface DatabaseAccountCreateUpdateParameters extends ARMResourceProper
|
|
|
1040
1040
|
readonly keysMetadata?: DatabaseAccountKeysMetadata;
|
|
1041
1041
|
keyVaultKeyUri?: string;
|
|
1042
1042
|
kind?: DatabaseAccountKind;
|
|
1043
|
-
locations:
|
|
1043
|
+
locations: Location[];
|
|
1044
1044
|
minimalTlsVersion?: MinimalTlsVersion;
|
|
1045
1045
|
networkAclBypass?: NetworkAclBypass;
|
|
1046
1046
|
networkAclBypassResourceIds?: string[];
|
|
@@ -1082,18 +1082,18 @@ export interface DatabaseAccountGetResults extends ARMResourceProperties {
|
|
|
1082
1082
|
readonly keysMetadata?: DatabaseAccountKeysMetadata;
|
|
1083
1083
|
keyVaultKeyUri?: string;
|
|
1084
1084
|
kind?: DatabaseAccountKind;
|
|
1085
|
-
readonly locations?:
|
|
1085
|
+
readonly locations?: Location[];
|
|
1086
1086
|
minimalTlsVersion?: MinimalTlsVersion;
|
|
1087
1087
|
networkAclBypass?: NetworkAclBypass;
|
|
1088
1088
|
networkAclBypassResourceIds?: string[];
|
|
1089
1089
|
readonly privateEndpointConnections?: PrivateEndpointConnection[];
|
|
1090
1090
|
readonly provisioningState?: string;
|
|
1091
1091
|
publicNetworkAccess?: PublicNetworkAccess;
|
|
1092
|
-
readonly readLocations?:
|
|
1092
|
+
readonly readLocations?: Location[];
|
|
1093
1093
|
restoreParameters?: RestoreParameters;
|
|
1094
1094
|
readonly systemData?: SystemData;
|
|
1095
1095
|
virtualNetworkRules?: VirtualNetworkRule[];
|
|
1096
|
-
readonly writeLocations?:
|
|
1096
|
+
readonly writeLocations?: Location[];
|
|
1097
1097
|
}
|
|
1098
1098
|
|
|
1099
1099
|
// @public
|
|
@@ -1367,7 +1367,7 @@ export interface DatabaseAccountUpdateParameters {
|
|
|
1367
1367
|
readonly keysMetadata?: DatabaseAccountKeysMetadata;
|
|
1368
1368
|
keyVaultKeyUri?: string;
|
|
1369
1369
|
location?: string;
|
|
1370
|
-
locations?:
|
|
1370
|
+
locations?: Location[];
|
|
1371
1371
|
minimalTlsVersion?: MinimalTlsVersion;
|
|
1372
1372
|
networkAclBypass?: NetworkAclBypass;
|
|
1373
1373
|
networkAclBypassResourceIds?: string[];
|
|
@@ -2261,7 +2261,7 @@ export interface ListDataCenters {
|
|
|
2261
2261
|
}
|
|
2262
2262
|
|
|
2263
2263
|
// @public
|
|
2264
|
-
interface
|
|
2264
|
+
export interface Location {
|
|
2265
2265
|
readonly documentEndpoint?: string;
|
|
2266
2266
|
failoverPriority?: number;
|
|
2267
2267
|
readonly id?: string;
|
|
@@ -2269,7 +2269,6 @@ interface Location_2 {
|
|
|
2269
2269
|
locationName?: string;
|
|
2270
2270
|
readonly provisioningState?: string;
|
|
2271
2271
|
}
|
|
2272
|
-
export { Location_2 as Location }
|
|
2273
2272
|
|
|
2274
2273
|
// @public
|
|
2275
2274
|
export interface LocationGetResult extends ARMProxyResource {
|