Update dependencies

Among others, this updates minio-go, so that the new "eu-west-3" zone
for AWS is supported.
This commit is contained in:
Alexander Neumann 2018-01-23 19:40:42 +01:00
parent b63de7c798
commit 2b39f9f4b2
3435 changed files with 1318042 additions and 315692 deletions

View file

@ -1,12 +1,12 @@
{
"kind": "discovery#restDescription",
"etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/dTaDGpxiMHj3lFlb8pUnNUoP8XA\"",
"etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/mU9AB3arZXHonawOKvVGxjy7qkY\"",
"discoveryVersion": "v1",
"id": "deploymentmanager:alpha",
"name": "deploymentmanager",
"canonicalName": "Deployment Manager Alpha",
"version": "alpha",
"revision": "20171102",
"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",
@ -199,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"
@ -739,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",
@ -1053,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."
@ -1172,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."

View file

@ -432,6 +432,10 @@ type CollectionOverride struct {
// service.
Collection string `json:"collection,omitempty"`
// MethodMap: Custom verb method mappings to support unordered list API
// mappings.
MethodMap *MethodMap `json:"methodMap,omitempty"`
// Options: The options to apply to this resource-level override
Options *Options `json:"options,omitempty"`
@ -1468,8 +1472,57 @@ func (s *ManifestsListResponse) MarshalJSON() ([]byte, error) {
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// MethodMap: Deployment Manager will call these methods during the
// events of creation/deletion/update/get/setIamPolicy
type MethodMap struct {
// Create: The action identifier for the create method to be used for
// this collection
Create string `json:"create,omitempty"`
// Delete: The action identifier for the delete method to be used for
// this collection
Delete string `json:"delete,omitempty"`
// Get: The action identifier for the get method to be used for this
// collection
Get string `json:"get,omitempty"`
// SetIamPolicy: The action identifier for the setIamPolicy method to be
// used for this collection
SetIamPolicy string `json:"setIamPolicy,omitempty"`
// Update: The action identifier for the update method to be used for
// this collection
Update string `json:"update,omitempty"`
// ForceSendFields is a list of field names (e.g. "Create") 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:"-"`
// NullFields is a list of field names (e.g. "Create") to include in API
// requests with the JSON null value. By default, fields with empty
// values are omitted from API requests. However, any field with an
// empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *MethodMap) MarshalJSON() ([]byte, error) {
type NoMethod MethodMap
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"`
@ -1973,6 +2026,10 @@ type Resource struct {
// YAML.
Properties string `json:"properties,omitempty"`
// RuntimePolicies: Output only. In case this is an action, it will show
// the runtimePolicies on which this action will run in the deployment
RuntimePolicies []string `json:"runtimePolicies,omitempty"`
// Type: Output only. The type of the resource, for example
// compute.v1.instance, or cloudfunctions.v1beta1.function.
Type string `json:"type,omitempty"`
@ -2153,6 +2210,11 @@ type ResourceUpdate struct {
// YAML.
Properties string `json:"properties,omitempty"`
// RuntimePolicies: Output only. In case this is an action, it will show
// the runtimePolicies that this action will have after updating the
// deployment.
RuntimePolicies []string `json:"runtimePolicies,omitempty"`
// State: Output only. The state of the resource.
State string `json:"state,omitempty"`

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

@ -1033,7 +1033,10 @@ func (s *ManifestsListResponse) MarshalJSON() ([]byte, error) {
}
// 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"`

View file

@ -1,12 +1,12 @@
{
"kind": "discovery#restDescription",
"etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/Dkuq5jxZMzFJGUcwJpEa4rDv404\"",
"etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/Os0QttejTkDUy1hcIScN6tyVIbQ\"",
"discoveryVersion": "v1",
"id": "deploymentmanager:v2beta",
"name": "deploymentmanager",
"canonicalName": "Deployment Manager V2Beta",
"version": "v2beta",
"revision": "20171102",
"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",
@ -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",

View file

@ -1365,7 +1365,10 @@ func (s *ManifestsListResponse) MarshalJSON() ([]byte, error) {
}
// 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"`