redis-cloud 0.9.5

Redis Cloud REST API client library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
//! Private Service Connect (PSC) operations
//!
//! Manages Google Cloud Private Service Connect endpoints for secure connectivity
//! to Redis Cloud databases without traversing the public internet.

use crate::{CloudClient, Result};
use serde::{Deserialize, Serialize};

/// Private Service Connect endpoint update request
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PscEndpointUpdateRequest {
    pub subscription_id: i32,
    pub psc_service_id: i32,
    pub endpoint_id: i32,

    /// Google Cloud project ID
    #[serde(skip_serializing_if = "Option::is_none")]
    pub gcp_project_id: Option<String>,

    /// Name of the Google Cloud VPC that hosts your application
    #[serde(skip_serializing_if = "Option::is_none")]
    pub gcp_vpc_name: Option<String>,

    /// Name of your VPC's subnet of IP address ranges
    #[serde(skip_serializing_if = "Option::is_none")]
    pub gcp_vpc_subnet_name: Option<String>,

    /// Prefix used to create PSC endpoints in the consumer application VPC
    #[serde(skip_serializing_if = "Option::is_none")]
    pub endpoint_connection_name: Option<String>,
}

/// Task state update response
pub use crate::types::TaskStateUpdate;

/// Private Service Connect service information
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PrivateServiceConnectService {
    /// PSC service ID
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<i32>,

    /// Connection host name for the PSC service
    #[serde(skip_serializing_if = "Option::is_none")]
    pub connection_host_name: Option<String>,

    /// GCP service attachment name
    #[serde(skip_serializing_if = "Option::is_none")]
    pub service_attachment_name: Option<String>,

    /// PSC service status
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<String>,
}

/// Private Service Connect endpoint information
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PrivateServiceConnectEndpoint {
    /// Endpoint ID
    #[serde(skip_serializing_if = "Option::is_none")]
    pub id: Option<i32>,

    /// GCP project ID
    #[serde(skip_serializing_if = "Option::is_none")]
    pub gcp_project_id: Option<String>,

    /// GCP VPC name
    #[serde(skip_serializing_if = "Option::is_none")]
    pub gcp_vpc_name: Option<String>,

    /// GCP VPC subnet name
    #[serde(skip_serializing_if = "Option::is_none")]
    pub gcp_vpc_subnet_name: Option<String>,

    /// Endpoint connection name
    #[serde(skip_serializing_if = "Option::is_none")]
    pub endpoint_connection_name: Option<String>,

    /// Endpoint status
    #[serde(skip_serializing_if = "Option::is_none")]
    pub status: Option<String>,
}

/// Private Service Connect endpoints response
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct PrivateServiceConnectEndpoints {
    /// PSC service ID
    #[serde(skip_serializing_if = "Option::is_none")]
    pub psc_service_id: Option<i32>,

    /// List of PSC endpoints
    #[serde(skip_serializing_if = "Option::is_none")]
    pub endpoints: Option<Vec<PrivateServiceConnectEndpoint>>,
}

/// GCP creation script for PSC endpoint
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct GcpCreationScript {
    /// Bash script for endpoint creation
    #[serde(skip_serializing_if = "Option::is_none")]
    pub bash: Option<String>,

    /// `PowerShell` script for endpoint creation
    #[serde(skip_serializing_if = "Option::is_none")]
    pub powershell: Option<String>,

    /// Terraform GCP configuration
    #[serde(skip_serializing_if = "Option::is_none")]
    pub terraform_gcp: Option<TerraformGcp>,
}

/// Terraform GCP configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TerraformGcp {
    /// Service attachment configurations
    #[serde(skip_serializing_if = "Option::is_none")]
    pub service_attachments: Option<Vec<TerraformGcpServiceAttachment>>,
}

