Show / Hide Table of Contents

Class Database

Represents a SQL database on the Cloud SQL instance.

Inheritance
System.Object
Database
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.SQLAdmin.v1beta4.Data
Assembly: Google.Apis.SQLAdmin.v1beta4.dll
Syntax
public class Database : IDirectResponseSchema

Properties

Charset

The Cloud SQL charset value.

Declaration
[JsonProperty("charset")]
public virtual string Charset { get; set; }
Property Value
Type Description
System.String

Collation

The Cloud SQL collation value.

Declaration
[JsonProperty("collation")]
public virtual string Collation { get; set; }
Property Value
Type Description
System.String

ETag

This field is deprecated and will be removed from a future version of the API.

Declaration
[JsonProperty("etag")]
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Instance

The name of the Cloud SQL instance. This does not include the project ID.

Declaration
[JsonProperty("instance")]
public virtual string Instance { get; set; }
Property Value
Type Description
System.String

Kind

This is always sql#database.

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

Name

The name of the database in the Cloud SQL instance. This does not include the project ID or instance name.

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
System.String

Project

The project ID of the project containing the Cloud SQL database. The Google apps domain is prefixed if applicable.

Declaration
[JsonProperty("project")]
public virtual string Project { get; set; }
Property Value
Type Description
System.String

SelfLink

The URI of this resource.

Declaration
[JsonProperty("selfLink")]
public virtual string SelfLink { get; set; }
Property Value
Type Description
System.String

SqlserverDatabaseDetails

Declaration
[JsonProperty("sqlserverDatabaseDetails")]
public virtual SqlServerDatabaseDetails SqlserverDatabaseDetails { get; set; }
Property Value
Type Description
SqlServerDatabaseDetails

Implements

IDirectResponseSchema
In This Article
Back to top