You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 6, 2025. It is now read-only.
Managed Databases: Firewall and SQL Mode Management (#82)
* New endpoint to add/list firewall rules for databases
* New endpoints to configure/get sql_modes for MySQL databases
And endpoints to configure/get eviction_policy for Redis databases
/// The type of resource that the firewall rule allows to access the database cluster.
7
+
/// The possible values are: 'droplet', 'k8s', 'ip_addr', or 'tag'.
8
+
/// </summary>
9
+
[JsonProperty("type")]
10
+
publicstringType{get;set;}
11
+
12
+
/// <summary>
13
+
/// The ID of the specific resource, the name of a tag applied to a group of resources, or the IP address that the firewall rule allows to access the database cluster.
14
+
/// </summary>
15
+
[JsonProperty("value")]
16
+
publicstringValue{get;set;}
17
+
18
+
/// <summary>
19
+
/// A unique ID for the firewall rule itself when updating an existing rule.
20
+
/// </summary>
21
+
[JsonProperty("uuid")]
22
+
publicstringUuid{get;set;}
23
+
24
+
/// <summary>
25
+
/// A unique ID for the database cluster to which the rule is applied.
/// A unique ID for the database cluster to which the rule is applied.
14
+
/// </summary>
15
+
[JsonProperty("cluster_uuid")]
16
+
publicstringClusterUuid{get;set;}
17
+
18
+
/// <summary>
19
+
/// The type of resource that the firewall rule allows to access the database cluster.
20
+
/// The possible values are: 'droplet', 'k8s', 'ip_addr', or 'tag'
21
+
/// </summary>
22
+
[JsonProperty("type")]
23
+
publicstringType{get;set;}
24
+
25
+
/// <summary>
26
+
/// The ID of the specific resource, the name of a tag applied to a group of resources, or the IP address that the firewall rule allows to access the database cluster.
27
+
/// </summary>
28
+
[JsonProperty("value")]
29
+
publicstringValue{get;set;}
30
+
31
+
/// <summary>
32
+
/// A time value given in ISO8601 combined date and time format that represents when the firewall rule was created.
0 commit comments