Documentation ¶
Overview ¶
Package deploymentmanager provides access to the Google Cloud Deployment Manager API.
See https://developers.google.com/deployment-manager/
Usage example:
import "google.golang.org/api/deploymentmanager/v2beta1" ... deploymentmanagerService, err := deploymentmanager.New(oauthHttpClient)
Index ¶
- Constants
- type Deployment
- type DeploymentsDeleteCall
- type DeploymentsGetCall
- type DeploymentsInsertCall
- type DeploymentsListCall
- func (c *DeploymentsListCall) Context(ctx context.Context) *DeploymentsListCall
- func (c *DeploymentsListCall) Do() (*DeploymentsListResponse, error)
- func (c *DeploymentsListCall) Fields(s ...googleapi.Field) *DeploymentsListCall
- func (c *DeploymentsListCall) IfNoneMatch(entityTag string) *DeploymentsListCall
- func (c *DeploymentsListCall) MaxResults(maxResults int64) *DeploymentsListCall
- func (c *DeploymentsListCall) PageToken(pageToken string) *DeploymentsListCall
- type DeploymentsListResponse
- type DeploymentsService
- func (r *DeploymentsService) Delete(project string, deployment string) *DeploymentsDeleteCall
- func (r *DeploymentsService) Get(project string, deployment string) *DeploymentsGetCall
- func (r *DeploymentsService) Insert(project string, deployment *Deployment) *DeploymentsInsertCall
- func (r *DeploymentsService) List(project string) *DeploymentsListCall
- type Manifest
- type ManifestsGetCall
- type ManifestsListCall
- func (c *ManifestsListCall) Context(ctx context.Context) *ManifestsListCall
- func (c *ManifestsListCall) Do() (*ManifestsListResponse, error)
- func (c *ManifestsListCall) Fields(s ...googleapi.Field) *ManifestsListCall
- func (c *ManifestsListCall) IfNoneMatch(entityTag string) *ManifestsListCall
- func (c *ManifestsListCall) MaxResults(maxResults int64) *ManifestsListCall
- func (c *ManifestsListCall) PageToken(pageToken string) *ManifestsListCall
- type ManifestsListResponse
- type ManifestsService
- type Operation
- type OperationError
- type OperationErrorErrors
- type OperationWarnings
- type OperationWarningsData
- type OperationsGetCall
- type OperationsListCall
- func (c *OperationsListCall) Context(ctx context.Context) *OperationsListCall
- func (c *OperationsListCall) Do() (*OperationsListResponse, error)
- func (c *OperationsListCall) Fields(s ...googleapi.Field) *OperationsListCall
- func (c *OperationsListCall) IfNoneMatch(entityTag string) *OperationsListCall
- func (c *OperationsListCall) MaxResults(maxResults int64) *OperationsListCall
- func (c *OperationsListCall) PageToken(pageToken string) *OperationsListCall
- type OperationsListResponse
- type OperationsService
- type Resource
- type ResourcesGetCall
- type ResourcesListCall
- func (c *ResourcesListCall) Context(ctx context.Context) *ResourcesListCall
- func (c *ResourcesListCall) Do() (*ResourcesListResponse, error)
- func (c *ResourcesListCall) Fields(s ...googleapi.Field) *ResourcesListCall
- func (c *ResourcesListCall) IfNoneMatch(entityTag string) *ResourcesListCall
- func (c *ResourcesListCall) MaxResults(maxResults int64) *ResourcesListCall
- func (c *ResourcesListCall) PageToken(pageToken string) *ResourcesListCall
- type ResourcesListResponse
- type ResourcesService
- type Service
- type Type
- type TypesListCall
- func (c *TypesListCall) Context(ctx context.Context) *TypesListCall
- func (c *TypesListCall) Do() (*TypesListResponse, error)
- func (c *TypesListCall) Fields(s ...googleapi.Field) *TypesListCall
- func (c *TypesListCall) IfNoneMatch(entityTag string) *TypesListCall
- func (c *TypesListCall) MaxResults(maxResults int64) *TypesListCall
- func (c *TypesListCall) PageToken(pageToken string) *TypesListCall
- type TypesListResponse
- type TypesService
Constants ¶
const ( // View and manage your data across Google Cloud Platform services CloudPlatformScope = "https://www.googleapis.com/auth/cloud-platform" // View your data across Google Cloud Platform services CloudPlatformReadOnlyScope = "https://www.googleapis.com/auth/cloud-platform.read-only" // View and manage your Google Cloud Platform management resources and // deployment status information NdevCloudmanScope = "https://www.googleapis.com/auth/ndev.cloudman" // View your Google Cloud Platform management resources and deployment // status information NdevCloudmanReadonlyScope = "https://www.googleapis.com/auth/ndev.cloudman.readonly" )
OAuth2 scopes used by this API.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Deployment ¶
type Deployment struct { // Description: ! An optional user-provided description of the // deployment. Description string `json:"description,omitempty"` // Id: [Output Only] Unique identifier for the resource; defined by the // server. Id uint64 `json:"id,omitempty,string"` // Manifest: ! [Output Only] URL of the manifest representing the full // configuration ! of this deployment. Manifest string `json:"manifest,omitempty"` // Name: ! The name of the deployment, which must be unique within the // project. Name string `json:"name,omitempty"` // TargetConfig: ! [Input Only] The YAML configuration to use in // processing this deployment. ! ! When you create a deployment, the // server creates a new manifest with the ! given YAML configuration and // sets the `manifest` property to the URL of ! the manifest resource. TargetConfig string `json:"targetConfig,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Description") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
Deployment: Next available tag: 8
func (*Deployment) MarshalJSON ¶
func (s *Deployment) MarshalJSON() ([]byte, error)
type DeploymentsDeleteCall ¶
type DeploymentsDeleteCall struct {
// contains filtered or unexported fields
}
func (*DeploymentsDeleteCall) Context ¶
func (c *DeploymentsDeleteCall) Context(ctx context.Context) *DeploymentsDeleteCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*DeploymentsDeleteCall) Do ¶
func (c *DeploymentsDeleteCall) Do() (*Operation, error)
Do executes the "deploymentmanager.deployments.delete" call. Exactly one of *Operation or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Operation.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*DeploymentsDeleteCall) Fields ¶
func (c *DeploymentsDeleteCall) Fields(s ...googleapi.Field) *DeploymentsDeleteCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type DeploymentsGetCall ¶
type DeploymentsGetCall struct {
// contains filtered or unexported fields
}
func (*DeploymentsGetCall) Context ¶
func (c *DeploymentsGetCall) Context(ctx context.Context) *DeploymentsGetCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*DeploymentsGetCall) Do ¶
func (c *DeploymentsGetCall) Do() (*Deployment, error)
Do executes the "deploymentmanager.deployments.get" call. Exactly one of *Deployment or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Deployment.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*DeploymentsGetCall) Fields ¶
func (c *DeploymentsGetCall) Fields(s ...googleapi.Field) *DeploymentsGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*DeploymentsGetCall) IfNoneMatch ¶
func (c *DeploymentsGetCall) IfNoneMatch(entityTag string) *DeploymentsGetCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
type DeploymentsInsertCall ¶
type DeploymentsInsertCall struct {
// contains filtered or unexported fields
}
func (*DeploymentsInsertCall) Context ¶
func (c *DeploymentsInsertCall) Context(ctx context.Context) *DeploymentsInsertCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*DeploymentsInsertCall) Do ¶
func (c *DeploymentsInsertCall) Do() (*Operation, error)
Do executes the "deploymentmanager.deployments.insert" call. Exactly one of *Operation or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Operation.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*DeploymentsInsertCall) Fields ¶
func (c *DeploymentsInsertCall) Fields(s ...googleapi.Field) *DeploymentsInsertCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
type DeploymentsListCall ¶
type DeploymentsListCall struct {
// contains filtered or unexported fields
}
func (*DeploymentsListCall) Context ¶
func (c *DeploymentsListCall) Context(ctx context.Context) *DeploymentsListCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*DeploymentsListCall) Do ¶
func (c *DeploymentsListCall) Do() (*DeploymentsListResponse, error)
Do executes the "deploymentmanager.deployments.list" call. Exactly one of *DeploymentsListResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *DeploymentsListResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*DeploymentsListCall) Fields ¶
func (c *DeploymentsListCall) Fields(s ...googleapi.Field) *DeploymentsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*DeploymentsListCall) IfNoneMatch ¶
func (c *DeploymentsListCall) IfNoneMatch(entityTag string) *DeploymentsListCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
func (*DeploymentsListCall) MaxResults ¶
func (c *DeploymentsListCall) MaxResults(maxResults int64) *DeploymentsListCall
MaxResults sets the optional parameter "maxResults": ! Maximum count of results to be returned. ! Acceptable values are 0 to 100, inclusive. (Default: 50)
func (*DeploymentsListCall) PageToken ¶
func (c *DeploymentsListCall) PageToken(pageToken string) *DeploymentsListCall
PageToken sets the optional parameter "pageToken": ! Specifies a nextPageToken returned by a previous list request. This ! token can be used to request the next page of results from a previous ! list request.
type DeploymentsListResponse ¶
type DeploymentsListResponse struct { // Deployments: ! The deployments contained in this response. Deployments []*Deployment `json:"deployments,omitempty"` // NextPageToken: ! A token used to continue a truncated list request. NextPageToken string `json:"nextPageToken,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Deployments") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
DeploymentsListResponse: ! A response containing a partial list of deployments and a page token used ! to build the next request if the request has been truncated. Next available tag: 4
func (*DeploymentsListResponse) MarshalJSON ¶
func (s *DeploymentsListResponse) MarshalJSON() ([]byte, error)
type DeploymentsService ¶
type DeploymentsService struct {
// contains filtered or unexported fields
}
func NewDeploymentsService ¶
func NewDeploymentsService(s *Service) *DeploymentsService
func (*DeploymentsService) Delete ¶
func (r *DeploymentsService) Delete(project string, deployment string) *DeploymentsDeleteCall
Delete: ! Deletes a deployment and all of the resources in the deployment.
func (*DeploymentsService) Get ¶
func (r *DeploymentsService) Get(project string, deployment string) *DeploymentsGetCall
Get: ! Gets information about a specific deployment.
func (*DeploymentsService) Insert ¶
func (r *DeploymentsService) Insert(project string, deployment *Deployment) *DeploymentsInsertCall
Insert: ! Creates a deployment and all of the resources described by the ! deployment manifest.
func (*DeploymentsService) List ¶
func (r *DeploymentsService) List(project string) *DeploymentsListCall
List: ! Lists all deployments for a given project.
type Manifest ¶
type Manifest struct { // Config: v2beta1: YAML with config - described above v2beta2: YAML + // templates. ! The YAML configuration for this manifest. Config string `json:"config,omitempty"` // EvaluatedConfig: ! [Output Only] The fully-expanded configuration // file, including any ! templates and references. EvaluatedConfig string `json:"evaluatedConfig,omitempty"` // Id: [Output Only] Unique identifier for the resource; defined by the // server. Id uint64 `json:"id,omitempty,string"` // Name: ! [Output Only] The name of the manifest. Name string `json:"name,omitempty"` // SelfLink: [Output Only] Self link for the manifest. SelfLink string `json:"selfLink,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Config") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
Manifest: Next available tag: 10
func (*Manifest) MarshalJSON ¶
type ManifestsGetCall ¶
type ManifestsGetCall struct {
// contains filtered or unexported fields
}
func (*ManifestsGetCall) Context ¶
func (c *ManifestsGetCall) Context(ctx context.Context) *ManifestsGetCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ManifestsGetCall) Do ¶
func (c *ManifestsGetCall) Do() (*Manifest, error)
Do executes the "deploymentmanager.manifests.get" call. Exactly one of *Manifest or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Manifest.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ManifestsGetCall) Fields ¶
func (c *ManifestsGetCall) Fields(s ...googleapi.Field) *ManifestsGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ManifestsGetCall) IfNoneMatch ¶
func (c *ManifestsGetCall) IfNoneMatch(entityTag string) *ManifestsGetCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
type ManifestsListCall ¶
type ManifestsListCall struct {
// contains filtered or unexported fields
}
func (*ManifestsListCall) Context ¶
func (c *ManifestsListCall) Context(ctx context.Context) *ManifestsListCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ManifestsListCall) Do ¶
func (c *ManifestsListCall) Do() (*ManifestsListResponse, error)
Do executes the "deploymentmanager.manifests.list" call. Exactly one of *ManifestsListResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ManifestsListResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ManifestsListCall) Fields ¶
func (c *ManifestsListCall) Fields(s ...googleapi.Field) *ManifestsListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ManifestsListCall) IfNoneMatch ¶
func (c *ManifestsListCall) IfNoneMatch(entityTag string) *ManifestsListCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
func (*ManifestsListCall) MaxResults ¶
func (c *ManifestsListCall) MaxResults(maxResults int64) *ManifestsListCall
MaxResults sets the optional parameter "maxResults": ! Maximum count of results to be returned. ! Acceptable values are 0 to 100, inclusive. (Default: 50)
func (*ManifestsListCall) PageToken ¶
func (c *ManifestsListCall) PageToken(pageToken string) *ManifestsListCall
PageToken sets the optional parameter "pageToken": ! Specifies a nextPageToken returned by a previous list request. This ! token can be used to request the next page of results from a previous ! list request.
type ManifestsListResponse ¶
type ManifestsListResponse struct { // Manifests: ! Manifests contained in this list response. Manifests []*Manifest `json:"manifests,omitempty"` // NextPageToken: ! A token used to continue a truncated list request. NextPageToken string `json:"nextPageToken,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Manifests") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
ManifestsListResponse: ! A response containing a partial list of manifests and a page token used ! to build the next request if the request has been truncated. Next available tag: 4
func (*ManifestsListResponse) MarshalJSON ¶
func (s *ManifestsListResponse) MarshalJSON() ([]byte, error)
type ManifestsService ¶
type ManifestsService struct {
// contains filtered or unexported fields
}
func NewManifestsService ¶
func NewManifestsService(s *Service) *ManifestsService
func (*ManifestsService) Get ¶
func (r *ManifestsService) Get(project string, deployment string, manifest string) *ManifestsGetCall
Get: ! Gets information about a specific manifest.
func (*ManifestsService) List ¶
func (r *ManifestsService) List(project string, deployment string) *ManifestsListCall
List: ! Lists all manifests for a given deployment.
type Operation ¶
type Operation struct { // CreationTimestamp: ! [Output Only] Creation timestamp in RFC3339 text // format. CreationTimestamp string `json:"creationTimestamp,omitempty"` // EndTime: ! [Output Only] The time that this operation was completed. // This is in ! RFC3339 format. EndTime string `json:"endTime,omitempty"` // Error: ! [Output Only] If errors occurred during processing of this // operation, ! this field will be populated. Error *OperationError `json:"error,omitempty"` // HttpErrorMessage: ! [Output Only] If operation fails, the HTTP error // message returned, ! e.g. NOT FOUND. HttpErrorMessage string `json:"httpErrorMessage,omitempty"` // HttpErrorStatusCode: ! [Output Only] If operation fails, the HTTP // error status code returned, ! e.g. 404. HttpErrorStatusCode int64 `json:"httpErrorStatusCode,omitempty"` // Id: ! [Output Only] Unique identifier for the resource; defined by // the server. Id uint64 `json:"id,omitempty,string"` // InsertTime: ! [Output Only] The time that this operation was // requested. ! This is in RFC 3339 format. InsertTime string `json:"insertTime,omitempty"` // Name: ! [Output Only] Name of the operation. Name string `json:"name,omitempty"` // OperationType: ! [Output Only] Type of the operation. Examples // include "insert", or ! "delete" OperationType string `json:"operationType,omitempty"` // Progress: ! [Output Only] An optional progress indicator that ranges // from 0 to 100. ! There is no requirement that this be linear or // support any granularity ! of operations. This should not be used to // guess at when the operation will ! be complete. This number should be // monotonically increasing as the ! operation progresses. Progress int64 `json:"progress,omitempty"` // SelfLink: [Output Only] Self link for the manifest. SelfLink string `json:"selfLink,omitempty"` // StartTime: ! [Output Only] The time that this operation was started // by the server. ! This is in RFC 3339 format. StartTime string `json:"startTime,omitempty"` // Status: ! [Output Only] Status of the operation. Can be one of the // following: ! "PENDING", "RUNNING", or "DONE". Status string `json:"status,omitempty"` // StatusMessage: ! [Output Only] An optional textual description of the // current status of ! the operation. StatusMessage string `json:"statusMessage,omitempty"` // TargetId: ! [Output Only] Unique target id which identifies a // particular ! incarnation of the target. TargetId uint64 `json:"targetId,omitempty,string"` // TargetLink: ! [Output Only] URL of the resource the operation is // mutating. TargetLink string `json:"targetLink,omitempty"` // User: ! [Output Only] User who requested the operation, for example ! // "user@example.com" User string `json:"user,omitempty"` // Warnings: ! [Output Only] If warning messages generated during // processing of this ! operation, this field will be populated. Warnings []*OperationWarnings `json:"warnings,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "CreationTimestamp") // to unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
Operation: ! An operation resource, used to manage asynchronous API requests. Next available tag: 24
func (*Operation) MarshalJSON ¶
type OperationError ¶
type OperationError struct { // Errors: ! The array of errors encountered while processing this // operation. Errors []*OperationErrorErrors `json:"errors,omitempty"` // ForceSendFields is a list of field names (e.g. "Errors") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
OperationError: ! [Output Only] If errors occurred during processing of this operation, ! this field will be populated.
func (*OperationError) MarshalJSON ¶
func (s *OperationError) MarshalJSON() ([]byte, error)
type OperationErrorErrors ¶
type OperationErrorErrors struct { // Code: ! The error type identifier for this error. Code string `json:"code,omitempty"` // Location: ! Indicates the field in the request which caused the // error. ! This property is optional. Location string `json:"location,omitempty"` // Message: ! An optional, human-readable error message. Message string `json:"message,omitempty"` // ForceSendFields is a list of field names (e.g. "Code") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
func (*OperationErrorErrors) MarshalJSON ¶
func (s *OperationErrorErrors) MarshalJSON() ([]byte, error)
type OperationWarnings ¶
type OperationWarnings struct { // Code: ! The warning type identifier for this warning. Code interface{} `json:"code,omitempty"` // Data: ! Metadata for this warning in 'key: value' format. Data []*OperationWarningsData `json:"data,omitempty"` // Message: ! Optional human-readable details for this warning. Message string `json:"message,omitempty"` // ForceSendFields is a list of field names (e.g. "Code") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
func (*OperationWarnings) MarshalJSON ¶
func (s *OperationWarnings) MarshalJSON() ([]byte, error)
type OperationWarningsData ¶
type OperationWarningsData struct { // Key: ! A key for the warning data. Key string `json:"key,omitempty"` // Value: ! A warning data value corresponding to the key. Value string `json:"value,omitempty"` // ForceSendFields is a list of field names (e.g. "Key") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
func (*OperationWarningsData) MarshalJSON ¶
func (s *OperationWarningsData) MarshalJSON() ([]byte, error)
type OperationsGetCall ¶
type OperationsGetCall struct {
// contains filtered or unexported fields
}
func (*OperationsGetCall) Context ¶
func (c *OperationsGetCall) Context(ctx context.Context) *OperationsGetCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*OperationsGetCall) Do ¶
func (c *OperationsGetCall) Do() (*Operation, error)
Do executes the "deploymentmanager.operations.get" call. Exactly one of *Operation or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Operation.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
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.
func (*OperationsGetCall) IfNoneMatch ¶
func (c *OperationsGetCall) IfNoneMatch(entityTag string) *OperationsGetCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
type OperationsListCall ¶
type OperationsListCall struct {
// contains filtered or unexported fields
}
func (*OperationsListCall) Context ¶
func (c *OperationsListCall) Context(ctx context.Context) *OperationsListCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*OperationsListCall) Do ¶
func (c *OperationsListCall) Do() (*OperationsListResponse, error)
Do executes the "deploymentmanager.operations.list" call. Exactly one of *OperationsListResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *OperationsListResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
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) IfNoneMatch ¶
func (c *OperationsListCall) IfNoneMatch(entityTag string) *OperationsListCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
func (*OperationsListCall) MaxResults ¶
func (c *OperationsListCall) MaxResults(maxResults int64) *OperationsListCall
MaxResults sets the optional parameter "maxResults": ! Maximum count of results to be returned. ! Acceptable values are 0 to 100, inclusive. (Default: 50)
func (*OperationsListCall) PageToken ¶
func (c *OperationsListCall) PageToken(pageToken string) *OperationsListCall
PageToken sets the optional parameter "pageToken": ! Specifies a nextPageToken returned by a previous list request. This ! token can be used to request the next page of results from a previous ! list request.
type OperationsListResponse ¶
type OperationsListResponse struct { // NextPageToken: ! A token used to continue a truncated list request. NextPageToken string `json:"nextPageToken,omitempty"` // Operations: ! Operations contained in this list response. Operations []*Operation `json:"operations,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "NextPageToken") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
OperationsListResponse: ! A response containing a partial list of operations and a page token used ! to build the next request if the request has been truncated. Next available tag: 4
func (*OperationsListResponse) MarshalJSON ¶
func (s *OperationsListResponse) MarshalJSON() ([]byte, error)
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, operation string) *OperationsGetCall
Get: ! Gets information about a specific Operation.
func (*OperationsService) List ¶
func (r *OperationsService) List(project string) *OperationsListCall
List: ! Lists all Operations for a project.
type Resource ¶
type Resource struct { // Errors: ! [Output Only] A list of any errors that occurred during // deployment. Errors []string `json:"errors,omitempty"` // Id: [Output Only] Unique identifier for the resource; defined by the // server. Id uint64 `json:"id,omitempty,string"` // Intent: ! [Output Only] The intended state of the resource. Intent string `json:"intent,omitempty"` // Manifest: ! [Output Only] URL of the manifest representing the // current configuration ! of this resource. Manifest string `json:"manifest,omitempty"` // Name: ! [Output Only] The name of the resource as it appears in the // YAML config. Name string `json:"name,omitempty"` // State: ! [Output Only] The state of the resource. State string `json:"state,omitempty"` // Type: ! [Output Only] The type of the resource, for example ! // ?compute.v1.instance?, or ?replicaPools.v1beta2.instanceGroupManager? Type string `json:"type,omitempty"` // Url: ! [Output Only] The URL of the actual resource. Url string `json:"url,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Errors") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
Resource: Next available tag: 12
func (*Resource) MarshalJSON ¶
type ResourcesGetCall ¶
type ResourcesGetCall struct {
// contains filtered or unexported fields
}
func (*ResourcesGetCall) Context ¶
func (c *ResourcesGetCall) Context(ctx context.Context) *ResourcesGetCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ResourcesGetCall) Do ¶
func (c *ResourcesGetCall) Do() (*Resource, error)
Do executes the "deploymentmanager.resources.get" call. Exactly one of *Resource or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *Resource.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ResourcesGetCall) Fields ¶
func (c *ResourcesGetCall) Fields(s ...googleapi.Field) *ResourcesGetCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ResourcesGetCall) IfNoneMatch ¶
func (c *ResourcesGetCall) IfNoneMatch(entityTag string) *ResourcesGetCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
type ResourcesListCall ¶
type ResourcesListCall struct {
// contains filtered or unexported fields
}
func (*ResourcesListCall) Context ¶
func (c *ResourcesListCall) Context(ctx context.Context) *ResourcesListCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*ResourcesListCall) Do ¶
func (c *ResourcesListCall) Do() (*ResourcesListResponse, error)
Do executes the "deploymentmanager.resources.list" call. Exactly one of *ResourcesListResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *ResourcesListResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*ResourcesListCall) Fields ¶
func (c *ResourcesListCall) Fields(s ...googleapi.Field) *ResourcesListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*ResourcesListCall) IfNoneMatch ¶
func (c *ResourcesListCall) IfNoneMatch(entityTag string) *ResourcesListCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
func (*ResourcesListCall) MaxResults ¶
func (c *ResourcesListCall) MaxResults(maxResults int64) *ResourcesListCall
MaxResults sets the optional parameter "maxResults": ! Maximum count of results to be returned. ! Acceptable values are 0 to 100, inclusive. (Default: 50)
func (*ResourcesListCall) PageToken ¶
func (c *ResourcesListCall) PageToken(pageToken string) *ResourcesListCall
PageToken sets the optional parameter "pageToken": ! Specifies a nextPageToken returned by a previous list request. This ! token can be used to request the next page of results from a previous ! list request.
type ResourcesListResponse ¶
type ResourcesListResponse struct { // NextPageToken: ! A token used to continue a truncated list request. NextPageToken string `json:"nextPageToken,omitempty"` // Resources: ! Resources contained in this list response. Resources []*Resource `json:"resources,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "NextPageToken") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
ResourcesListResponse: ! A response containing a partial list of resources and a page token used ! to build the next request if the request has been truncated. Next available tag: 4
func (*ResourcesListResponse) MarshalJSON ¶
func (s *ResourcesListResponse) MarshalJSON() ([]byte, error)
type ResourcesService ¶
type ResourcesService struct {
// contains filtered or unexported fields
}
func NewResourcesService ¶
func NewResourcesService(s *Service) *ResourcesService
func (*ResourcesService) Get ¶
func (r *ResourcesService) Get(project string, deployment string, resource string) *ResourcesGetCall
Get: ! Gets information about a single resource.
func (*ResourcesService) List ¶
func (r *ResourcesService) List(project string, deployment string) *ResourcesListCall
List: ! Lists all resources in a given deployment.
type Service ¶
type Service struct { BasePath string // API endpoint base URL UserAgent string // optional additional User-Agent fragment Deployments *DeploymentsService Manifests *ManifestsService Operations *OperationsService Resources *ResourcesService Types *TypesService // contains filtered or unexported fields }
type Type ¶
type Type struct { // Name: ! Name of the type. Name string `json:"name,omitempty"` // ForceSendFields is a list of field names (e.g. "Name") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
Type: ! A type supported by Deployment Manager. Next available tag: 4
func (*Type) MarshalJSON ¶
type TypesListCall ¶
type TypesListCall struct {
// contains filtered or unexported fields
}
func (*TypesListCall) Context ¶
func (c *TypesListCall) Context(ctx context.Context) *TypesListCall
Context sets the context to be used in this call's Do method. Any pending HTTP request will be aborted if the provided context is canceled.
func (*TypesListCall) Do ¶
func (c *TypesListCall) Do() (*TypesListResponse, error)
Do executes the "deploymentmanager.types.list" call. Exactly one of *TypesListResponse or error will be non-nil. Any non-2xx status code is an error. Response headers are in either *TypesListResponse.ServerResponse.Header or (if a response was returned at all) in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to check whether the returned error was because http.StatusNotModified was returned.
func (*TypesListCall) Fields ¶
func (c *TypesListCall) Fields(s ...googleapi.Field) *TypesListCall
Fields allows partial responses to be retrieved. See https://developers.google.com/gdata/docs/2.0/basics#PartialResponse for more information.
func (*TypesListCall) IfNoneMatch ¶
func (c *TypesListCall) IfNoneMatch(entityTag string) *TypesListCall
IfNoneMatch sets the optional parameter which makes the operation fail if the object's ETag matches the given value. This is useful for getting updates only after the object has changed since the last request. Use googleapi.IsNotModified to check whether the response error from Do is the result of In-None-Match.
func (*TypesListCall) MaxResults ¶
func (c *TypesListCall) MaxResults(maxResults int64) *TypesListCall
MaxResults sets the optional parameter "maxResults": ! Maximum count of results to be returned. ! Acceptable values are 0 to 100, inclusive. (Default: 50)
func (*TypesListCall) PageToken ¶
func (c *TypesListCall) PageToken(pageToken string) *TypesListCall
PageToken sets the optional parameter "pageToken": ! Specifies a nextPageToken returned by a previous list request. This ! token can be used to request the next page of results from a previous ! list request.
type TypesListResponse ¶
type TypesListResponse struct { // Types: ! Types supported by Deployment Manager Types []*Type `json:"types,omitempty"` // ServerResponse contains the HTTP response code and headers from the // server. googleapi.ServerResponse `json:"-"` // ForceSendFields is a list of field names (e.g. "Types") to // unconditionally include in API requests. By default, fields with // empty values are omitted from API requests. However, any non-pointer, // non-interface field appearing in ForceSendFields will be sent to the // server regardless of whether the field is empty or not. This may be // used to include empty fields in Patch requests. ForceSendFields []string `json:"-"` }
TypesListResponse: ! A response that returns all Types supported by Deployment Manager Next available tag: 3
func (*TypesListResponse) MarshalJSON ¶
func (s *TypesListResponse) MarshalJSON() ([]byte, error)
type TypesService ¶
type TypesService struct {
// contains filtered or unexported fields
}
func NewTypesService ¶
func NewTypesService(s *Service) *TypesService
func (*TypesService) List ¶
func (r *TypesService) List(project string) *TypesListCall
List: ! Lists all Types for Deployment Manager.