/// Terraform GCP service attachment configuration
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct TerraformGcpServiceAttachment {
    /// Service attachment name
    #[serde(skip_serializing_if = "Option::is_none")]
    pub name: Option<String>,

    /// DNS record
    #[serde(skip_serializing_if = "Option::is_none")]
    pub dns_record: Option<String>,

    /// IP address name
    #[serde(skip_serializing_if = "Option::is_none")]
    pub ip_address_name: Option<String>,

    /// Forwarding rule name
    #[serde(skip_serializing_if = "Option::is_none")]
    pub forwarding_rule_name: Option<String>,
}

/// GCP deletion script for PSC endpoint
#[derive(Debug, Clone, Serialize, Deserialize)]
#[serde(rename_all = "camelCase")]
pub struct GcpDeletionScript {
    /// Bash script for endpoint deletion
    #[serde(skip_serializing_if = "Option::is_none")]
    pub bash: Option<String>,

    /// `PowerShell` script for endpoint deletion
    #[serde(skip_serializing_if = "Option::is_none")]
    pub powershell: Option<String>,
}

/// Private Service Connect handler
pub struct PscHandler {
    client: CloudClient,
}

impl PscHandler {
    /// Create a new PSC handler
    #[must_use]
    pub fn new(client: CloudClient) -> Self {
        Self { client }
    }

    // ========================================================================
    // Standard PSC Operations
    // ========================================================================

    /// Delete Private Service Connect service
    pub async fn delete_service(&self, subscription_id: i32) -> Result<serde_json::Value> {
        self.client
            .delete(&format!(
                "/subscriptions/{subscription_id}/private-service-connect"
            ))
            .await?;
        Ok(serde_json::Value::Null)
    }

    /// Get Private Service Connect service
    pub async fn get_service(&self, subscription_id: i32) -> Result<TaskStateUpdate> {
        self.client
            .get(&format!(
                "/subscriptions/{subscription_id}/private-service-connect"
            ))
            .await
    }

    /// Create Private Service Connect service
    pub async fn create_service(&self, subscription_id: i32) -> Result<TaskStateUpdate> {
        self.client
            .post(
                &format!("/subscriptions/{subscription_id}/private-service-connect"),
                &serde_json::json!({}),
            )
            .await
    }

    /// Get Private Service Connect endpoints
    pub async fn get_endpoints(&self, subscription_id: i32) -> Result<TaskStateUpdate> {
        self.client
            .get(&format!(
                "/subscriptions/{subscription_id}/private-service-connect/endpoints"
            ))
            .await
    }

    /// Create Private Service Connect endpoint
    pub async fn create_endpoint(
        &self,
        subscription_id: i32,
        request: &PscEndpointUpdateRequest,
    ) -> Result<TaskStateUpdate> {
        self.client
            .post(
                &format!("/subscriptions/{subscription_id}/private-service-connect/endpoints"),
                request,
            )
            .await
    }

    /// Delete Private Service Connect endpoint
    pub async fn delete_endpoint(
        &self,
        subscription_id: i32,
        endpoint_id: i32,
    ) -> Result<serde_json::Value> {
        self.client
            .delete(&format!(
                "/subscriptions/{subscription_id}/private-service-connect/endpoints/{endpoint_id}"
            ))
            .await?;
        Ok(serde_json::Value::Null)
    }

    /// Update Private Service Connect endpoint
    pub async fn update_endpoint(
        &self,
        subscription_id: i32,
        endpoint_id: i32,
        request: &PscEndpointUpdateRequest,
    ) -> Result<TaskStateUpdate> {
        // Use psc_service_id from request
        let psc_service_id = request.psc_service_id;
        self.client
            .put(
                &format!(
                    "/subscriptions/{subscription_id}/private-service-connect/{psc_service_id}/endpoints/{endpoint_id}"
                ),
                request,
            )
            .await
    }

    /// Get PSC endpoint creation script
    pub async fn get_endpoint_creation_script(
        &self,
        subscription_id: i32,
        endpoint_id: i32,
    ) -> Result<String> {
        self.client
            .get(&format!(
                "/subscriptions/{subscription_id}/private-service-connect/endpoints/{endpoint_id}/creationScripts"
            ))
            .await
    }

