redis-cloud-api-sdk
Advanced tools
Comparing version 1.8.2 to 1.8.4
@@ -19,2 +19,3 @@ import { DatabaseProtocol, DatabaseDataPersistence, DatabaseDataEvictionPolicy, DatabaseThroughputMeasurement, DatabaseImportSource } from '../responses/database'; | ||
* @param sourceIp Optional. List of source IP addresses or subnet masks. If specified, Redis clients will be able to connect to this database only from within the specified source IP addresses ranges (example: ['192.168.10.0/32’, ‘192.168.12.0/24’] ) | ||
* @param enableTls Optional. When 'true’, requires TLS authentication for all connections (mTLS with valid clientSslCertificate, regular TLS when the clientSslCertificate is not provided) | ||
* @param clientSslCertificate Optional. If specified, this SSL certificate will be required to authenticate user connections. If empty string is received, SSL certificate will be removed | ||
@@ -41,2 +42,3 @@ * @param password Optional. If specified, this password will be used to access the database | ||
sourceIp?: string[]; | ||
enableTls?: boolean; | ||
clientSslCertificate?: string; | ||
@@ -63,2 +65,3 @@ password?: string; | ||
* @param sourceIp Optional. List of source IP addresses or subnet masks. If specified, Redis clients will be able to connect to this database only from within the specified source IP addresses ranges (example: ['192.168.10.0/32’, ‘192.168.12.0/24’] ) | ||
* @param enableTls Optional. When 'true’, requires TLS authentication for all connections (mTLS with valid clientSslCertificate, regular TLS when the clientSslCertificate is not provided) | ||
* @param clientSslCertificate Optional. If specified, this SSL certificate will be required to authenticate user connections. If empty string is received, SSL certificate will be removed | ||
@@ -82,2 +85,3 @@ * @param password Optional. If specified, this password will be used to access the database | ||
sourceIp?: string[]; | ||
enableTls?: boolean; | ||
clientSslCertificate?: string; | ||
@@ -84,0 +88,0 @@ password?: string; |
@@ -64,2 +64,3 @@ import { DatabaseModule } from './general'; | ||
* @param password The database password | ||
* @param enableTls The TLS status | ||
* @param sslClientAuthentication The SSL client authentication | ||
@@ -70,2 +71,3 @@ * @param sourceIps The list of source IP's | ||
password: string; | ||
enableTls?: boolean; | ||
sslClientAuthentication: boolean; | ||
@@ -72,0 +74,0 @@ sourceIps: string[]; |
@@ -152,2 +152,5 @@ /** | ||
* @param provider The provider of the region | ||
* @param RegionNetworking The networking of the region | ||
* @param preferredAvailabilityZones The preferred availability zones | ||
* @param multipleAvailabilityZones The multiple availability zones | ||
*/ | ||
@@ -157,3 +160,15 @@ export declare type Region = { | ||
provider: string; | ||
networking: RegionNetworking[]; | ||
preferredAvailabilityZones: string[]; | ||
multipleAvailabilityZones: boolean; | ||
[key: string]: any; | ||
}; | ||
/** | ||
* Region's networking object | ||
* @param deploymentCIDR The Deployment CIDR | ||
* @param subnetId The subnetId | ||
*/ | ||
export declare type RegionNetworking = { | ||
deploymentCIDR: string; | ||
subnetId: string; | ||
}; |
{ | ||
"name": "redis-cloud-api-sdk", | ||
"version": "1.8.2", | ||
"version": "1.8.4", | ||
"description": "This is a client for the Redislabs Cloud API", | ||
@@ -5,0 +5,0 @@ "main": "lib/index.js", |
151020
3095