Class IpConfiguration
IP Management configuration.
Inheritance
Implements
Inherited Members
Namespace: Google.Apis.SQLAdmin.v1beta4.Data
Assembly: Google.Apis.SQLAdmin.v1beta4.dll
Syntax
public class IpConfiguration : IDirectResponseSchema
Properties
AllocatedIpRange
The name of the allocated ip range for the private ip CloudSQL instance. For example:
"google-managed-services-default". If set, the instance ip will be created in the allocated range. The range
name must comply with RFC 1035. Specifically, the name must be 1-63
characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])?. Reserved for future use.
Declaration
[JsonProperty("allocatedIpRange")]
public virtual string AllocatedIpRange { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
AuthorizedNetworks
The list of external networks that are allowed to connect to the instance using the IP. In 'CIDR' notation, also known as 'slash' notation (for example: 192.168.100.0/24).
Declaration
[JsonProperty("authorizedNetworks")]
public virtual IList<AclEntry> AuthorizedNetworks { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Collections.Generic.IList<AclEntry> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Ipv4Enabled
Whether the instance is assigned a public IP address or not.
Declaration
[JsonProperty("ipv4Enabled")]
public virtual bool? Ipv4Enabled { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |
PrivateNetwork
The resource link for the VPC network from which the Cloud SQL instance is accessible for private IP. For example, /projects/myProject/global/networks/default. This setting can be updated, but it cannot be removed after it is set.
Declaration
[JsonProperty("privateNetwork")]
public virtual string PrivateNetwork { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
RequireSsl
Whether SSL connections over IP are enforced or not.
Declaration
[JsonProperty("requireSsl")]
public virtual bool? RequireSsl { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |