Update vendored dependencies

This includes github.com/kurin/blazer 0.2.0, which resolves #1291
This commit is contained in:
Alexander Neumann 2017-10-01 10:13:39 +02:00
parent ba23d24dd1
commit 61cb1cc6f8
1044 changed files with 203022 additions and 97709 deletions

View file

@ -1,12 +1,12 @@
{
"kind": "discovery#restDescription",
"etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/lQo0mHP8UNg2mFCLeIXYgmR2aTQ\"",
"etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/_YIg1ZU-z6xEn8qUWJtIDhiIaWM\"",
"discoveryVersion": "v1",
"id": "deploymentmanager:alpha",
"name": "deploymentmanager",
"canonicalName": "Deployment Manager Alpha",
"version": "alpha",
"revision": "20170914",
"revision": "20170925",
"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",
@ -361,6 +361,10 @@
"type": "object",
"description": "",
"properties": {
"credential": {
"$ref": "Credential",
"description": "User provided default credential for the deployment."
},
"description": {
"type": "string",
"description": "An optional user-provided description of the deployment."
@ -448,6 +452,10 @@
"type": "object",
"description": "",
"properties": {
"credential": {
"$ref": "Credential",
"description": "Output only. The user-provided default credential to use when deploying this preview."
},
"description": {
"type": "string",
"description": "Output only. An optional user-provided description of the deployment after the current update has been applied."
@ -962,6 +970,10 @@
"type": "string",
"description": "Output only. Timestamp when the resource was created or acquired, in RFC3339 text format ."
},
"lastUsedCredential": {
"$ref": "Credential",
"description": "Output only. The last used credential that successfully created/updated the resource."
},
"manifest": {
"type": "string",
"description": "Output only. URL of the manifest representing the current configuration of this resource."
@ -1046,6 +1058,10 @@
"$ref": "ResourceAccessControl",
"description": "The Access Control Policy to set on this resource after updating the resource itself."
},
"credential": {
"$ref": "Credential",
"description": "Output only. The credential that will be used creating/updating this resource."
},
"error": {
"type": "object",
"description": "Output only. If errors are generated during update of the resource, this field will be populated.",
@ -1158,7 +1174,7 @@
},
"conditions": {
"type": "array",
"description": "Additional restrictions that must be met",
"description": "Additional restrictions that must be met. All conditions must pass for the rule to match.",
"items": {
"$ref": "Condition"
}

View file

@ -703,6 +703,9 @@ func (s *Credential) MarshalJSON() ([]byte, error) {
}
type Deployment struct {
// Credential: User provided default credential for the deployment.
Credential *Credential `json:"credential,omitempty"`
// Description: An optional user-provided description of the deployment.
Description string `json:"description,omitempty"`
@ -771,7 +774,7 @@ type Deployment struct {
// server.
googleapi.ServerResponse `json:"-"`
// ForceSendFields is a list of field names (e.g. "Description") to
// ForceSendFields is a list of field names (e.g. "Credential") 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
@ -779,10 +782,10 @@ type Deployment struct {
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Description") 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
// NullFields is a list of field names (e.g. "Credential") 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:"-"`
@ -851,6 +854,10 @@ func (s *DeploymentOutputsEntry) MarshalJSON() ([]byte, error) {
}
type DeploymentUpdate struct {
// Credential: Output only. The user-provided default credential to use
// when deploying this preview.
Credential *Credential `json:"credential,omitempty"`
// Description: Output only. An optional user-provided description of
// the deployment after the current update has been applied.
Description string `json:"description,omitempty"`
@ -867,7 +874,7 @@ type DeploymentUpdate struct {
// configuration of this deployment.
Manifest string `json:"manifest,omitempty"`
// ForceSendFields is a list of field names (e.g. "Description") to
// ForceSendFields is a list of field names (e.g. "Credential") 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
@ -875,10 +882,10 @@ type DeploymentUpdate struct {
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "Description") 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
// NullFields is a list of field names (e.g. "Credential") 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:"-"`
@ -1836,6 +1843,10 @@ type Resource struct {
// acquired, in RFC3339 text format .
InsertTime string `json:"insertTime,omitempty"`
// LastUsedCredential: Output only. The last used credential that
// successfully created/updated the resource.
LastUsedCredential *Credential `json:"lastUsedCredential,omitempty"`
// Manifest: Output only. URL of the manifest representing the current
// configuration of this resource.
Manifest string `json:"manifest,omitempty"`
@ -2004,6 +2015,10 @@ type ResourceUpdate struct {
// after updating the resource itself.
AccessControl *ResourceAccessControl `json:"accessControl,omitempty"`
// Credential: Output only. The credential that will be used
// creating/updating this resource.
Credential *Credential `json:"credential,omitempty"`
// Error: Output only. If errors are generated during update of the
// resource, this field will be populated.
Error *ResourceUpdateError `json:"error,omitempty"`
@ -2236,7 +2251,8 @@ type Rule struct {
// Action: Required
Action string `json:"action,omitempty"`
// Conditions: Additional restrictions that must be met
// Conditions: Additional restrictions that must be met. All conditions
// must pass for the rule to match.
Conditions []*Condition `json:"conditions,omitempty"`
// Description: Human-readable description of the rule.

View file

@ -1,12 +1,12 @@
{
"kind": "discovery#restDescription",
"etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/daUhnbBTIdWllhB4C_Sl3rPArXs\"",
"etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/4coXG-kLdOLe0xqn_lc-mbxcObg\"",
"discoveryVersion": "v1",
"id": "deploymentmanager:v2",
"name": "deploymentmanager",
"canonicalName": "Deployment Manager",
"version": "v2",
"revision": "20170914",
"revision": "20170925",
"title": "Google Cloud Deployment Manager API",
"description": "Declares, configures, and deploys complex solutions on Google Cloud Platform.",
"ownerDomain": "google.com",
@ -945,7 +945,7 @@
},
"conditions": {
"type": "array",
"description": "Additional restrictions that must be met",
"description": "Additional restrictions that must be met. All conditions must pass for the rule to match.",
"items": {
"$ref": "Condition"
}

View file

@ -1835,7 +1835,8 @@ type Rule struct {
// Action: Required
Action string `json:"action,omitempty"`
// Conditions: Additional restrictions that must be met
// Conditions: Additional restrictions that must be met. All conditions
// must pass for the rule to match.
Conditions []*Condition `json:"conditions,omitempty"`
// Description: Human-readable description of the rule.

View file

@ -1,12 +1,12 @@
{
"kind": "discovery#restDescription",
"etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/pNhnika0vHNoLBFUO60LmseDNyE\"",
"etag": "\"YWOzh2SDasdU84ArJnpYek-OMdg/fjbnlFC4GTEIX5zCJ4_9R1qQWCw\"",
"discoveryVersion": "v1",
"id": "deploymentmanager:v2beta",
"name": "deploymentmanager",
"canonicalName": "Deployment Manager V2Beta",
"version": "v2beta",
"revision": "20170914",
"revision": "20170925",
"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",
@ -1139,7 +1139,7 @@
},
"conditions": {
"type": "array",
"description": "Additional restrictions that must be met",
"description": "Additional restrictions that must be met. All conditions must pass for the rule to match.",
"items": {
"$ref": "Condition"
}

View file

@ -2209,7 +2209,8 @@ type Rule struct {
// Action: Required
Action string `json:"action,omitempty"`
// Conditions: Additional restrictions that must be met
// Conditions: Additional restrictions that must be met. All conditions
// must pass for the rule to match.
Conditions []*Condition `json:"conditions,omitempty"`
// Description: Human-readable description of the rule.