1
0
mirror of https://github.com/rclone/rclone.git synced 2026-01-03 17:13:18 +00:00

vendor: update all dependencies to latest versions

This commit is contained in:
Nick Craig-Wood
2018-01-16 13:20:59 +00:00
parent 8e83fb6fb9
commit 7d3a17725d
4878 changed files with 1974229 additions and 201215 deletions

View File

@@ -1,12 +1,12 @@
{
"kind": "discovery#restDescription",
"etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/_YIg1ZU-z6xEn8qUWJtIDhiIaWM\"",
"etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/mU9AB3arZXHonawOKvVGxjy7qkY\"",
"discoveryVersion": "v1",
"id": "deploymentmanager:alpha",
"name": "deploymentmanager",
"canonicalName": "Deployment Manager Alpha",
"version": "alpha",
"revision": "20170925",
"revision": "20171214",
"title": "Google Cloud Deployment Manager Alpha API",
"description": "The Deployment Manager API allows users to declaratively configure, deploy and run complex solutions on the Google Cloud Platform.",
"ownerDomain": "google.com",
@@ -86,6 +86,21 @@
}
},
"schemas": {
"AsyncOptions": {
"id": "AsyncOptions",
"type": "object",
"description": "Async options that determine when a resource should finish.",
"properties": {
"methodMatch": {
"type": "string",
"description": "Method regex where this policy will apply."
},
"pollingOptions": {
"$ref": "PollingOptions",
"description": "Deployment manager will poll instances for this API resource setting a RUNNING state, and blocking until polling conditions tell whether the resource is completed or failed."
}
}
},
"AuditConfig": {
"id": "AuditConfig",
"type": "object",
@@ -184,6 +199,10 @@
"type": "string",
"description": "The collection that identifies this resource within its service."
},
"methodMap": {
"$ref": "MethodMap",
"description": "Custom verb method mappings to support unordered list API mappings."
},
"options": {
"$ref": "Options",
"description": "The options to apply to this resource-level override"
@@ -217,7 +236,7 @@
},
"name": {
"type": "string",
"description": "Name of the composite type."
"description": "Name of the composite type, must follow the expression: [a-z]([-a-z0-9_.]{0,61}[a-z0-9])?."
},
"operation": {
"$ref": "Operation",
@@ -527,6 +546,21 @@
}
}
},
"Diagnostic": {
"id": "Diagnostic",
"type": "object",
"description": "",
"properties": {
"field": {
"type": "string",
"description": "JsonPath expression on the resource that if non empty, indicates that this field needs to be extracted as a diagnostic."
},
"level": {
"type": "string",
"description": "Level to record this diagnostic."
}
}
},
"Expr": {
"id": "Expr",
"type": "object",
@@ -709,10 +743,37 @@
}
}
},
"MethodMap": {
"id": "MethodMap",
"type": "object",
"description": "Deployment Manager will call these methods during the events of creation/deletion/update/get/setIamPolicy",
"properties": {
"create": {
"type": "string",
"description": "The action identifier for the create method to be used for this collection"
},
"delete": {
"type": "string",
"description": "The action identifier for the delete method to be used for this collection"
},
"get": {
"type": "string",
"description": "The action identifier for the get method to be used for this collection"
},
"setIamPolicy": {
"type": "string",
"description": "The action identifier for the setIamPolicy method to be used for this collection"
},
"update": {
"type": "string",
"description": "The action identifier for the update method to be used for this collection"
}
}
},
"Operation": {
"id": "Operation",
"type": "object",
"description": "An Operation resource, used to manage asynchronous API requests.",
"description": "An Operation resource, used to manage asynchronous API requests. (== resource_for v1.globalOperations ==) (== resource_for beta.globalOperations ==) (== resource_for v1.regionOperations ==) (== resource_for beta.regionOperations ==) (== resource_for v1.zoneOperations ==) (== resource_for beta.zoneOperations ==)",
"properties": {
"clientOperationId": {
"type": "string",
@@ -889,6 +950,13 @@
"type": "object",
"description": "Options allows customized resource handling by Deployment Manager.",
"properties": {
"asyncOptions": {
"type": "array",
"description": "Options regarding how to thread async requests.",
"items": {
"$ref": "AsyncOptions"
}
},
"inputMappings": {
"type": "array",
"description": "The mappings that apply for requests.",
@@ -948,6 +1016,36 @@
}
}
},
"PollingOptions": {
"id": "PollingOptions",
"type": "object",
"description": "",
"properties": {
"diagnostics": {
"type": "array",
"description": "An array of diagnostics to be collected by Deployment Manager, these diagnostics will be displayed to the user.",
"items": {
"$ref": "Diagnostic"
}
},
"failCondition": {
"type": "string",
"description": "JsonPath expression that determines if the request failed."
},
"finishCondition": {
"type": "string",
"description": "JsonPath expression that determines if the request is completed."
},
"pollingLink": {
"type": "string",
"description": "JsonPath expression that evaluates to string, it indicates where to poll."
},
"targetLink": {
"type": "string",
"description": "JsonPath expression, after polling is completed, indicates where to fetch the resource."
}
}
},
"Resource": {
"id": "Resource",
"type": "object",
@@ -986,6 +1084,13 @@
"type": "string",
"description": "Output only. The current properties of the resource before any references have been filled in. Returned as serialized YAML."
},
"runtimePolicies": {
"type": "array",
"description": "Output only. In case this is an action, it will show the runtimePolicies on which this action will run in the deployment",
"items": {
"type": "string"
}
},
"type": {
"type": "string",
"description": "Output only. The type of the resource, for example compute.v1.instance, or cloudfunctions.v1beta1.function."
@@ -1105,6 +1210,13 @@
"type": "string",
"description": "Output only. The set of updated properties for this resource, before references are expanded. Returned as serialized YAML."
},
"runtimePolicies": {
"type": "array",
"description": "Output only. In case this is an action, it will show the runtimePolicies that this action will have after updating the deployment.",
"items": {
"type": "string"
}
},
"state": {
"type": "string",
"description": "Output only. The state of the resource."
@@ -1258,6 +1370,10 @@
"type": "string",
"description": "Which interpreter (python or jinja) should be used during expansion."
},
"mainTemplate": {
"type": "string",
"description": "The filename of the mainTemplate"
},
"schema": {
"type": "string",
"description": "The contents of the template schema."
@@ -1553,7 +1669,7 @@
"type": "string",
"description": "The name of the type for this request.",
"required": true,
"pattern": "[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?",
"pattern": "[a-z](?:[-a-z0-9_.]{0,61}[a-z0-9])?",
"location": "path"
},
"project": {
@@ -1586,7 +1702,7 @@
"type": "string",
"description": "The name of the composite type for this request.",
"required": true,
"pattern": "[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?",
"pattern": "[a-z](?:[-a-z0-9_.]{0,61}[a-z0-9])?",
"location": "path"
},
"project": {
@@ -1699,7 +1815,7 @@
"type": "string",
"description": "The name of the composite type for this request.",
"required": true,
"pattern": "[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?",
"pattern": "[a-z](?:[-a-z0-9_.]{0,61}[a-z0-9])?",
"location": "path"
},
"project": {
@@ -1735,7 +1851,7 @@
"type": "string",
"description": "The name of the composite type for this request.",
"required": true,
"pattern": "[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?",
"pattern": "[a-z](?:[-a-z0-9_.]{0,61}[a-z0-9])?",
"location": "path"
},
"project": {

File diff suppressed because it is too large Load Diff

View File

@@ -1,12 +1,12 @@
{
"kind": "discovery#restDescription",
"etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/4coXG-kLdOLe0xqn_lc-mbxcObg\"",
"etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/GDaMgEo2rpzvf2TXCj_2gpZ3fIE\"",
"discoveryVersion": "v1",
"id": "deploymentmanager:v2",
"name": "deploymentmanager",
"canonicalName": "Deployment Manager",
"version": "v2",
"revision": "20170925",
"revision": "20171201",
"title": "Google Cloud Deployment Manager API",
"description": "Declares, configures, and deploys complex solutions on Google Cloud Platform.",
"ownerDomain": "google.com",
@@ -513,7 +513,7 @@
"Operation": {
"id": "Operation",
"type": "object",
"description": "An Operation resource, used to manage asynchronous API requests.",
"description": "An Operation resource, used to manage asynchronous API requests. (== resource_for v1.globalOperations ==) (== resource_for beta.globalOperations ==) (== resource_for v1.regionOperations ==) (== resource_for beta.regionOperations ==) (== resource_for v1.zoneOperations ==) (== resource_for beta.zoneOperations ==)",
"properties": {
"clientOperationId": {
"type": "string",

View File

@@ -197,8 +197,8 @@ type AuditConfig struct {
}
func (s *AuditConfig) MarshalJSON() ([]byte, error) {
type noMethod AuditConfig
raw := noMethod(*s)
type NoMethod AuditConfig
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -239,8 +239,8 @@ type AuditLogConfig struct {
}
func (s *AuditLogConfig) MarshalJSON() ([]byte, error) {
type noMethod AuditLogConfig
raw := noMethod(*s)
type NoMethod AuditLogConfig
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -269,8 +269,8 @@ type AuthorizationLoggingOptions struct {
}
func (s *AuthorizationLoggingOptions) MarshalJSON() ([]byte, error) {
type noMethod AuthorizationLoggingOptions
raw := noMethod(*s)
type NoMethod AuthorizationLoggingOptions
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -333,8 +333,8 @@ type Binding struct {
}
func (s *Binding) MarshalJSON() ([]byte, error) {
type noMethod Binding
raw := noMethod(*s)
type NoMethod Binding
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -378,8 +378,8 @@ type Condition struct {
}
func (s *Condition) MarshalJSON() ([]byte, error) {
type noMethod Condition
raw := noMethod(*s)
type NoMethod Condition
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -405,8 +405,8 @@ type ConfigFile struct {
}
func (s *ConfigFile) MarshalJSON() ([]byte, error) {
type noMethod ConfigFile
raw := noMethod(*s)
type NoMethod ConfigFile
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -493,8 +493,8 @@ type Deployment struct {
}
func (s *Deployment) MarshalJSON() ([]byte, error) {
type noMethod Deployment
raw := noMethod(*s)
type NoMethod Deployment
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -521,8 +521,8 @@ type DeploymentLabelEntry struct {
}
func (s *DeploymentLabelEntry) MarshalJSON() ([]byte, error) {
type noMethod DeploymentLabelEntry
raw := noMethod(*s)
type NoMethod DeploymentLabelEntry
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -561,8 +561,8 @@ type DeploymentUpdate struct {
}
func (s *DeploymentUpdate) MarshalJSON() ([]byte, error) {
type noMethod DeploymentUpdate
raw := noMethod(*s)
type NoMethod DeploymentUpdate
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -589,8 +589,8 @@ type DeploymentUpdateLabelEntry struct {
}
func (s *DeploymentUpdateLabelEntry) MarshalJSON() ([]byte, error) {
type noMethod DeploymentUpdateLabelEntry
raw := noMethod(*s)
type NoMethod DeploymentUpdateLabelEntry
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -626,8 +626,8 @@ type DeploymentsCancelPreviewRequest struct {
}
func (s *DeploymentsCancelPreviewRequest) MarshalJSON() ([]byte, error) {
type noMethod DeploymentsCancelPreviewRequest
raw := noMethod(*s)
type NoMethod DeploymentsCancelPreviewRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -664,8 +664,8 @@ type DeploymentsListResponse struct {
}
func (s *DeploymentsListResponse) MarshalJSON() ([]byte, error) {
type noMethod DeploymentsListResponse
raw := noMethod(*s)
type NoMethod DeploymentsListResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -701,8 +701,8 @@ type DeploymentsStopRequest struct {
}
func (s *DeploymentsStopRequest) MarshalJSON() ([]byte, error) {
type noMethod DeploymentsStopRequest
raw := noMethod(*s)
type NoMethod DeploymentsStopRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -751,8 +751,8 @@ type Expr struct {
}
func (s *Expr) MarshalJSON() ([]byte, error) {
type noMethod Expr
raw := noMethod(*s)
type NoMethod Expr
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -781,8 +781,8 @@ type ImportFile struct {
}
func (s *ImportFile) MarshalJSON() ([]byte, error) {
type noMethod ImportFile
raw := noMethod(*s)
type NoMethod ImportFile
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -815,8 +815,8 @@ type LogConfig struct {
}
func (s *LogConfig) MarshalJSON() ([]byte, error) {
type noMethod LogConfig
raw := noMethod(*s)
type NoMethod LogConfig
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -849,8 +849,8 @@ type LogConfigCloudAuditOptions struct {
}
func (s *LogConfigCloudAuditOptions) MarshalJSON() ([]byte, error) {
type noMethod LogConfigCloudAuditOptions
raw := noMethod(*s)
type NoMethod LogConfigCloudAuditOptions
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -902,8 +902,8 @@ type LogConfigCounterOptions struct {
}
func (s *LogConfigCounterOptions) MarshalJSON() ([]byte, error) {
type noMethod LogConfigCounterOptions
raw := noMethod(*s)
type NoMethod LogConfigCounterOptions
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -932,8 +932,8 @@ type LogConfigDataAccessOptions struct {
}
func (s *LogConfigDataAccessOptions) MarshalJSON() ([]byte, error) {
type noMethod LogConfigDataAccessOptions
raw := noMethod(*s)
type NoMethod LogConfigDataAccessOptions
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -989,8 +989,8 @@ type Manifest struct {
}
func (s *Manifest) MarshalJSON() ([]byte, error) {
type noMethod Manifest
raw := noMethod(*s)
type NoMethod Manifest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1027,13 +1027,16 @@ type ManifestsListResponse struct {
}
func (s *ManifestsListResponse) MarshalJSON() ([]byte, error) {
type noMethod ManifestsListResponse
raw := noMethod(*s)
type NoMethod ManifestsListResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Operation: An Operation resource, used to manage asynchronous API
// requests.
// requests. (== resource_for v1.globalOperations ==) (== resource_for
// beta.globalOperations ==) (== resource_for v1.regionOperations ==)
// (== resource_for beta.regionOperations ==) (== resource_for
// v1.zoneOperations ==) (== resource_for beta.zoneOperations ==)
type Operation struct {
// ClientOperationId: [Output Only] Reserved for future use.
ClientOperationId string `json:"clientOperationId,omitempty"`
@@ -1151,8 +1154,8 @@ type Operation struct {
}
func (s *Operation) MarshalJSON() ([]byte, error) {
type noMethod Operation
raw := noMethod(*s)
type NoMethod Operation
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1181,8 +1184,8 @@ type OperationError struct {
}
func (s *OperationError) MarshalJSON() ([]byte, error) {
type noMethod OperationError
raw := noMethod(*s)
type NoMethod OperationError
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1215,8 +1218,8 @@ type OperationErrorErrors struct {
}
func (s *OperationErrorErrors) MarshalJSON() ([]byte, error) {
type noMethod OperationErrorErrors
raw := noMethod(*s)
type NoMethod OperationErrorErrors
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1253,8 +1256,8 @@ type OperationWarnings struct {
}
func (s *OperationWarnings) MarshalJSON() ([]byte, error) {
type noMethod OperationWarnings
raw := noMethod(*s)
type NoMethod OperationWarnings
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1290,8 +1293,8 @@ type OperationWarningsData struct {
}
func (s *OperationWarningsData) MarshalJSON() ([]byte, error) {
type noMethod OperationWarningsData
raw := noMethod(*s)
type NoMethod OperationWarningsData
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1328,8 +1331,8 @@ type OperationsListResponse struct {
}
func (s *OperationsListResponse) MarshalJSON() ([]byte, error) {
type noMethod OperationsListResponse
raw := noMethod(*s)
type NoMethod OperationsListResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1414,8 +1417,8 @@ type Policy struct {
}
func (s *Policy) MarshalJSON() ([]byte, error) {
type noMethod Policy
raw := noMethod(*s)
type NoMethod Policy
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1490,8 +1493,8 @@ type Resource struct {
}
func (s *Resource) MarshalJSON() ([]byte, error) {
type noMethod Resource
raw := noMethod(*s)
type NoMethod Resource
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1528,8 +1531,8 @@ type ResourceWarnings struct {
}
func (s *ResourceWarnings) MarshalJSON() ([]byte, error) {
type noMethod ResourceWarnings
raw := noMethod(*s)
type NoMethod ResourceWarnings
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1565,8 +1568,8 @@ type ResourceWarningsData struct {
}
func (s *ResourceWarningsData) MarshalJSON() ([]byte, error) {
type noMethod ResourceWarningsData
raw := noMethod(*s)
type NoMethod ResourceWarningsData
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1593,8 +1596,8 @@ type ResourceAccessControl struct {
}
func (s *ResourceAccessControl) MarshalJSON() ([]byte, error) {
type noMethod ResourceAccessControl
raw := noMethod(*s)
type NoMethod ResourceAccessControl
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1649,8 +1652,8 @@ type ResourceUpdate struct {
}
func (s *ResourceUpdate) MarshalJSON() ([]byte, error) {
type noMethod ResourceUpdate
raw := noMethod(*s)
type NoMethod ResourceUpdate
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1679,8 +1682,8 @@ type ResourceUpdateError struct {
}
func (s *ResourceUpdateError) MarshalJSON() ([]byte, error) {
type noMethod ResourceUpdateError
raw := noMethod(*s)
type NoMethod ResourceUpdateError
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1713,8 +1716,8 @@ type ResourceUpdateErrorErrors struct {
}
func (s *ResourceUpdateErrorErrors) MarshalJSON() ([]byte, error) {
type noMethod ResourceUpdateErrorErrors
raw := noMethod(*s)
type NoMethod ResourceUpdateErrorErrors
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1751,8 +1754,8 @@ type ResourceUpdateWarnings struct {
}
func (s *ResourceUpdateWarnings) MarshalJSON() ([]byte, error) {
type noMethod ResourceUpdateWarnings
raw := noMethod(*s)
type NoMethod ResourceUpdateWarnings
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1788,8 +1791,8 @@ type ResourceUpdateWarningsData struct {
}
func (s *ResourceUpdateWarningsData) MarshalJSON() ([]byte, error) {
type noMethod ResourceUpdateWarningsData
raw := noMethod(*s)
type NoMethod ResourceUpdateWarningsData
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1825,8 +1828,8 @@ type ResourcesListResponse struct {
}
func (s *ResourcesListResponse) MarshalJSON() ([]byte, error) {
type noMethod ResourcesListResponse
raw := noMethod(*s)
type NoMethod ResourcesListResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1878,8 +1881,8 @@ type Rule struct {
}
func (s *Rule) MarshalJSON() ([]byte, error) {
type noMethod Rule
raw := noMethod(*s)
type NoMethod Rule
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1910,8 +1913,8 @@ type TargetConfiguration struct {
}
func (s *TargetConfiguration) MarshalJSON() ([]byte, error) {
type noMethod TargetConfiguration
raw := noMethod(*s)
type NoMethod TargetConfiguration
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1939,8 +1942,8 @@ type TestPermissionsRequest struct {
}
func (s *TestPermissionsRequest) MarshalJSON() ([]byte, error) {
type noMethod TestPermissionsRequest
raw := noMethod(*s)
type NoMethod TestPermissionsRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1971,8 +1974,8 @@ type TestPermissionsResponse struct {
}
func (s *TestPermissionsResponse) MarshalJSON() ([]byte, error) {
type noMethod TestPermissionsResponse
raw := noMethod(*s)
type NoMethod TestPermissionsResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2014,8 +2017,8 @@ type Type struct {
}
func (s *Type) MarshalJSON() ([]byte, error) {
type noMethod Type
raw := noMethod(*s)
type NoMethod Type
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2051,8 +2054,8 @@ type TypesListResponse struct {
}
func (s *TypesListResponse) MarshalJSON() ([]byte, error) {
type noMethod TypesListResponse
raw := noMethod(*s)
type NoMethod TypesListResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2160,7 +2163,7 @@ func (c *DeploymentsCancelPreviewCall) Do(opts ...googleapi.CallOption) (*Operat
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -2311,7 +2314,7 @@ func (c *DeploymentsDeleteCall) Do(opts ...googleapi.CallOption) (*Operation, er
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -2475,7 +2478,7 @@ func (c *DeploymentsGetCall) Do(opts ...googleapi.CallOption) (*Deployment, erro
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -2628,7 +2631,7 @@ func (c *DeploymentsGetIamPolicyCall) Do(opts ...googleapi.CallOption) (*Policy,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -2783,7 +2786,7 @@ func (c *DeploymentsInsertCall) Do(opts ...googleapi.CallOption) (*Operation, er
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -2997,7 +3000,7 @@ func (c *DeploymentsListCall) Do(opts ...googleapi.CallOption) (*DeploymentsList
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -3217,7 +3220,7 @@ func (c *DeploymentsPatchCall) Do(opts ...googleapi.CallOption) (*Operation, err
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -3398,7 +3401,7 @@ func (c *DeploymentsSetIamPolicyCall) Do(opts ...googleapi.CallOption) (*Policy,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -3546,7 +3549,7 @@ func (c *DeploymentsStopCall) Do(opts ...googleapi.CallOption) (*Operation, erro
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -3693,7 +3696,7 @@ func (c *DeploymentsTestIamPermissionsCall) Do(opts ...googleapi.CallOption) (*T
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -3878,7 +3881,7 @@ func (c *DeploymentsUpdateCall) Do(opts ...googleapi.CallOption) (*Operation, er
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -4068,7 +4071,7 @@ func (c *ManifestsGetCall) Do(opts ...googleapi.CallOption) (*Manifest, error) {
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -4295,7 +4298,7 @@ func (c *ManifestsListCall) Do(opts ...googleapi.CallOption) (*ManifestsListResp
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -4491,7 +4494,7 @@ func (c *OperationsGetCall) Do(opts ...googleapi.CallOption) (*Operation, error)
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -4706,7 +4709,7 @@ func (c *OperationsListCall) Do(opts ...googleapi.CallOption) (*OperationsListRe
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -4897,7 +4900,7 @@ func (c *ResourcesGetCall) Do(opts ...googleapi.CallOption) (*Resource, error) {
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -5123,7 +5126,7 @@ func (c *ResourcesListCall) Do(opts ...googleapi.CallOption) (*ResourcesListResp
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -5383,7 +5386,7 @@ func (c *TypesListCall) Do(opts ...googleapi.CallOption) (*TypesListResponse, er
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil

View File

@@ -1,12 +1,12 @@
{
"kind": "discovery#restDescription",
"etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/fjbnlFC4GTEIX5zCJ4_9R1qQWCw\"",
"etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/Os0QttejTkDUy1hcIScN6tyVIbQ\"",
"discoveryVersion": "v1",
"id": "deploymentmanager:v2beta",
"name": "deploymentmanager",
"canonicalName": "Deployment Manager V2Beta",
"version": "v2beta",
"revision": "20170925",
"revision": "20171201",
"title": "Google Cloud Deployment Manager API V2Beta Methods",
"description": "The Deployment Manager API allows users to declaratively configure, deploy and run complex solutions on the Google Cloud Platform.",
"ownerDomain": "google.com",
@@ -243,7 +243,7 @@
},
"name": {
"type": "string",
"description": "Name of the composite type."
"description": "Name of the composite type, must follow the expression: [a-z]([-a-z0-9_.]{0,61}[a-z0-9])?."
},
"operation": {
"$ref": "Operation",
@@ -685,7 +685,7 @@
"Operation": {
"id": "Operation",
"type": "object",
"description": "An Operation resource, used to manage asynchronous API requests.",
"description": "An Operation resource, used to manage asynchronous API requests. (== resource_for v1.globalOperations ==) (== resource_for beta.globalOperations ==) (== resource_for v1.regionOperations ==) (== resource_for beta.regionOperations ==) (== resource_for v1.zoneOperations ==) (== resource_for beta.zoneOperations ==)",
"properties": {
"clientOperationId": {
"type": "string",
@@ -1223,6 +1223,10 @@
"type": "string",
"description": "Which interpreter (python or jinja) should be used during expansion."
},
"mainTemplate": {
"type": "string",
"description": "The filename of the mainTemplate"
},
"schema": {
"type": "string",
"description": "The contents of the template schema."
@@ -1518,7 +1522,7 @@
"type": "string",
"description": "The name of the type for this request.",
"required": true,
"pattern": "[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?",
"pattern": "[a-z](?:[-a-z0-9_.]{0,61}[a-z0-9])?",
"location": "path"
},
"project": {
@@ -1551,7 +1555,7 @@
"type": "string",
"description": "The name of the composite type for this request.",
"required": true,
"pattern": "[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?",
"pattern": "[a-z](?:[-a-z0-9_.]{0,61}[a-z0-9])?",
"location": "path"
},
"project": {
@@ -1664,7 +1668,7 @@
"type": "string",
"description": "The name of the composite type for this request.",
"required": true,
"pattern": "[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?",
"pattern": "[a-z](?:[-a-z0-9_.]{0,61}[a-z0-9])?",
"location": "path"
},
"project": {
@@ -1700,7 +1704,7 @@
"type": "string",
"description": "The name of the composite type for this request.",
"required": true,
"pattern": "[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?",
"pattern": "[a-z](?:[-a-z0-9_.]{0,61}[a-z0-9])?",
"location": "path"
},
"project": {

View File

@@ -221,8 +221,8 @@ type AuditConfig struct {
}
func (s *AuditConfig) MarshalJSON() ([]byte, error) {
type noMethod AuditConfig
raw := noMethod(*s)
type NoMethod AuditConfig
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -263,8 +263,8 @@ type AuditLogConfig struct {
}
func (s *AuditLogConfig) MarshalJSON() ([]byte, error) {
type noMethod AuditLogConfig
raw := noMethod(*s)
type NoMethod AuditLogConfig
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -293,8 +293,8 @@ type AuthorizationLoggingOptions struct {
}
func (s *AuthorizationLoggingOptions) MarshalJSON() ([]byte, error) {
type noMethod AuthorizationLoggingOptions
raw := noMethod(*s)
type NoMethod AuthorizationLoggingOptions
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -333,8 +333,8 @@ type BaseType struct {
}
func (s *BaseType) MarshalJSON() ([]byte, error) {
type noMethod BaseType
raw := noMethod(*s)
type NoMethod BaseType
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -362,8 +362,8 @@ type BasicAuth struct {
}
func (s *BasicAuth) MarshalJSON() ([]byte, error) {
type noMethod BasicAuth
raw := noMethod(*s)
type NoMethod BasicAuth
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -426,8 +426,8 @@ type Binding struct {
}
func (s *Binding) MarshalJSON() ([]byte, error) {
type noMethod Binding
raw := noMethod(*s)
type NoMethod Binding
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -459,8 +459,8 @@ type CollectionOverride struct {
}
func (s *CollectionOverride) MarshalJSON() ([]byte, error) {
type noMethod CollectionOverride
raw := noMethod(*s)
type NoMethod CollectionOverride
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -486,7 +486,8 @@ type CompositeType struct {
// ([a-z]([-a-z0-9]*[a-z0-9])?)?
Labels []*CompositeTypeLabelEntry `json:"labels,omitempty"`
// Name: Name of the composite type.
// Name: Name of the composite type, must follow the expression:
// [a-z]([-a-z0-9_.]{0,61}[a-z0-9])?.
Name string `json:"name,omitempty"`
// Operation: Output only. The Operation that most recently ran, or is
@@ -523,8 +524,8 @@ type CompositeType struct {
}
func (s *CompositeType) MarshalJSON() ([]byte, error) {
type noMethod CompositeType
raw := noMethod(*s)
type NoMethod CompositeType
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -551,8 +552,8 @@ type CompositeTypeLabelEntry struct {
}
func (s *CompositeTypeLabelEntry) MarshalJSON() ([]byte, error) {
type noMethod CompositeTypeLabelEntry
raw := noMethod(*s)
type NoMethod CompositeTypeLabelEntry
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -589,8 +590,8 @@ type CompositeTypesListResponse struct {
}
func (s *CompositeTypesListResponse) MarshalJSON() ([]byte, error) {
type noMethod CompositeTypesListResponse
raw := noMethod(*s)
type NoMethod CompositeTypesListResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -634,8 +635,8 @@ type Condition struct {
}
func (s *Condition) MarshalJSON() ([]byte, error) {
type noMethod Condition
raw := noMethod(*s)
type NoMethod Condition
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -661,8 +662,8 @@ type ConfigFile struct {
}
func (s *ConfigFile) MarshalJSON() ([]byte, error) {
type noMethod ConfigFile
raw := noMethod(*s)
type NoMethod ConfigFile
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -697,8 +698,8 @@ type Credential struct {
}
func (s *Credential) MarshalJSON() ([]byte, error) {
type noMethod Credential
raw := noMethod(*s)
type NoMethod Credential
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -785,8 +786,8 @@ type Deployment struct {
}
func (s *Deployment) MarshalJSON() ([]byte, error) {
type noMethod Deployment
raw := noMethod(*s)
type NoMethod Deployment
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -813,8 +814,8 @@ type DeploymentLabelEntry struct {
}
func (s *DeploymentLabelEntry) MarshalJSON() ([]byte, error) {
type noMethod DeploymentLabelEntry
raw := noMethod(*s)
type NoMethod DeploymentLabelEntry
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -853,8 +854,8 @@ type DeploymentUpdate struct {
}
func (s *DeploymentUpdate) MarshalJSON() ([]byte, error) {
type noMethod DeploymentUpdate
raw := noMethod(*s)
type NoMethod DeploymentUpdate
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -881,8 +882,8 @@ type DeploymentUpdateLabelEntry struct {
}
func (s *DeploymentUpdateLabelEntry) MarshalJSON() ([]byte, error) {
type noMethod DeploymentUpdateLabelEntry
raw := noMethod(*s)
type NoMethod DeploymentUpdateLabelEntry
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -918,8 +919,8 @@ type DeploymentsCancelPreviewRequest struct {
}
func (s *DeploymentsCancelPreviewRequest) MarshalJSON() ([]byte, error) {
type noMethod DeploymentsCancelPreviewRequest
raw := noMethod(*s)
type NoMethod DeploymentsCancelPreviewRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -956,8 +957,8 @@ type DeploymentsListResponse struct {
}
func (s *DeploymentsListResponse) MarshalJSON() ([]byte, error) {
type noMethod DeploymentsListResponse
raw := noMethod(*s)
type NoMethod DeploymentsListResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -993,8 +994,8 @@ type DeploymentsStopRequest struct {
}
func (s *DeploymentsStopRequest) MarshalJSON() ([]byte, error) {
type noMethod DeploymentsStopRequest
raw := noMethod(*s)
type NoMethod DeploymentsStopRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1043,8 +1044,8 @@ type Expr struct {
}
func (s *Expr) MarshalJSON() ([]byte, error) {
type noMethod Expr
raw := noMethod(*s)
type NoMethod Expr
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1073,8 +1074,8 @@ type ImportFile struct {
}
func (s *ImportFile) MarshalJSON() ([]byte, error) {
type noMethod ImportFile
raw := noMethod(*s)
type NoMethod ImportFile
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1112,8 +1113,8 @@ type InputMapping struct {
}
func (s *InputMapping) MarshalJSON() ([]byte, error) {
type noMethod InputMapping
raw := noMethod(*s)
type NoMethod InputMapping
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1146,8 +1147,8 @@ type LogConfig struct {
}
func (s *LogConfig) MarshalJSON() ([]byte, error) {
type noMethod LogConfig
raw := noMethod(*s)
type NoMethod LogConfig
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1180,8 +1181,8 @@ type LogConfigCloudAuditOptions struct {
}
func (s *LogConfigCloudAuditOptions) MarshalJSON() ([]byte, error) {
type noMethod LogConfigCloudAuditOptions
raw := noMethod(*s)
type NoMethod LogConfigCloudAuditOptions
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1233,8 +1234,8 @@ type LogConfigCounterOptions struct {
}
func (s *LogConfigCounterOptions) MarshalJSON() ([]byte, error) {
type noMethod LogConfigCounterOptions
raw := noMethod(*s)
type NoMethod LogConfigCounterOptions
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1263,8 +1264,8 @@ type LogConfigDataAccessOptions struct {
}
func (s *LogConfigDataAccessOptions) MarshalJSON() ([]byte, error) {
type noMethod LogConfigDataAccessOptions
raw := noMethod(*s)
type NoMethod LogConfigDataAccessOptions
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1320,8 +1321,8 @@ type Manifest struct {
}
func (s *Manifest) MarshalJSON() ([]byte, error) {
type noMethod Manifest
raw := noMethod(*s)
type NoMethod Manifest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1358,13 +1359,16 @@ type ManifestsListResponse struct {
}
func (s *ManifestsListResponse) MarshalJSON() ([]byte, error) {
type noMethod ManifestsListResponse
raw := noMethod(*s)
type NoMethod ManifestsListResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// Operation: An Operation resource, used to manage asynchronous API
// requests.
// requests. (== resource_for v1.globalOperations ==) (== resource_for
// beta.globalOperations ==) (== resource_for v1.regionOperations ==)
// (== resource_for beta.regionOperations ==) (== resource_for
// v1.zoneOperations ==) (== resource_for beta.zoneOperations ==)
type Operation struct {
// ClientOperationId: [Output Only] Reserved for future use.
ClientOperationId string `json:"clientOperationId,omitempty"`
@@ -1482,8 +1486,8 @@ type Operation struct {
}
func (s *Operation) MarshalJSON() ([]byte, error) {
type noMethod Operation
raw := noMethod(*s)
type NoMethod Operation
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1512,8 +1516,8 @@ type OperationError struct {
}
func (s *OperationError) MarshalJSON() ([]byte, error) {
type noMethod OperationError
raw := noMethod(*s)
type NoMethod OperationError
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1546,8 +1550,8 @@ type OperationErrorErrors struct {
}
func (s *OperationErrorErrors) MarshalJSON() ([]byte, error) {
type noMethod OperationErrorErrors
raw := noMethod(*s)
type NoMethod OperationErrorErrors
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1584,8 +1588,8 @@ type OperationWarnings struct {
}
func (s *OperationWarnings) MarshalJSON() ([]byte, error) {
type noMethod OperationWarnings
raw := noMethod(*s)
type NoMethod OperationWarnings
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1621,8 +1625,8 @@ type OperationWarningsData struct {
}
func (s *OperationWarningsData) MarshalJSON() ([]byte, error) {
type noMethod OperationWarningsData
raw := noMethod(*s)
type NoMethod OperationWarningsData
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1659,8 +1663,8 @@ type OperationsListResponse struct {
}
func (s *OperationsListResponse) MarshalJSON() ([]byte, error) {
type noMethod OperationsListResponse
raw := noMethod(*s)
type NoMethod OperationsListResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1702,8 +1706,8 @@ type Options struct {
}
func (s *Options) MarshalJSON() ([]byte, error) {
type noMethod Options
raw := noMethod(*s)
type NoMethod Options
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1788,8 +1792,8 @@ type Policy struct {
}
func (s *Policy) MarshalJSON() ([]byte, error) {
type noMethod Policy
raw := noMethod(*s)
type NoMethod Policy
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1864,8 +1868,8 @@ type Resource struct {
}
func (s *Resource) MarshalJSON() ([]byte, error) {
type noMethod Resource
raw := noMethod(*s)
type NoMethod Resource
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1902,8 +1906,8 @@ type ResourceWarnings struct {
}
func (s *ResourceWarnings) MarshalJSON() ([]byte, error) {
type noMethod ResourceWarnings
raw := noMethod(*s)
type NoMethod ResourceWarnings
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1939,8 +1943,8 @@ type ResourceWarningsData struct {
}
func (s *ResourceWarningsData) MarshalJSON() ([]byte, error) {
type noMethod ResourceWarningsData
raw := noMethod(*s)
type NoMethod ResourceWarningsData
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -1967,8 +1971,8 @@ type ResourceAccessControl struct {
}
func (s *ResourceAccessControl) MarshalJSON() ([]byte, error) {
type noMethod ResourceAccessControl
raw := noMethod(*s)
type NoMethod ResourceAccessControl
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2023,8 +2027,8 @@ type ResourceUpdate struct {
}
func (s *ResourceUpdate) MarshalJSON() ([]byte, error) {
type noMethod ResourceUpdate
raw := noMethod(*s)
type NoMethod ResourceUpdate
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2053,8 +2057,8 @@ type ResourceUpdateError struct {
}
func (s *ResourceUpdateError) MarshalJSON() ([]byte, error) {
type noMethod ResourceUpdateError
raw := noMethod(*s)
type NoMethod ResourceUpdateError
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2087,8 +2091,8 @@ type ResourceUpdateErrorErrors struct {
}
func (s *ResourceUpdateErrorErrors) MarshalJSON() ([]byte, error) {
type noMethod ResourceUpdateErrorErrors
raw := noMethod(*s)
type NoMethod ResourceUpdateErrorErrors
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2125,8 +2129,8 @@ type ResourceUpdateWarnings struct {
}
func (s *ResourceUpdateWarnings) MarshalJSON() ([]byte, error) {
type noMethod ResourceUpdateWarnings
raw := noMethod(*s)
type NoMethod ResourceUpdateWarnings
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2162,8 +2166,8 @@ type ResourceUpdateWarningsData struct {
}
func (s *ResourceUpdateWarningsData) MarshalJSON() ([]byte, error) {
type noMethod ResourceUpdateWarningsData
raw := noMethod(*s)
type NoMethod ResourceUpdateWarningsData
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2199,8 +2203,8 @@ type ResourcesListResponse struct {
}
func (s *ResourcesListResponse) MarshalJSON() ([]byte, error) {
type noMethod ResourcesListResponse
raw := noMethod(*s)
type NoMethod ResourcesListResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2252,8 +2256,8 @@ type Rule struct {
}
func (s *Rule) MarshalJSON() ([]byte, error) {
type noMethod Rule
raw := noMethod(*s)
type NoMethod Rule
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2281,8 +2285,8 @@ type ServiceAccount struct {
}
func (s *ServiceAccount) MarshalJSON() ([]byte, error) {
type noMethod ServiceAccount
raw := noMethod(*s)
type NoMethod ServiceAccount
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2313,8 +2317,8 @@ type TargetConfiguration struct {
}
func (s *TargetConfiguration) MarshalJSON() ([]byte, error) {
type noMethod TargetConfiguration
raw := noMethod(*s)
type NoMethod TargetConfiguration
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2328,6 +2332,9 @@ type TemplateContents struct {
// during expansion.
Interpreter string `json:"interpreter,omitempty"`
// MainTemplate: The filename of the mainTemplate
MainTemplate string `json:"mainTemplate,omitempty"`
// Schema: The contents of the template schema.
Schema string `json:"schema,omitempty"`
@@ -2352,8 +2359,8 @@ type TemplateContents struct {
}
func (s *TemplateContents) MarshalJSON() ([]byte, error) {
type noMethod TemplateContents
raw := noMethod(*s)
type NoMethod TemplateContents
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2381,8 +2388,8 @@ type TestPermissionsRequest struct {
}
func (s *TestPermissionsRequest) MarshalJSON() ([]byte, error) {
type noMethod TestPermissionsRequest
raw := noMethod(*s)
type NoMethod TestPermissionsRequest
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2413,8 +2420,8 @@ type TestPermissionsResponse struct {
}
func (s *TestPermissionsResponse) MarshalJSON() ([]byte, error) {
type noMethod TestPermissionsResponse
raw := noMethod(*s)
type NoMethod TestPermissionsResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2471,8 +2478,8 @@ type Type struct {
}
func (s *Type) MarshalJSON() ([]byte, error) {
type noMethod Type
raw := noMethod(*s)
type NoMethod Type
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2525,8 +2532,8 @@ type TypeInfo struct {
}
func (s *TypeInfo) MarshalJSON() ([]byte, error) {
type noMethod TypeInfo
raw := noMethod(*s)
type NoMethod TypeInfo
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2559,8 +2566,8 @@ type TypeInfoSchemaInfo struct {
}
func (s *TypeInfoSchemaInfo) MarshalJSON() ([]byte, error) {
type noMethod TypeInfoSchemaInfo
raw := noMethod(*s)
type NoMethod TypeInfoSchemaInfo
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2587,8 +2594,8 @@ type TypeLabelEntry struct {
}
func (s *TypeLabelEntry) MarshalJSON() ([]byte, error) {
type noMethod TypeLabelEntry
raw := noMethod(*s)
type NoMethod TypeLabelEntry
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2661,8 +2668,8 @@ type TypeProvider struct {
}
func (s *TypeProvider) MarshalJSON() ([]byte, error) {
type noMethod TypeProvider
raw := noMethod(*s)
type NoMethod TypeProvider
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2689,8 +2696,8 @@ type TypeProviderLabelEntry struct {
}
func (s *TypeProviderLabelEntry) MarshalJSON() ([]byte, error) {
type noMethod TypeProviderLabelEntry
raw := noMethod(*s)
type NoMethod TypeProviderLabelEntry
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2726,8 +2733,8 @@ type TypeProvidersListResponse struct {
}
func (s *TypeProvidersListResponse) MarshalJSON() ([]byte, error) {
type noMethod TypeProvidersListResponse
raw := noMethod(*s)
type NoMethod TypeProvidersListResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2760,8 +2767,8 @@ type TypeProvidersListTypesResponse struct {
}
func (s *TypeProvidersListTypesResponse) MarshalJSON() ([]byte, error) {
type noMethod TypeProvidersListTypesResponse
raw := noMethod(*s)
type NoMethod TypeProvidersListTypesResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2797,8 +2804,8 @@ type TypesListResponse struct {
}
func (s *TypesListResponse) MarshalJSON() ([]byte, error) {
type noMethod TypesListResponse
raw := noMethod(*s)
type NoMethod TypesListResponse
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2832,8 +2839,8 @@ type ValidationOptions struct {
}
func (s *ValidationOptions) MarshalJSON() ([]byte, error) {
type noMethod ValidationOptions
raw := noMethod(*s)
type NoMethod ValidationOptions
raw := NoMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
@@ -2933,7 +2940,7 @@ func (c *CompositeTypesDeleteCall) Do(opts ...googleapi.CallOption) (*Operation,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -2949,7 +2956,7 @@ func (c *CompositeTypesDeleteCall) Do(opts ...googleapi.CallOption) (*Operation,
// "compositeType": {
// "description": "The name of the type for this request.",
// "location": "path",
// "pattern": "[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?",
// "pattern": "[a-z](?:[-a-z0-9_.]{0,61}[a-z0-9])?",
// "required": true,
// "type": "string"
// },
@@ -3083,7 +3090,7 @@ func (c *CompositeTypesGetCall) Do(opts ...googleapi.CallOption) (*CompositeType
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -3099,7 +3106,7 @@ func (c *CompositeTypesGetCall) Do(opts ...googleapi.CallOption) (*CompositeType
// "compositeType": {
// "description": "The name of the composite type for this request.",
// "location": "path",
// "pattern": "[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?",
// "pattern": "[a-z](?:[-a-z0-9_.]{0,61}[a-z0-9])?",
// "required": true,
// "type": "string"
// },
@@ -3225,7 +3232,7 @@ func (c *CompositeTypesInsertCall) Do(opts ...googleapi.CallOption) (*Operation,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -3434,7 +3441,7 @@ func (c *CompositeTypesListCall) Do(opts ...googleapi.CallOption) (*CompositeTyp
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -3616,7 +3623,7 @@ func (c *CompositeTypesPatchCall) Do(opts ...googleapi.CallOption) (*Operation,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -3632,7 +3639,7 @@ func (c *CompositeTypesPatchCall) Do(opts ...googleapi.CallOption) (*Operation,
// "compositeType": {
// "description": "The name of the composite type for this request.",
// "location": "path",
// "pattern": "[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?",
// "pattern": "[a-z](?:[-a-z0-9_.]{0,61}[a-z0-9])?",
// "required": true,
// "type": "string"
// },
@@ -3762,7 +3769,7 @@ func (c *CompositeTypesUpdateCall) Do(opts ...googleapi.CallOption) (*Operation,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -3778,7 +3785,7 @@ func (c *CompositeTypesUpdateCall) Do(opts ...googleapi.CallOption) (*Operation,
// "compositeType": {
// "description": "The name of the composite type for this request.",
// "location": "path",
// "pattern": "[a-z](?:[-a-z0-9]{0,61}[a-z0-9])?",
// "pattern": "[a-z](?:[-a-z0-9_.]{0,61}[a-z0-9])?",
// "required": true,
// "type": "string"
// },
@@ -3909,7 +3916,7 @@ func (c *DeploymentsCancelPreviewCall) Do(opts ...googleapi.CallOption) (*Operat
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -4060,7 +4067,7 @@ func (c *DeploymentsDeleteCall) Do(opts ...googleapi.CallOption) (*Operation, er
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -4224,7 +4231,7 @@ func (c *DeploymentsGetCall) Do(opts ...googleapi.CallOption) (*Deployment, erro
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -4377,7 +4384,7 @@ func (c *DeploymentsGetIamPolicyCall) Do(opts ...googleapi.CallOption) (*Policy,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -4532,7 +4539,7 @@ func (c *DeploymentsInsertCall) Do(opts ...googleapi.CallOption) (*Operation, er
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -4746,7 +4753,7 @@ func (c *DeploymentsListCall) Do(opts ...googleapi.CallOption) (*DeploymentsList
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -4966,7 +4973,7 @@ func (c *DeploymentsPatchCall) Do(opts ...googleapi.CallOption) (*Operation, err
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -5147,7 +5154,7 @@ func (c *DeploymentsSetIamPolicyCall) Do(opts ...googleapi.CallOption) (*Policy,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -5295,7 +5302,7 @@ func (c *DeploymentsStopCall) Do(opts ...googleapi.CallOption) (*Operation, erro
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -5442,7 +5449,7 @@ func (c *DeploymentsTestIamPermissionsCall) Do(opts ...googleapi.CallOption) (*T
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -5627,7 +5634,7 @@ func (c *DeploymentsUpdateCall) Do(opts ...googleapi.CallOption) (*Operation, er
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -5817,7 +5824,7 @@ func (c *ManifestsGetCall) Do(opts ...googleapi.CallOption) (*Manifest, error) {
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -6044,7 +6051,7 @@ func (c *ManifestsListCall) Do(opts ...googleapi.CallOption) (*ManifestsListResp
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -6240,7 +6247,7 @@ func (c *OperationsGetCall) Do(opts ...googleapi.CallOption) (*Operation, error)
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -6455,7 +6462,7 @@ func (c *OperationsListCall) Do(opts ...googleapi.CallOption) (*OperationsListRe
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -6646,7 +6653,7 @@ func (c *ResourcesGetCall) Do(opts ...googleapi.CallOption) (*Resource, error) {
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -6872,7 +6879,7 @@ func (c *ResourcesListCall) Do(opts ...googleapi.CallOption) (*ResourcesListResp
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -7054,7 +7061,7 @@ func (c *TypeProvidersDeleteCall) Do(opts ...googleapi.CallOption) (*Operation,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -7204,7 +7211,7 @@ func (c *TypeProvidersGetCall) Do(opts ...googleapi.CallOption) (*TypeProvider,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -7359,7 +7366,7 @@ func (c *TypeProvidersGetTypeCall) Do(opts ...googleapi.CallOption) (*TypeInfo,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -7508,7 +7515,7 @@ func (c *TypeProvidersInsertCall) Do(opts ...googleapi.CallOption) (*Operation,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -7717,7 +7724,7 @@ func (c *TypeProvidersListCall) Do(opts ...googleapi.CallOption) (*TypeProviders
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -7972,7 +7979,7 @@ func (c *TypeProvidersListTypesCall) Do(opts ...googleapi.CallOption) (*TypeProv
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -8161,7 +8168,7 @@ func (c *TypeProvidersPatchCall) Do(opts ...googleapi.CallOption) (*Operation, e
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -8307,7 +8314,7 @@ func (c *TypeProvidersUpdateCall) Do(opts ...googleapi.CallOption) (*Operation,
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil
@@ -8524,7 +8531,7 @@ func (c *TypesListCall) Do(opts ...googleapi.CallOption) (*TypesListResponse, er
},
}
target := &ret
if err := json.NewDecoder(res.Body).Decode(target); err != nil {
if err := gensupport.DecodeResponse(target, res); err != nil {
return nil, err
}
return ret, nil