Documentation ¶
Overview ¶
Package sqladmin provides access to the Cloud SQL Administration API.
See https://developers.google.com/cloud-sql/docs/admin-api/
Usage example:
import "google.golang.org/api/sqladmin/v1beta1" ... sqladminService, err := sqladmin.New(oauthHttpClient)
Index ¶
- Constants
- type BackupConfiguration
- type BackupRun
- type BackupRunsGetCall
- type BackupRunsListCall
- type BackupRunsListResponse
- type BackupRunsService
- type DatabaseInstance
- type ExportContext
- type ImportContext
- type InstanceOperation
- type InstancesDeleteCall
- type InstancesDeleteResponse
- type InstancesExportCall
- type InstancesExportRequest
- type InstancesExportResponse
- type InstancesGetCall
- type InstancesImportCall
- type InstancesImportRequest
- type InstancesImportResponse
- type InstancesInsertCall
- type InstancesInsertResponse
- type InstancesListCall
- type InstancesListResponse
- type InstancesPatchCall
- type InstancesRestartCall
- type InstancesRestartResponse
- type InstancesRestoreBackupCall
- type InstancesRestoreBackupResponse
- type InstancesService
- func (r *InstancesService) Delete(project string, instance string) *InstancesDeleteCall
- func (r *InstancesService) Export(project string, instance string, ...) *InstancesExportCall
- func (r *InstancesService) Get(project string, instance string) *InstancesGetCall
- func (r *InstancesService) Import(project string, instance string, ...) *InstancesImportCall
- func (r *InstancesService) Insert(project string, databaseinstance *DatabaseInstance) *InstancesInsertCall
- func (r *InstancesService) List(project string) *InstancesListCall
- func (r *InstancesService) Patch(project string, instance string, databaseinstance *DatabaseInstance) *InstancesPatchCall
- func (r *InstancesService) Restart(project string, instance string) *InstancesRestartCall
- func (r *InstancesService) RestoreBackup(project string, instance string, backupConfigurationid string, dueTime string) *InstancesRestoreBackupCall
- func (r *InstancesService) Update(project string, instance string, databaseinstance *DatabaseInstance) *InstancesUpdateCall
- type InstancesUpdateCall
- type InstancesUpdateResponse
- type OperationError
- type OperationsGetCall
- type OperationsListCall
- type OperationsListResponse
- type OperationsService
- type Service
- type Settings
- type Tier
- type TiersListCall
- type TiersListResponse
- type TiersService
Constants ¶
const ( // View and manage your data across Google Cloud Platform services CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform" // Manage your Google SQL Service instances SqlserviceAdminScope = "https://www.googleapis.com/auth/sqlservice.admin" )
OAuth2 scopes used by this API.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type BackupConfiguration ¶
type BackupConfiguration struct { // Enabled: Whether this configuration is enabled. Enabled bool `json:"enabled,omitempty"` // Id: Identifier for this configuration. This gets generated // automatically when a backup configuration is created. Id string `json:"id,omitempty"` // Kind: This is always sql#backupConfiguration. Kind string `json:"kind,omitempty"` // StartTime: Start time for the daily backup configuration in UTC // timezone in the 24 hour format - HH:MM. StartTime string `json:"startTime,omitempty"` }
type BackupRun ¶
type BackupRun struct { // BackupConfiguration: Backup Configuration identifier. BackupConfiguration string `json:"backupConfiguration,omitempty"` // DueTime: The due time of this run in UTC timezone in RFC 3339 format, // for example 2012-11-15T16:19:00.094Z. DueTime string `json:"dueTime,omitempty"` // EndTime: The time the backup operation completed in UTC timezone in // RFC 3339 format, for example 2012-11-15T16:19:00.094Z. EndTime string `json:"endTime,omitempty"` // EnqueuedTime: The time the run was enqueued in UTC timezone in RFC // 3339 format, for example 2012-11-15T16:19:00.094Z. EnqueuedTime string `json:"enqueuedTime,omitempty"` // Error: Information about why the backup operation failed. This is // only present if the run has the FAILED status. Error *OperationError `json:"error,omitempty"` // Instance: Name of the database instance. Instance string `json:"instance,omitempty"` // Kind: This is always sql#backupRun. Kind string `json:"kind,omitempty"` // StartTime: The time the backup operation actually started in UTC // timezone in RFC 3339 format, for example 2012-11-15T16:19:00.094Z. StartTime string `json:"startTime,omitempty"` // Status: The status of this run. Status string `json:"status,omitempty"` }
type BackupRunsGetCall ¶
type BackupRunsGetCall struct {
// contains filtered or unexported fields
}
func (*BackupRunsGetCall) Do ¶
func (c *BackupRunsGetCall) Do() (*BackupRun, error)
func (*BackupRunsGetCall) Fields ¶
func (c *BackupRunsGetCall) Fields(s ...googleapi.Field) *BackupRunsGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type BackupRunsListCall ¶
type BackupRunsListCall struct {
// contains filtered or unexported fields
}
func (*BackupRunsListCall) Do ¶
func (c *BackupRunsListCall) Do() (*BackupRunsListResponse, error)
func (*BackupRunsListCall) Fields ¶
func (c *BackupRunsListCall) Fields(s ...googleapi.Field) *BackupRunsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*BackupRunsListCall) MaxResults ¶
func (c *BackupRunsListCall) MaxResults(maxResults int64) *BackupRunsListCall
MaxResults sets the optional parameter "maxResults": Maximum number of backup runs per response.
func (*BackupRunsListCall) PageToken ¶
func (c *BackupRunsListCall) PageToken(pageToken string) *BackupRunsListCall
PageToken sets the optional parameter "pageToken": A previously-returned page token representing part of the larger set of results to view.
type BackupRunsListResponse ¶
type BackupRunsListResponse struct { // Items: A list of backup runs in reverse chronological order of the // enqueued time. Items []*BackupRun `json:"items,omitempty"` // Kind: This is always sql#backupRunsList. Kind string `json:"kind,omitempty"` // NextPageToken: The continuation token, used to page through large // result sets. Provide this value in a subsequent request to return the // next page of results. NextPageToken string `json:"nextPageToken,omitempty"` }
type BackupRunsService ¶
type BackupRunsService struct {
// contains filtered or unexported fields
}
func NewBackupRunsService ¶
func NewBackupRunsService(s *Service) *BackupRunsService
func (*BackupRunsService) Get ¶
func (r *BackupRunsService) Get(project string, instance string, backupConfiguration string, dueTime string) *BackupRunsGetCall
Get: Retrieves a resource containing information about a backup run.
func (*BackupRunsService) List ¶
func (r *BackupRunsService) List(project string, instance string, backupConfiguration string) *BackupRunsListCall
List: Lists all backup runs associated with a given instance and configuration in the reverse chronological order of the enqueued time.
type DatabaseInstance ¶
type DatabaseInstance struct { // CurrentDiskSize: The current disk usage of the instance in bytes. CurrentDiskSize int64 `json:"currentDiskSize,omitempty,string"` // DatabaseVersion: The database engine type and version, for example // MYSQL_5_5 for MySQL 5.5. DatabaseVersion string `json:"databaseVersion,omitempty"` // Etag: Etag for this resource - a version number for the settings // object in this resource. This field has no effect when passed as a // request parameter. Instead, the contents of this field should be // passed in an 'If-Match' http header for use in optimistic locking. Etag string `json:"etag,omitempty"` // Instance: Name of the Cloud SQL instance. This does not include the // project ID. Instance string `json:"instance,omitempty"` // Kind: This is always sql#instance. Kind string `json:"kind,omitempty"` // MaxDiskSize: The maximum disk size of the instance in bytes. MaxDiskSize int64 `json:"maxDiskSize,omitempty,string"` // Project: The project ID of the project containing the Cloud SQL // instance. The Google apps domain is prefixed if applicable. Project string `json:"project,omitempty"` // Region: The geographical region. Can be us-central or europe-west1. // Defaults to us-central. The region can not be changed after instance // creation. Region string `json:"region,omitempty"` // Settings: The user settings. Settings *Settings `json:"settings,omitempty"` // State: The current serving state of the Cloud SQL instance. This can // be one of the following. // RUNNABLE: The instance is running, or is // ready to run when accessed. // SUSPENDED: The instance is not available, // for example due to problems with billing. // PENDING_CREATE: The // instance is being created. // MAINTENANCE: The instance is down for // maintenance. // UNKNOWN_STATE: The state of the instance is unknown. State string `json:"state,omitempty"` }
type ExportContext ¶
type ExportContext struct { // Database: Databases (for example, guestbook) from which the export is // made. If unspecified, all databases are exported. Database []string `json:"database,omitempty"` // Kind: This is always sql#exportContext. Kind string `json:"kind,omitempty"` // Table: Tables to export, or that were exported, from the specified // database. If you specify tables, specify one and only one database. Table []string `json:"table,omitempty"` // Uri: The path to the file in Google Cloud Storage where the export // will be stored, or where it was already stored. The URI is in the // form gs://bucketName/fileName. If the file already exists, the // operation fails. If the filename ends with .gz, the contents are // compressed. Uri string `json:"uri,omitempty"` }
type ImportContext ¶
type ImportContext struct { // Database: The database (for example, guestbook) to which the import // is made. If not set, it is assumed that the database is specified in // the file to be imported. Database string `json:"database,omitempty"` // Kind: This is always sql#importContext. Kind string `json:"kind,omitempty"` // Uri: A path to the MySQL dump file in Google Cloud Storage from which // the import is made. The URI is in the form gs://bucketName/fileName. // Compressed gzip files (.gz) are also supported. Uri []string `json:"uri,omitempty"` }
type InstanceOperation ¶
type InstanceOperation struct { // EndTime: The time this operation finished in UTC timezone in RFC 3339 // format, for example 2012-11-15T16:19:00.094Z. EndTime string `json:"endTime,omitempty"` // EnqueuedTime: The time this operation was enqueued in UTC timezone in // RFC 3339 format, for example 2012-11-15T16:19:00.094Z. EnqueuedTime string `json:"enqueuedTime,omitempty"` // Error: The error(s) encountered by this operation. Only set if the // operation results in an error. Error []*OperationError `json:"error,omitempty"` // ExportContext: The context for export operation, if applicable. ExportContext *ExportContext `json:"exportContext,omitempty"` // ImportContext: The context for import operation, if applicable. ImportContext *ImportContext `json:"importContext,omitempty"` // Instance: Name of the database instance. Instance string `json:"instance,omitempty"` // Kind: This is always sql#instanceOperation. Kind string `json:"kind,omitempty"` // Operation: An identifier that uniquely identifies the operation. You // can use this identifier to retrieve the Operations resource that has // information about the operation. Operation string `json:"operation,omitempty"` // OperationType: The type of the operation. Valid values are CREATE, // DELETE, UPDATE, RESTART, IMPORT, EXPORT, BACKUP_VOLUME, // RESTORE_VOLUME. OperationType string `json:"operationType,omitempty"` // StartTime: The time this operation actually started in UTC timezone // in RFC 3339 format, for example 2012-11-15T16:19:00.094Z. StartTime string `json:"startTime,omitempty"` // State: The state of an operation. Valid values are PENDING, RUNNING, // DONE, UNKNOWN. State string `json:"state,omitempty"` // UserEmailAddress: The email address of the user who initiated this // operation. UserEmailAddress string `json:"userEmailAddress,omitempty"` }
type InstancesDeleteCall ¶
type InstancesDeleteCall struct {
// contains filtered or unexported fields
}
func (*InstancesDeleteCall) Do ¶
func (c *InstancesDeleteCall) Do() (*InstancesDeleteResponse, error)
func (*InstancesDeleteCall) Fields ¶
func (c *InstancesDeleteCall) Fields(s ...googleapi.Field) *InstancesDeleteCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type InstancesDeleteResponse ¶
type InstancesDeleteResponse struct { // Kind: This is always sql#instancesDelete. Kind string `json:"kind,omitempty"` // Operation: An identifier that uniquely identifies the operation. You // can use this identifier to retrieve the Operations resource that has // information about the operation. Operation string `json:"operation,omitempty"` }
type InstancesExportCall ¶
type InstancesExportCall struct {
// contains filtered or unexported fields
}
func (*InstancesExportCall) Do ¶
func (c *InstancesExportCall) Do() (*InstancesExportResponse, error)
func (*InstancesExportCall) Fields ¶
func (c *InstancesExportCall) Fields(s ...googleapi.Field) *InstancesExportCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type InstancesExportRequest ¶
type InstancesExportRequest struct { // ExportContext: Contains details about the export operation. ExportContext *ExportContext `json:"exportContext,omitempty"` }
type InstancesExportResponse ¶
type InstancesExportResponse struct { // Kind: This is always sql#instancesExport. Kind string `json:"kind,omitempty"` // Operation: An identifier that uniquely identifies the operation. You // can use this identifier to retrieve the Operations resource that has // information about the operation. Operation string `json:"operation,omitempty"` }
type InstancesGetCall ¶
type InstancesGetCall struct {
// contains filtered or unexported fields
}
func (*InstancesGetCall) Do ¶
func (c *InstancesGetCall) Do() (*DatabaseInstance, error)
func (*InstancesGetCall) Fields ¶
func (c *InstancesGetCall) Fields(s ...googleapi.Field) *InstancesGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type InstancesImportCall ¶
type InstancesImportCall struct {
// contains filtered or unexported fields
}
func (*InstancesImportCall) Do ¶
func (c *InstancesImportCall) Do() (*InstancesImportResponse, error)
func (*InstancesImportCall) Fields ¶
func (c *InstancesImportCall) Fields(s ...googleapi.Field) *InstancesImportCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type InstancesImportRequest ¶
type InstancesImportRequest struct { // ImportContext: Contains details about the import operation. ImportContext *ImportContext `json:"importContext,omitempty"` }
type InstancesImportResponse ¶
type InstancesImportResponse struct { // Kind: This is always sql#instancesImport. Kind string `json:"kind,omitempty"` // Operation: An identifier that uniquely identifies the operation. You // can use this identifier to retrieve the Operations resource that has // information about the operation. Operation string `json:"operation,omitempty"` }
type InstancesInsertCall ¶
type InstancesInsertCall struct {
// contains filtered or unexported fields
}
func (*InstancesInsertCall) Do ¶
func (c *InstancesInsertCall) Do() (*InstancesInsertResponse, error)
func (*InstancesInsertCall) Fields ¶
func (c *InstancesInsertCall) Fields(s ...googleapi.Field) *InstancesInsertCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type InstancesInsertResponse ¶
type InstancesInsertResponse struct { // Kind: This is always sql#instancesInsert. Kind string `json:"kind,omitempty"` // Operation: An identifier that uniquely identifies the operation. You // can use this identifier to retrieve the Operations resource that has // information about the operation. Operation string `json:"operation,omitempty"` }
type InstancesListCall ¶
type InstancesListCall struct {
// contains filtered or unexported fields
}
func (*InstancesListCall) Do ¶
func (c *InstancesListCall) Do() (*InstancesListResponse, error)
func (*InstancesListCall) Fields ¶
func (c *InstancesListCall) Fields(s ...googleapi.Field) *InstancesListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*InstancesListCall) MaxResults ¶
func (c *InstancesListCall) MaxResults(maxResults int64) *InstancesListCall
MaxResults sets the optional parameter "maxResults": The maximum number of results to return per response.
func (*InstancesListCall) PageToken ¶
func (c *InstancesListCall) PageToken(pageToken string) *InstancesListCall
PageToken sets the optional parameter "pageToken": A previously-returned page token representing part of the larger set of results to view.
type InstancesListResponse ¶
type InstancesListResponse struct { // Items: List of database instance resources. Items []*DatabaseInstance `json:"items,omitempty"` // Kind: This is always sql#instancesList. Kind string `json:"kind,omitempty"` // NextPageToken: The continuation token, used to page through large // result sets. Provide this value in a subsequent request to return the // next page of results. NextPageToken string `json:"nextPageToken,omitempty"` }
type InstancesPatchCall ¶
type InstancesPatchCall struct {
// contains filtered or unexported fields
}
func (*InstancesPatchCall) Do ¶
func (c *InstancesPatchCall) Do() (*InstancesUpdateResponse, error)
func (*InstancesPatchCall) Fields ¶
func (c *InstancesPatchCall) Fields(s ...googleapi.Field) *InstancesPatchCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type InstancesRestartCall ¶
type InstancesRestartCall struct {
// contains filtered or unexported fields
}
func (*InstancesRestartCall) Do ¶
func (c *InstancesRestartCall) Do() (*InstancesRestartResponse, error)
func (*InstancesRestartCall) Fields ¶
func (c *InstancesRestartCall) Fields(s ...googleapi.Field) *InstancesRestartCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type InstancesRestartResponse ¶
type InstancesRestartResponse struct { // Kind: This is always sql#instancesRestart. Kind string `json:"kind,omitempty"` // Operation: An identifier that uniquely identifies the operation. You // can use this identifier to retrieve the Operations resource that has // information about the operation. Operation string `json:"operation,omitempty"` }
type InstancesRestoreBackupCall ¶
type InstancesRestoreBackupCall struct {
// contains filtered or unexported fields
}
func (*InstancesRestoreBackupCall) Do ¶
func (c *InstancesRestoreBackupCall) Do() (*InstancesRestoreBackupResponse, error)
func (*InstancesRestoreBackupCall) Fields ¶
func (c *InstancesRestoreBackupCall) Fields(s ...googleapi.Field) *InstancesRestoreBackupCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type InstancesRestoreBackupResponse ¶
type InstancesRestoreBackupResponse struct { // Kind: This is always sql#instancesRestoreBackup. Kind string `json:"kind,omitempty"` // Operation: An identifier that uniquely identifies the operation. You // can use this identifier to retrieve the Operations resource that has // information about the operation. Operation string `json:"operation,omitempty"` }
type InstancesService ¶
type InstancesService struct {
// contains filtered or unexported fields
}
func NewInstancesService ¶
func NewInstancesService(s *Service) *InstancesService
func (*InstancesService) Delete ¶
func (r *InstancesService) Delete(project string, instance string) *InstancesDeleteCall
Delete: Deletes a Cloud SQL instance.
func (*InstancesService) Export ¶
func (r *InstancesService) Export(project string, instance string, instancesexportrequest *InstancesExportRequest) *InstancesExportCall
Export: Exports data from a Cloud SQL instance to a Google Cloud Storage bucket as a MySQL dump file.
func (*InstancesService) Get ¶
func (r *InstancesService) Get(project string, instance string) *InstancesGetCall
Get: Retrieves a resource containing information about a Cloud SQL instance.
func (*InstancesService) Import ¶
func (r *InstancesService) Import(project string, instance string, instancesimportrequest *InstancesImportRequest) *InstancesImportCall
Import: Imports data into a Cloud SQL instance from a MySQL dump file in Google Cloud Storage.
func (*InstancesService) Insert ¶
func (r *InstancesService) Insert(project string, databaseinstance *DatabaseInstance) *InstancesInsertCall
Insert: Creates a new Cloud SQL instance.
func (*InstancesService) List ¶
func (r *InstancesService) List(project string) *InstancesListCall
List: Lists instances under a given project in the alphabetical order of the instance name.
func (*InstancesService) Patch ¶
func (r *InstancesService) Patch(project string, instance string, databaseinstance *DatabaseInstance) *InstancesPatchCall
Patch: Updates settings of a Cloud SQL instance. Caution: This is not a partial update, so you must include values for all the settings that you want to retain. For partial updates, use patch.. This method supports patch semantics.
func (*InstancesService) Restart ¶
func (r *InstancesService) Restart(project string, instance string) *InstancesRestartCall
Restart: Restarts a Cloud SQL instance.
func (*InstancesService) RestoreBackup ¶
func (r *InstancesService) RestoreBackup(project string, instance string, backupConfigurationid string, dueTime string) *InstancesRestoreBackupCall
RestoreBackup: Restores a backup of a Cloud SQL instance.
func (*InstancesService) Update ¶
func (r *InstancesService) Update(project string, instance string, databaseinstance *DatabaseInstance) *InstancesUpdateCall
Update: Updates settings of a Cloud SQL instance. Caution: This is not a partial update, so you must include values for all the settings that you want to retain. For partial updates, use patch.
type InstancesUpdateCall ¶
type InstancesUpdateCall struct {
// contains filtered or unexported fields
}
func (*InstancesUpdateCall) Do ¶
func (c *InstancesUpdateCall) Do() (*InstancesUpdateResponse, error)
func (*InstancesUpdateCall) Fields ¶
func (c *InstancesUpdateCall) Fields(s ...googleapi.Field) *InstancesUpdateCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type InstancesUpdateResponse ¶
type InstancesUpdateResponse struct { // Kind: This is always sql#instancesUpdate. Kind string `json:"kind,omitempty"` // Operation: An identifier that uniquely identifies the operation. You // can use this identifier to retrieve information about the operation. Operation string `json:"operation,omitempty"` }
type OperationError ¶
type OperationsGetCall ¶
type OperationsGetCall struct {
// contains filtered or unexported fields
}
func (*OperationsGetCall) Do ¶
func (c *OperationsGetCall) Do() (*InstanceOperation, error)
func (*OperationsGetCall) Fields ¶
func (c *OperationsGetCall) Fields(s ...googleapi.Field) *OperationsGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type OperationsListCall ¶
type OperationsListCall struct {
// contains filtered or unexported fields
}
func (*OperationsListCall) Do ¶
func (c *OperationsListCall) Do() (*OperationsListResponse, error)
func (*OperationsListCall) Fields ¶
func (c *OperationsListCall) Fields(s ...googleapi.Field) *OperationsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*OperationsListCall) MaxResults ¶
func (c *OperationsListCall) MaxResults(maxResults int64) *OperationsListCall
MaxResults sets the optional parameter "maxResults": Maximum number of operations per response.
func (*OperationsListCall) PageToken ¶
func (c *OperationsListCall) PageToken(pageToken string) *OperationsListCall
PageToken sets the optional parameter "pageToken": A previously-returned page token representing part of the larger set of results to view.
type OperationsListResponse ¶
type OperationsListResponse struct { // Items: List of operation resources. Items []*InstanceOperation `json:"items,omitempty"` // Kind: This is always sql#operationsList. Kind string `json:"kind,omitempty"` // NextPageToken: The continuation token, used to page through large // result sets. Provide this value in a subsequent request to return the // next page of results. NextPageToken string `json:"nextPageToken,omitempty"` }
type OperationsService ¶
type OperationsService struct {
// contains filtered or unexported fields
}
func NewOperationsService ¶
func NewOperationsService(s *Service) *OperationsService
func (*OperationsService) Get ¶
func (r *OperationsService) Get(project string, instance string, operation string) *OperationsGetCall
Get: Retrieves an instance operation that has been performed on an instance.
func (*OperationsService) List ¶
func (r *OperationsService) List(project string, instance string) *OperationsListCall
List: Lists all instance operations that have been performed on the given Cloud SQL instance in the reverse chronological order of the start time.
type Service ¶
type Service struct { BasePath string // API endpoint base URL BackupRuns *BackupRunsService Instances *InstancesService Operations *OperationsService Tiers *TiersService // contains filtered or unexported fields }
type Settings ¶
type Settings struct { // ActivationPolicy: The activation policy for this instance. This // specifies when the instance should be activated and is applicable // only when the instance state is RUNNABLE. This can be one of the // following. // ALWAYS: The instance should always be active. // NEVER: The // instance should never be activated. // ON_DEMAND: The instance is // activated upon receiving requests. ActivationPolicy string `json:"activationPolicy,omitempty"` // AuthorizedGaeApplications: The AppEngine app ids that can access this // instance. AuthorizedGaeApplications []string `json:"authorizedGaeApplications,omitempty"` // BackupConfiguration: The daily backup configuration for the instance. BackupConfiguration []*BackupConfiguration `json:"backupConfiguration,omitempty"` // Kind: This is always sql#settings. Kind string `json:"kind,omitempty"` // PricingPlan: The pricing plan for this instance. This can be either // PER_USE or PACKAGE. PricingPlan string `json:"pricingPlan,omitempty"` // ReplicationType: The type of replication this instance uses. This can // be either ASYNCHRONOUS or SYNCHRONOUS. ReplicationType string `json:"replicationType,omitempty"` // Tier: The tier of service for this instance, for example D1, D2. For // more information, see pricing. Tier string `json:"tier,omitempty"` }
type Tier ¶
type Tier struct { // DiskQuota: The maximum disk size of this tier in bytes. DiskQuota int64 `json:"DiskQuota,omitempty,string"` // RAM: The maximum RAM usage of this tier in bytes. RAM int64 `json:"RAM,omitempty,string"` // Kind: This is always sql#tier. Kind string `json:"kind,omitempty"` // Region: The applicable regions for this tier. Can be us-east1 and // europe-west1. Region []string `json:"region,omitempty"` // Tier: An identifier for the service tier, for example D1, D2 etc. For // related information, see Pricing. Tier string `json:"tier,omitempty"` }
type TiersListCall ¶
type TiersListCall struct {
// contains filtered or unexported fields
}
func (*TiersListCall) Do ¶
func (c *TiersListCall) Do() (*TiersListResponse, error)
func (*TiersListCall) Fields ¶
func (c *TiersListCall) Fields(s ...googleapi.Field) *TiersListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type TiersListResponse ¶
type TiersService ¶
type TiersService struct {
// contains filtered or unexported fields
}
func NewTiersService ¶
func NewTiersService(s *Service) *TiersService
func (*TiersService) List ¶
func (r *TiersService) List() *TiersListCall
List: Lists all available service tiers for Google Cloud SQL, for example D1, D2. For related information, see Pricing.