    /// Get PSC endpoint deletion script
    pub async fn get_endpoint_deletion_script(
        &self,
        subscription_id: i32,
        endpoint_id: i32,
    ) -> Result<String> {
        self.client
            .get(&format!(
                "/subscriptions/{subscription_id}/private-service-connect/endpoints/{endpoint_id}/deletionScripts"
            ))
            .await
    }

    // ========================================================================
    // Active-Active PSC Operations
    // ========================================================================

    /// Delete Active-Active PSC service
    pub async fn delete_service_active_active(
        &self,
        subscription_id: i32,
    ) -> Result<serde_json::Value> {
        self.client
            .delete(&format!(
                "/subscriptions/{subscription_id}/regions/private-service-connect"
            ))
            .await?;
        Ok(serde_json::Value::Null)
    }

    /// Get Active-Active PSC service
    pub async fn get_service_active_active(&self, subscription_id: i32) -> Result<TaskStateUpdate> {
        self.client
            .get(&format!(
                "/subscriptions/{subscription_id}/regions/private-service-connect"
            ))
            .await
    }

    /// Create Active-Active PSC service
    pub async fn create_service_active_active(
        &self,
        subscription_id: i32,
    ) -> Result<TaskStateUpdate> {
        self.client
            .post(
                &format!("/subscriptions/{subscription_id}/regions/private-service-connect"),
                &serde_json::json!({}),
            )
            .await
    }

    /// Get Active-Active PSC endpoints
    pub async fn get_endpoints_active_active(
        &self,
        subscription_id: i32,
    ) -> Result<TaskStateUpdate> {
        self.client
            .get(&format!(
                "/subscriptions/{subscription_id}/regions/private-service-connect/endpoints"
            ))
            .await
    }

    /// Create Active-Active PSC endpoint
    pub async fn create_endpoint_active_active(
        &self,
        subscription_id: i32,
        request: &PscEndpointUpdateRequest,
    ) -> Result<TaskStateUpdate> {
        self.client
            .post(
                &format!(
                    "/subscriptions/{subscription_id}/regions/private-service-connect/endpoints"
                ),
                request,
            )
            .await
    }

    /// Delete Active-Active PSC endpoint
    pub async fn delete_endpoint_active_active(
        &self,
        subscription_id: i32,
        region_id: i32,
        endpoint_id: i32,
    ) -> Result<serde_json::Value> {
        self.client
            .delete(&format!(
                "/subscriptions/{subscription_id}/regions/{region_id}/private-service-connect/endpoints/{endpoint_id}"
            ))
            .await?;
        Ok(serde_json::Value::Null)
    }

    /// Update Active-Active PSC endpoint
    pub async fn update_endpoint_active_active(
        &self,
        subscription_id: i32,
        region_id: i32,
        endpoint_id: i32,
        request: &PscEndpointUpdateRequest,
    ) -> Result<TaskStateUpdate> {
        self.client
            .put(
                &format!(
                    "/subscriptions/{subscription_id}/regions/{region_id}/private-service-connect/{subscription_id}/endpoints/{endpoint_id}"
                ),
                request,
            )
            .await
    }

    /// Get Active-Active PSC endpoint creation script
    pub async fn get_endpoint_creation_script_active_active(
        &self,
        subscription_id: i32,
        region_id: i32,
        psc_service_id: i32,
        endpoint_id: i32,
    ) -> Result<String> {
        self.client
            .get(&format!(
                "/subscriptions/{subscription_id}/regions/{region_id}/private-service-connect/{psc_service_id}/endpoints/{endpoint_id}/creationScripts"
            ))
            .await
    }

    /// Get Active-Active PSC endpoint deletion script
    pub async fn get_endpoint_deletion_script_active_active(
        &self,
        subscription_id: i32,
        region_id: i32,
        psc_service_id: i32,
        endpoint_id: i32,
    ) -> Result<String> {
        self.client
            .get(&format!(
                "/subscriptions/{subscription_id}/regions/{region_id}/private-service-connect/{psc_service_id}/endpoints/{endpoint_id}/deletionScripts"
            ))
            .await
    }
}