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:
parent
b63de7c798
commit
2b39f9f4b2
3435 changed files with 1318042 additions and 315692 deletions
64
vendor/google.golang.org/api/deploymentmanager/v0.alpha/deploymentmanager-gen.go
generated
vendored
64
vendor/google.golang.org/api/deploymentmanager/v0.alpha/deploymentmanager-gen.go
generated
vendored
|
@ -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"`
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue