| // Package storage provides access to the Cloud Storage JSON API. |
| // |
| // See https://developers.google.com/storage/docs/json_api/ |
| // |
| // Usage example: |
| // |
| // import "google.golang.org/api/storage/v1" |
| // ... |
| // storageService, err := storage.New(oauthHttpClient) |
| package storage // import "google.golang.org/api/storage/v1" |
| |
| import ( |
| "bytes" |
| "encoding/json" |
| "errors" |
| "fmt" |
| context "golang.org/x/net/context" |
| ctxhttp "golang.org/x/net/context/ctxhttp" |
| gensupport "google.golang.org/api/gensupport" |
| googleapi "google.golang.org/api/googleapi" |
| "io" |
| "net/http" |
| "net/url" |
| "strconv" |
| "strings" |
| ) |
| |
| // Always reference these packages, just in case the auto-generated code |
| // below doesn't. |
| var _ = bytes.NewBuffer |
| var _ = strconv.Itoa |
| var _ = fmt.Sprintf |
| var _ = json.NewDecoder |
| var _ = io.Copy |
| var _ = url.Parse |
| var _ = gensupport.MarshalJSON |
| var _ = googleapi.Version |
| var _ = errors.New |
| var _ = strings.Replace |
| var _ = context.Canceled |
| var _ = ctxhttp.Do |
| |
| const apiId = "storage:v1" |
| const apiName = "storage" |
| const apiVersion = "v1" |
| const basePath = "https://www.googleapis.com/storage/v1/" |
| |
| // OAuth2 scopes used by this API. |
| 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" |
| |
| // Manage your data and permissions in Google Cloud Storage |
| DevstorageFullControlScope = "https://www.googleapis.com/auth/devstorage.full_control" |
| |
| // View your data in Google Cloud Storage |
| DevstorageReadOnlyScope = "https://www.googleapis.com/auth/devstorage.read_only" |
| |
| // Manage your data in Google Cloud Storage |
| DevstorageReadWriteScope = "https://www.googleapis.com/auth/devstorage.read_write" |
| ) |
| |
| func New(client *http.Client) (*Service, error) { |
| if client == nil { |
| return nil, errors.New("client is nil") |
| } |
| s := &Service{client: client, BasePath: basePath} |
| s.BucketAccessControls = NewBucketAccessControlsService(s) |
| s.Buckets = NewBucketsService(s) |
| s.Channels = NewChannelsService(s) |
| s.DefaultObjectAccessControls = NewDefaultObjectAccessControlsService(s) |
| s.Notifications = NewNotificationsService(s) |
| s.ObjectAccessControls = NewObjectAccessControlsService(s) |
| s.Objects = NewObjectsService(s) |
| s.Projects = NewProjectsService(s) |
| return s, nil |
| } |
| |
| type Service struct { |
| client *http.Client |
| BasePath string // API endpoint base URL |
| UserAgent string // optional additional User-Agent fragment |
| |
| BucketAccessControls *BucketAccessControlsService |
| |
| Buckets *BucketsService |
| |
| Channels *ChannelsService |
| |
| DefaultObjectAccessControls *DefaultObjectAccessControlsService |
| |
| Notifications *NotificationsService |
| |
| ObjectAccessControls *ObjectAccessControlsService |
| |
| Objects *ObjectsService |
| |
| Projects *ProjectsService |
| } |
| |
| func (s *Service) userAgent() string { |
| if s.UserAgent == "" { |
| return googleapi.UserAgent |
| } |
| return googleapi.UserAgent + " " + s.UserAgent |
| } |
| |
| func NewBucketAccessControlsService(s *Service) *BucketAccessControlsService { |
| rs := &BucketAccessControlsService{s: s} |
| return rs |
| } |
| |
| type BucketAccessControlsService struct { |
| s *Service |
| } |
| |
| func NewBucketsService(s *Service) *BucketsService { |
| rs := &BucketsService{s: s} |
| return rs |
| } |
| |
| type BucketsService struct { |
| s *Service |
| } |
| |
| func NewChannelsService(s *Service) *ChannelsService { |
| rs := &ChannelsService{s: s} |
| return rs |
| } |
| |
| type ChannelsService struct { |
| s *Service |
| } |
| |
| func NewDefaultObjectAccessControlsService(s *Service) *DefaultObjectAccessControlsService { |
| rs := &DefaultObjectAccessControlsService{s: s} |
| return rs |
| } |
| |
| type DefaultObjectAccessControlsService struct { |
| s *Service |
| } |
| |
| func NewNotificationsService(s *Service) *NotificationsService { |
| rs := &NotificationsService{s: s} |
| return rs |
| } |
| |
| type NotificationsService struct { |
| s *Service |
| } |
| |
| func NewObjectAccessControlsService(s *Service) *ObjectAccessControlsService { |
| rs := &ObjectAccessControlsService{s: s} |
| return rs |
| } |
| |
| type ObjectAccessControlsService struct { |
| s *Service |
| } |
| |
| func NewObjectsService(s *Service) *ObjectsService { |
| rs := &ObjectsService{s: s} |
| return rs |
| } |
| |
| type ObjectsService struct { |
| s *Service |
| } |
| |
| func NewProjectsService(s *Service) *ProjectsService { |
| rs := &ProjectsService{s: s} |
| rs.ServiceAccount = NewProjectsServiceAccountService(s) |
| return rs |
| } |
| |
| type ProjectsService struct { |
| s *Service |
| |
| ServiceAccount *ProjectsServiceAccountService |
| } |
| |
| func NewProjectsServiceAccountService(s *Service) *ProjectsServiceAccountService { |
| rs := &ProjectsServiceAccountService{s: s} |
| return rs |
| } |
| |
| type ProjectsServiceAccountService struct { |
| s *Service |
| } |
| |
| // Bucket: A bucket. |
| type Bucket struct { |
| // Acl: Access controls on the bucket. |
| Acl []*BucketAccessControl `json:"acl,omitempty"` |
| |
| // Billing: The bucket's billing configuration. |
| Billing *BucketBilling `json:"billing,omitempty"` |
| |
| // Cors: The bucket's Cross-Origin Resource Sharing (CORS) |
| // configuration. |
| Cors []*BucketCors `json:"cors,omitempty"` |
| |
| // DefaultObjectAcl: Default access controls to apply to new objects |
| // when no ACL is provided. |
| DefaultObjectAcl []*ObjectAccessControl `json:"defaultObjectAcl,omitempty"` |
| |
| // Encryption: Encryption configuration used by default for newly |
| // inserted objects, when no encryption config is specified. |
| Encryption *BucketEncryption `json:"encryption,omitempty"` |
| |
| // Etag: HTTP 1.1 Entity tag for the bucket. |
| Etag string `json:"etag,omitempty"` |
| |
| // Id: The ID of the bucket. For buckets, the id and name properities |
| // are the same. |
| Id string `json:"id,omitempty"` |
| |
| // Kind: The kind of item this is. For buckets, this is always |
| // storage#bucket. |
| Kind string `json:"kind,omitempty"` |
| |
| // Labels: User-provided labels, in key/value pairs. |
| Labels map[string]string `json:"labels,omitempty"` |
| |
| // Lifecycle: The bucket's lifecycle configuration. See lifecycle |
| // management for more information. |
| Lifecycle *BucketLifecycle `json:"lifecycle,omitempty"` |
| |
| // Location: The location of the bucket. Object data for objects in the |
| // bucket resides in physical storage within this region. Defaults to |
| // US. See the developer's guide for the authoritative list. |
| Location string `json:"location,omitempty"` |
| |
| // Logging: The bucket's logging configuration, which defines the |
| // destination bucket and optional name prefix for the current bucket's |
| // logs. |
| Logging *BucketLogging `json:"logging,omitempty"` |
| |
| // Metageneration: The metadata generation of this bucket. |
| Metageneration int64 `json:"metageneration,omitempty,string"` |
| |
| // Name: The name of the bucket. |
| Name string `json:"name,omitempty"` |
| |
| // Owner: The owner of the bucket. This is always the project team's |
| // owner group. |
| Owner *BucketOwner `json:"owner,omitempty"` |
| |
| // ProjectNumber: The project number of the project the bucket belongs |
| // to. |
| ProjectNumber uint64 `json:"projectNumber,omitempty,string"` |
| |
| // SelfLink: The URI of this bucket. |
| SelfLink string `json:"selfLink,omitempty"` |
| |
| // StorageClass: The bucket's default storage class, used whenever no |
| // storageClass is specified for a newly-created object. This defines |
| // how objects in the bucket are stored and determines the SLA and the |
| // cost of storage. Values include MULTI_REGIONAL, REGIONAL, STANDARD, |
| // NEARLINE, COLDLINE, and DURABLE_REDUCED_AVAILABILITY. If this value |
| // is not specified when the bucket is created, it will default to |
| // STANDARD. For more information, see storage classes. |
| StorageClass string `json:"storageClass,omitempty"` |
| |
| // TimeCreated: The creation time of the bucket in RFC 3339 format. |
| TimeCreated string `json:"timeCreated,omitempty"` |
| |
| // Updated: The modification time of the bucket in RFC 3339 format. |
| Updated string `json:"updated,omitempty"` |
| |
| // Versioning: The bucket's versioning configuration. |
| Versioning *BucketVersioning `json:"versioning,omitempty"` |
| |
| // Website: The bucket's website configuration, controlling how the |
| // service behaves when accessing bucket contents as a web site. See the |
| // Static Website Examples for more information. |
| Website *BucketWebsite `json:"website,omitempty"` |
| |
| // ServerResponse contains the HTTP response code and headers from the |
| // server. |
| googleapi.ServerResponse `json:"-"` |
| |
| // ForceSendFields is a list of field names (e.g. "Acl") 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. "Acl") 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 *Bucket) MarshalJSON() ([]byte, error) { |
| type noMethod Bucket |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // BucketBilling: The bucket's billing configuration. |
| type BucketBilling struct { |
| // RequesterPays: When set to true, bucket is requester pays. |
| RequesterPays bool `json:"requesterPays,omitempty"` |
| |
| // ForceSendFields is a list of field names (e.g. "RequesterPays") 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. "RequesterPays") 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 *BucketBilling) MarshalJSON() ([]byte, error) { |
| type noMethod BucketBilling |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| type BucketCors struct { |
| // MaxAgeSeconds: The value, in seconds, to return in the |
| // Access-Control-Max-Age header used in preflight responses. |
| MaxAgeSeconds int64 `json:"maxAgeSeconds,omitempty"` |
| |
| // Method: The list of HTTP methods on which to include CORS response |
| // headers, (GET, OPTIONS, POST, etc) Note: "*" is permitted in the list |
| // of methods, and means "any method". |
| Method []string `json:"method,omitempty"` |
| |
| // Origin: The list of Origins eligible to receive CORS response |
| // headers. Note: "*" is permitted in the list of origins, and means |
| // "any Origin". |
| Origin []string `json:"origin,omitempty"` |
| |
| // ResponseHeader: The list of HTTP headers other than the simple |
| // response headers to give permission for the user-agent to share |
| // across domains. |
| ResponseHeader []string `json:"responseHeader,omitempty"` |
| |
| // ForceSendFields is a list of field names (e.g. "MaxAgeSeconds") 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. "MaxAgeSeconds") 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 *BucketCors) MarshalJSON() ([]byte, error) { |
| type noMethod BucketCors |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // BucketEncryption: Encryption configuration used by default for newly |
| // inserted objects, when no encryption config is specified. |
| type BucketEncryption struct { |
| DefaultKmsKeyName string `json:"defaultKmsKeyName,omitempty"` |
| |
| // ForceSendFields is a list of field names (e.g. "DefaultKmsKeyName") |
| // 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. "DefaultKmsKeyName") 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 *BucketEncryption) MarshalJSON() ([]byte, error) { |
| type noMethod BucketEncryption |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // BucketLifecycle: The bucket's lifecycle configuration. See lifecycle |
| // management for more information. |
| type BucketLifecycle struct { |
| // Rule: A lifecycle management rule, which is made of an action to take |
| // and the condition(s) under which the action will be taken. |
| Rule []*BucketLifecycleRule `json:"rule,omitempty"` |
| |
| // ForceSendFields is a list of field names (e.g. "Rule") 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. "Rule") 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 *BucketLifecycle) MarshalJSON() ([]byte, error) { |
| type noMethod BucketLifecycle |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| type BucketLifecycleRule struct { |
| // Action: The action to take. |
| Action *BucketLifecycleRuleAction `json:"action,omitempty"` |
| |
| // Condition: The condition(s) under which the action will be taken. |
| Condition *BucketLifecycleRuleCondition `json:"condition,omitempty"` |
| |
| // ForceSendFields is a list of field names (e.g. "Action") 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. "Action") 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 *BucketLifecycleRule) MarshalJSON() ([]byte, error) { |
| type noMethod BucketLifecycleRule |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // BucketLifecycleRuleAction: The action to take. |
| type BucketLifecycleRuleAction struct { |
| // StorageClass: Target storage class. Required iff the type of the |
| // action is SetStorageClass. |
| StorageClass string `json:"storageClass,omitempty"` |
| |
| // Type: Type of the action. Currently, only Delete and SetStorageClass |
| // are supported. |
| Type string `json:"type,omitempty"` |
| |
| // ForceSendFields is a list of field names (e.g. "StorageClass") 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. "StorageClass") 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 *BucketLifecycleRuleAction) MarshalJSON() ([]byte, error) { |
| type noMethod BucketLifecycleRuleAction |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // BucketLifecycleRuleCondition: The condition(s) under which the action |
| // will be taken. |
| type BucketLifecycleRuleCondition struct { |
| // Age: Age of an object (in days). This condition is satisfied when an |
| // object reaches the specified age. |
| Age int64 `json:"age,omitempty"` |
| |
| // CreatedBefore: A date in RFC 3339 format with only the date part (for |
| // instance, "2013-01-15"). This condition is satisfied when an object |
| // is created before midnight of the specified date in UTC. |
| CreatedBefore string `json:"createdBefore,omitempty"` |
| |
| // IsLive: Relevant only for versioned objects. If the value is true, |
| // this condition matches live objects; if the value is false, it |
| // matches archived objects. |
| IsLive *bool `json:"isLive,omitempty"` |
| |
| // MatchesStorageClass: Objects having any of the storage classes |
| // specified by this condition will be matched. Values include |
| // MULTI_REGIONAL, REGIONAL, NEARLINE, COLDLINE, STANDARD, and |
| // DURABLE_REDUCED_AVAILABILITY. |
| MatchesStorageClass []string `json:"matchesStorageClass,omitempty"` |
| |
| // NumNewerVersions: Relevant only for versioned objects. If the value |
| // is N, this condition is satisfied when there are at least N versions |
| // (including the live version) newer than this version of the object. |
| NumNewerVersions int64 `json:"numNewerVersions,omitempty"` |
| |
| // ForceSendFields is a list of field names (e.g. "Age") 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. "Age") 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 *BucketLifecycleRuleCondition) MarshalJSON() ([]byte, error) { |
| type noMethod BucketLifecycleRuleCondition |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // BucketLogging: The bucket's logging configuration, which defines the |
| // destination bucket and optional name prefix for the current bucket's |
| // logs. |
| type BucketLogging struct { |
| // LogBucket: The destination bucket where the current bucket's logs |
| // should be placed. |
| LogBucket string `json:"logBucket,omitempty"` |
| |
| // LogObjectPrefix: A prefix for log object names. |
| LogObjectPrefix string `json:"logObjectPrefix,omitempty"` |
| |
| // ForceSendFields is a list of field names (e.g. "LogBucket") 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. "LogBucket") 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 *BucketLogging) MarshalJSON() ([]byte, error) { |
| type noMethod BucketLogging |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // BucketOwner: The owner of the bucket. This is always the project |
| // team's owner group. |
| type BucketOwner struct { |
| // Entity: The entity, in the form project-owner-projectId. |
| Entity string `json:"entity,omitempty"` |
| |
| // EntityId: The ID for the entity. |
| EntityId string `json:"entityId,omitempty"` |
| |
| // ForceSendFields is a list of field names (e.g. "Entity") 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. "Entity") 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 *BucketOwner) MarshalJSON() ([]byte, error) { |
| type noMethod BucketOwner |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // BucketVersioning: The bucket's versioning configuration. |
| type BucketVersioning struct { |
| // Enabled: While set to true, versioning is fully enabled for this |
| // bucket. |
| Enabled bool `json:"enabled,omitempty"` |
| |
| // ForceSendFields is a list of field names (e.g. "Enabled") 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. "Enabled") 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 *BucketVersioning) MarshalJSON() ([]byte, error) { |
| type noMethod BucketVersioning |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // BucketWebsite: The bucket's website configuration, controlling how |
| // the service behaves when accessing bucket contents as a web site. See |
| // the Static Website Examples for more information. |
| type BucketWebsite struct { |
| // MainPageSuffix: If the requested object path is missing, the service |
| // will ensure the path has a trailing '/', append this suffix, and |
| // attempt to retrieve the resulting object. This allows the creation of |
| // index.html objects to represent directory pages. |
| MainPageSuffix string `json:"mainPageSuffix,omitempty"` |
| |
| // NotFoundPage: If the requested object path is missing, and any |
| // mainPageSuffix object is missing, if applicable, the service will |
| // return the named object from this bucket as the content for a 404 Not |
| // Found result. |
| NotFoundPage string `json:"notFoundPage,omitempty"` |
| |
| // ForceSendFields is a list of field names (e.g. "MainPageSuffix") 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. "MainPageSuffix") 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 *BucketWebsite) MarshalJSON() ([]byte, error) { |
| type noMethod BucketWebsite |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // BucketAccessControl: An access-control entry. |
| type BucketAccessControl struct { |
| // Bucket: The name of the bucket. |
| Bucket string `json:"bucket,omitempty"` |
| |
| // Domain: The domain associated with the entity, if any. |
| Domain string `json:"domain,omitempty"` |
| |
| // Email: The email address associated with the entity, if any. |
| Email string `json:"email,omitempty"` |
| |
| // Entity: The entity holding the permission, in one of the following |
| // forms: |
| // - user-userId |
| // - user-email |
| // - group-groupId |
| // - group-email |
| // - domain-domain |
| // - project-team-projectId |
| // - allUsers |
| // - allAuthenticatedUsers Examples: |
| // - The user liz@example.com would be user-liz@example.com. |
| // - The group example@googlegroups.com would be |
| // group-example@googlegroups.com. |
| // - To refer to all members of the Google Apps for Business domain |
| // example.com, the entity would be domain-example.com. |
| Entity string `json:"entity,omitempty"` |
| |
| // EntityId: The ID for the entity, if any. |
| EntityId string `json:"entityId,omitempty"` |
| |
| // Etag: HTTP 1.1 Entity tag for the access-control entry. |
| Etag string `json:"etag,omitempty"` |
| |
| // Id: The ID of the access-control entry. |
| Id string `json:"id,omitempty"` |
| |
| // Kind: The kind of item this is. For bucket access control entries, |
| // this is always storage#bucketAccessControl. |
| Kind string `json:"kind,omitempty"` |
| |
| // ProjectTeam: The project team associated with the entity, if any. |
| ProjectTeam *BucketAccessControlProjectTeam `json:"projectTeam,omitempty"` |
| |
| // Role: The access permission for the entity. |
| Role string `json:"role,omitempty"` |
| |
| // SelfLink: The link to this access-control entry. |
| 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. "Bucket") 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. "Bucket") 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 *BucketAccessControl) MarshalJSON() ([]byte, error) { |
| type noMethod BucketAccessControl |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // BucketAccessControlProjectTeam: The project team associated with the |
| // entity, if any. |
| type BucketAccessControlProjectTeam struct { |
| // ProjectNumber: The project number. |
| ProjectNumber string `json:"projectNumber,omitempty"` |
| |
| // Team: The team. |
| Team string `json:"team,omitempty"` |
| |
| // ForceSendFields is a list of field names (e.g. "ProjectNumber") 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. "ProjectNumber") 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 *BucketAccessControlProjectTeam) MarshalJSON() ([]byte, error) { |
| type noMethod BucketAccessControlProjectTeam |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // BucketAccessControls: An access-control list. |
| type BucketAccessControls struct { |
| // Items: The list of items. |
| Items []*BucketAccessControl `json:"items,omitempty"` |
| |
| // Kind: The kind of item this is. For lists of bucket access control |
| // entries, this is always storage#bucketAccessControls. |
| Kind string `json:"kind,omitempty"` |
| |
| // ServerResponse contains the HTTP response code and headers from the |
| // server. |
| googleapi.ServerResponse `json:"-"` |
| |
| // ForceSendFields is a list of field names (e.g. "Items") 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. "Items") 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 *BucketAccessControls) MarshalJSON() ([]byte, error) { |
| type noMethod BucketAccessControls |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // Buckets: A list of buckets. |
| type Buckets struct { |
| // Items: The list of items. |
| Items []*Bucket `json:"items,omitempty"` |
| |
| // Kind: The kind of item this is. For lists of buckets, this is always |
| // storage#buckets. |
| Kind string `json:"kind,omitempty"` |
| |
| // NextPageToken: The continuation token, used to page through large |
| // result sets. Provide this value in a subsequent request to return the |
| // next page of results. |
| 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. "Items") 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. "Items") 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 *Buckets) MarshalJSON() ([]byte, error) { |
| type noMethod Buckets |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // Channel: An notification channel used to watch for resource changes. |
| type Channel struct { |
| // Address: The address where notifications are delivered for this |
| // channel. |
| Address string `json:"address,omitempty"` |
| |
| // Expiration: Date and time of notification channel expiration, |
| // expressed as a Unix timestamp, in milliseconds. Optional. |
| Expiration int64 `json:"expiration,omitempty,string"` |
| |
| // Id: A UUID or similar unique string that identifies this channel. |
| Id string `json:"id,omitempty"` |
| |
| // Kind: Identifies this as a notification channel used to watch for |
| // changes to a resource. Value: the fixed string "api#channel". |
| Kind string `json:"kind,omitempty"` |
| |
| // Params: Additional parameters controlling delivery channel behavior. |
| // Optional. |
| Params map[string]string `json:"params,omitempty"` |
| |
| // Payload: A Boolean value to indicate whether payload is wanted. |
| // Optional. |
| Payload bool `json:"payload,omitempty"` |
| |
| // ResourceId: An opaque ID that identifies the resource being watched |
| // on this channel. Stable across different API versions. |
| ResourceId string `json:"resourceId,omitempty"` |
| |
| // ResourceUri: A version-specific identifier for the watched resource. |
| ResourceUri string `json:"resourceUri,omitempty"` |
| |
| // Token: An arbitrary string delivered to the target address with each |
| // notification delivered over this channel. Optional. |
| Token string `json:"token,omitempty"` |
| |
| // Type: The type of delivery mechanism used for this channel. |
| Type string `json:"type,omitempty"` |
| |
| // ServerResponse contains the HTTP response code and headers from the |
| // server. |
| googleapi.ServerResponse `json:"-"` |
| |
| // ForceSendFields is a list of field names (e.g. "Address") 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. "Address") 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 *Channel) MarshalJSON() ([]byte, error) { |
| type noMethod Channel |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // ComposeRequest: A Compose request. |
| type ComposeRequest struct { |
| // Destination: Properties of the resulting object. |
| Destination *Object `json:"destination,omitempty"` |
| |
| // Kind: The kind of item this is. |
| Kind string `json:"kind,omitempty"` |
| |
| // SourceObjects: The list of source objects that will be concatenated |
| // into a single object. |
| SourceObjects []*ComposeRequestSourceObjects `json:"sourceObjects,omitempty"` |
| |
| // ForceSendFields is a list of field names (e.g. "Destination") 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. "Destination") 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 *ComposeRequest) MarshalJSON() ([]byte, error) { |
| type noMethod ComposeRequest |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| type ComposeRequestSourceObjects struct { |
| // Generation: The generation of this object to use as the source. |
| Generation int64 `json:"generation,omitempty,string"` |
| |
| // Name: The source object's name. The source object's bucket is |
| // implicitly the destination bucket. |
| Name string `json:"name,omitempty"` |
| |
| // ObjectPreconditions: Conditions that must be met for this operation |
| // to execute. |
| ObjectPreconditions *ComposeRequestSourceObjectsObjectPreconditions `json:"objectPreconditions,omitempty"` |
| |
| // ForceSendFields is a list of field names (e.g. "Generation") 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. "Generation") 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 *ComposeRequestSourceObjects) MarshalJSON() ([]byte, error) { |
| type noMethod ComposeRequestSourceObjects |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // ComposeRequestSourceObjectsObjectPreconditions: Conditions that must |
| // be met for this operation to execute. |
| type ComposeRequestSourceObjectsObjectPreconditions struct { |
| // IfGenerationMatch: Only perform the composition if the generation of |
| // the source object that would be used matches this value. If this |
| // value and a generation are both specified, they must be the same |
| // value or the call will fail. |
| IfGenerationMatch int64 `json:"ifGenerationMatch,omitempty,string"` |
| |
| // ForceSendFields is a list of field names (e.g. "IfGenerationMatch") |
| // 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. "IfGenerationMatch") 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 *ComposeRequestSourceObjectsObjectPreconditions) MarshalJSON() ([]byte, error) { |
| type noMethod ComposeRequestSourceObjectsObjectPreconditions |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // Notification: A subscription to receive Google PubSub notifications. |
| type Notification struct { |
| // CustomAttributes: An optional list of additional attributes to attach |
| // to each Cloud PubSub message published for this notification |
| // subscription. |
| CustomAttributes map[string]string `json:"custom_attributes,omitempty"` |
| |
| // Etag: HTTP 1.1 Entity tag for this subscription notification. |
| Etag string `json:"etag,omitempty"` |
| |
| // EventTypes: If present, only send notifications about listed event |
| // types. If empty, sent notifications for all event types. |
| EventTypes []string `json:"event_types,omitempty"` |
| |
| // Id: The ID of the notification. |
| Id string `json:"id,omitempty"` |
| |
| // Kind: The kind of item this is. For notifications, this is always |
| // storage#notification. |
| Kind string `json:"kind,omitempty"` |
| |
| // ObjectNamePrefix: If present, only apply this notification |
| // configuration to object names that begin with this prefix. |
| ObjectNamePrefix string `json:"object_name_prefix,omitempty"` |
| |
| // PayloadFormat: The desired content of the Payload. |
| PayloadFormat string `json:"payload_format,omitempty"` |
| |
| // SelfLink: The canonical URL of this notification. |
| SelfLink string `json:"selfLink,omitempty"` |
| |
| // Topic: The Cloud PubSub topic to which this subscription publishes. |
| // Formatted as: |
| // '//pubsub.googleapis.com/projects/{project-identifier}/topics/{my-topi |
| // c}' |
| Topic string `json:"topic,omitempty"` |
| |
| // ServerResponse contains the HTTP response code and headers from the |
| // server. |
| googleapi.ServerResponse `json:"-"` |
| |
| // ForceSendFields is a list of field names (e.g. "CustomAttributes") 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. "CustomAttributes") 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 *Notification) MarshalJSON() ([]byte, error) { |
| type noMethod Notification |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // Notifications: A list of notification subscriptions. |
| type Notifications struct { |
| // Items: The list of items. |
| Items []*Notification `json:"items,omitempty"` |
| |
| // Kind: The kind of item this is. For lists of notifications, this is |
| // always storage#notifications. |
| Kind string `json:"kind,omitempty"` |
| |
| // ServerResponse contains the HTTP response code and headers from the |
| // server. |
| googleapi.ServerResponse `json:"-"` |
| |
| // ForceSendFields is a list of field names (e.g. "Items") 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. "Items") 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 *Notifications) MarshalJSON() ([]byte, error) { |
| type noMethod Notifications |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // Object: An object. |
| type Object struct { |
| // Acl: Access controls on the object. |
| Acl []*ObjectAccessControl `json:"acl,omitempty"` |
| |
| // Bucket: The name of the bucket containing this object. |
| Bucket string `json:"bucket,omitempty"` |
| |
| // CacheControl: Cache-Control directive for the object data. If |
| // omitted, and the object is accessible to all anonymous users, the |
| // default will be public, max-age=3600. |
| CacheControl string `json:"cacheControl,omitempty"` |
| |
| // ComponentCount: Number of underlying components that make up this |
| // object. Components are accumulated by compose operations. |
| ComponentCount int64 `json:"componentCount,omitempty"` |
| |
| // ContentDisposition: Content-Disposition of the object data. |
| ContentDisposition string `json:"contentDisposition,omitempty"` |
| |
| // ContentEncoding: Content-Encoding of the object data. |
| ContentEncoding string `json:"contentEncoding,omitempty"` |
| |
| // ContentLanguage: Content-Language of the object data. |
| ContentLanguage string `json:"contentLanguage,omitempty"` |
| |
| // ContentType: Content-Type of the object data. If an object is stored |
| // without a Content-Type, it is served as application/octet-stream. |
| ContentType string `json:"contentType,omitempty"` |
| |
| // Crc32c: CRC32c checksum, as described in RFC 4960, Appendix B; |
| // encoded using base64 in big-endian byte order. For more information |
| // about using the CRC32c checksum, see Hashes and ETags: Best |
| // Practices. |
| Crc32c string `json:"crc32c,omitempty"` |
| |
| // CustomerEncryption: Metadata of customer-supplied encryption key, if |
| // the object is encrypted by such a key. |
| CustomerEncryption *ObjectCustomerEncryption `json:"customerEncryption,omitempty"` |
| |
| // Etag: HTTP 1.1 Entity tag for the object. |
| Etag string `json:"etag,omitempty"` |
| |
| // Generation: The content generation of this object. Used for object |
| // versioning. |
| Generation int64 `json:"generation,omitempty,string"` |
| |
| // Id: The ID of the object, including the bucket name, object name, and |
| // generation number. |
| Id string `json:"id,omitempty"` |
| |
| // Kind: The kind of item this is. For objects, this is always |
| // storage#object. |
| Kind string `json:"kind,omitempty"` |
| |
| // KmsKeyName: Cloud KMS Key used to encrypt this object, if the object |
| // is encrypted by such a key. |
| KmsKeyName string `json:"kmsKeyName,omitempty"` |
| |
| // Md5Hash: MD5 hash of the data; encoded using base64. For more |
| // information about using the MD5 hash, see Hashes and ETags: Best |
| // Practices. |
| Md5Hash string `json:"md5Hash,omitempty"` |
| |
| // MediaLink: Media download link. |
| MediaLink string `json:"mediaLink,omitempty"` |
| |
| // Metadata: User-provided metadata, in key/value pairs. |
| Metadata map[string]string `json:"metadata,omitempty"` |
| |
| // Metageneration: The version of the metadata for this object at this |
| // generation. Used for preconditions and for detecting changes in |
| // metadata. A metageneration number is only meaningful in the context |
| // of a particular generation of a particular object. |
| Metageneration int64 `json:"metageneration,omitempty,string"` |
| |
| // Name: The name of the object. Required if not specified by URL |
| // parameter. |
| Name string `json:"name,omitempty"` |
| |
| // Owner: The owner of the object. This will always be the uploader of |
| // the object. |
| Owner *ObjectOwner `json:"owner,omitempty"` |
| |
| // SelfLink: The link to this object. |
| SelfLink string `json:"selfLink,omitempty"` |
| |
| // Size: Content-Length of the data in bytes. |
| Size uint64 `json:"size,omitempty,string"` |
| |
| // StorageClass: Storage class of the object. |
| StorageClass string `json:"storageClass,omitempty"` |
| |
| // TimeCreated: The creation time of the object in RFC 3339 format. |
| TimeCreated string `json:"timeCreated,omitempty"` |
| |
| // TimeDeleted: The deletion time of the object in RFC 3339 format. Will |
| // be returned if and only if this version of the object has been |
| // deleted. |
| TimeDeleted string `json:"timeDeleted,omitempty"` |
| |
| // TimeStorageClassUpdated: The time at which the object's storage class |
| // was last changed. When the object is initially created, it will be |
| // set to timeCreated. |
| TimeStorageClassUpdated string `json:"timeStorageClassUpdated,omitempty"` |
| |
| // Updated: The modification time of the object metadata in RFC 3339 |
| // format. |
| Updated string `json:"updated,omitempty"` |
| |
| // ServerResponse contains the HTTP response code and headers from the |
| // server. |
| googleapi.ServerResponse `json:"-"` |
| |
| // ForceSendFields is a list of field names (e.g. "Acl") 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. "Acl") 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 *Object) MarshalJSON() ([]byte, error) { |
| type noMethod Object |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // ObjectCustomerEncryption: Metadata of customer-supplied encryption |
| // key, if the object is encrypted by such a key. |
| type ObjectCustomerEncryption struct { |
| // EncryptionAlgorithm: The encryption algorithm. |
| EncryptionAlgorithm string `json:"encryptionAlgorithm,omitempty"` |
| |
| // KeySha256: SHA256 hash value of the encryption key. |
| KeySha256 string `json:"keySha256,omitempty"` |
| |
| // ForceSendFields is a list of field names (e.g. "EncryptionAlgorithm") |
| // 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. "EncryptionAlgorithm") 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 *ObjectCustomerEncryption) MarshalJSON() ([]byte, error) { |
| type noMethod ObjectCustomerEncryption |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // ObjectOwner: The owner of the object. This will always be the |
| // uploader of the object. |
| type ObjectOwner struct { |
| // Entity: The entity, in the form user-userId. |
| Entity string `json:"entity,omitempty"` |
| |
| // EntityId: The ID for the entity. |
| EntityId string `json:"entityId,omitempty"` |
| |
| // ForceSendFields is a list of field names (e.g. "Entity") 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. "Entity") 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 *ObjectOwner) MarshalJSON() ([]byte, error) { |
| type noMethod ObjectOwner |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // ObjectAccessControl: An access-control entry. |
| type ObjectAccessControl struct { |
| // Bucket: The name of the bucket. |
| Bucket string `json:"bucket,omitempty"` |
| |
| // Domain: The domain associated with the entity, if any. |
| Domain string `json:"domain,omitempty"` |
| |
| // Email: The email address associated with the entity, if any. |
| Email string `json:"email,omitempty"` |
| |
| // Entity: The entity holding the permission, in one of the following |
| // forms: |
| // - user-userId |
| // - user-email |
| // - group-groupId |
| // - group-email |
| // - domain-domain |
| // - project-team-projectId |
| // - allUsers |
| // - allAuthenticatedUsers Examples: |
| // - The user liz@example.com would be user-liz@example.com. |
| // - The group example@googlegroups.com would be |
| // group-example@googlegroups.com. |
| // - To refer to all members of the Google Apps for Business domain |
| // example.com, the entity would be domain-example.com. |
| Entity string `json:"entity,omitempty"` |
| |
| // EntityId: The ID for the entity, if any. |
| EntityId string `json:"entityId,omitempty"` |
| |
| // Etag: HTTP 1.1 Entity tag for the access-control entry. |
| Etag string `json:"etag,omitempty"` |
| |
| // Generation: The content generation of the object, if applied to an |
| // object. |
| Generation int64 `json:"generation,omitempty,string"` |
| |
| // Id: The ID of the access-control entry. |
| Id string `json:"id,omitempty"` |
| |
| // Kind: The kind of item this is. For object access control entries, |
| // this is always storage#objectAccessControl. |
| Kind string `json:"kind,omitempty"` |
| |
| // Object: The name of the object, if applied to an object. |
| Object string `json:"object,omitempty"` |
| |
| // ProjectTeam: The project team associated with the entity, if any. |
| ProjectTeam *ObjectAccessControlProjectTeam `json:"projectTeam,omitempty"` |
| |
| // Role: The access permission for the entity. |
| Role string `json:"role,omitempty"` |
| |
| // SelfLink: The link to this access-control entry. |
| 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. "Bucket") 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. "Bucket") 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 *ObjectAccessControl) MarshalJSON() ([]byte, error) { |
| type noMethod ObjectAccessControl |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // ObjectAccessControlProjectTeam: The project team associated with the |
| // entity, if any. |
| type ObjectAccessControlProjectTeam struct { |
| // ProjectNumber: The project number. |
| ProjectNumber string `json:"projectNumber,omitempty"` |
| |
| // Team: The team. |
| Team string `json:"team,omitempty"` |
| |
| // ForceSendFields is a list of field names (e.g. "ProjectNumber") 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. "ProjectNumber") 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 *ObjectAccessControlProjectTeam) MarshalJSON() ([]byte, error) { |
| type noMethod ObjectAccessControlProjectTeam |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // ObjectAccessControls: An access-control list. |
| type ObjectAccessControls struct { |
| // Items: The list of items. |
| Items []*ObjectAccessControl `json:"items,omitempty"` |
| |
| // Kind: The kind of item this is. For lists of object access control |
| // entries, this is always storage#objectAccessControls. |
| Kind string `json:"kind,omitempty"` |
| |
| // ServerResponse contains the HTTP response code and headers from the |
| // server. |
| googleapi.ServerResponse `json:"-"` |
| |
| // ForceSendFields is a list of field names (e.g. "Items") 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. "Items") 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 *ObjectAccessControls) MarshalJSON() ([]byte, error) { |
| type noMethod ObjectAccessControls |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // Objects: A list of objects. |
| type Objects struct { |
| // Items: The list of items. |
| Items []*Object `json:"items,omitempty"` |
| |
| // Kind: The kind of item this is. For lists of objects, this is always |
| // storage#objects. |
| Kind string `json:"kind,omitempty"` |
| |
| // NextPageToken: The continuation token, used to page through large |
| // result sets. Provide this value in a subsequent request to return the |
| // next page of results. |
| NextPageToken string `json:"nextPageToken,omitempty"` |
| |
| // Prefixes: The list of prefixes of objects matching-but-not-listed up |
| // to and including the requested delimiter. |
| Prefixes []string `json:"prefixes,omitempty"` |
| |
| // ServerResponse contains the HTTP response code and headers from the |
| // server. |
| googleapi.ServerResponse `json:"-"` |
| |
| // ForceSendFields is a list of field names (e.g. "Items") 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. "Items") 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 *Objects) MarshalJSON() ([]byte, error) { |
| type noMethod Objects |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // Policy: A bucket/object IAM policy. |
| type Policy struct { |
| // Bindings: An association between a role, which comes with a set of |
| // permissions, and members who may assume that role. |
| Bindings []*PolicyBindings `json:"bindings,omitempty"` |
| |
| // Etag: HTTP 1.1 Entity tag for the policy. |
| Etag string `json:"etag,omitempty"` |
| |
| // Kind: The kind of item this is. For policies, this is always |
| // storage#policy. This field is ignored on input. |
| Kind string `json:"kind,omitempty"` |
| |
| // ResourceId: The ID of the resource to which this policy belongs. Will |
| // be of the form projects/_/buckets/bucket for buckets, and |
| // projects/_/buckets/bucket/objects/object for objects. A specific |
| // generation may be specified by appending #generationNumber to the end |
| // of the object name, e.g. |
| // projects/_/buckets/my-bucket/objects/data.txt#17. The current |
| // generation can be denoted with #0. This field is ignored on input. |
| ResourceId string `json:"resourceId,omitempty"` |
| |
| // ServerResponse contains the HTTP response code and headers from the |
| // server. |
| googleapi.ServerResponse `json:"-"` |
| |
| // ForceSendFields is a list of field names (e.g. "Bindings") 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. "Bindings") 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 *Policy) MarshalJSON() ([]byte, error) { |
| type noMethod Policy |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| type PolicyBindings struct { |
| Condition interface{} `json:"condition,omitempty"` |
| |
| // Members: A collection of identifiers for members who may assume the |
| // provided role. Recognized identifiers are as follows: |
| // - allUsers — A special identifier that represents anyone on the |
| // internet; with or without a Google account. |
| // - allAuthenticatedUsers — A special identifier that represents |
| // anyone who is authenticated with a Google account or a service |
| // account. |
| // - user:emailid — An email address that represents a specific |
| // account. For example, user:alice@gmail.com or user:joe@example.com. |
| // |
| // - serviceAccount:emailid — An email address that represents a |
| // service account. For example, |
| // serviceAccount:my-other-app@appspot.gserviceaccount.com . |
| // - group:emailid — An email address that represents a Google group. |
| // For example, group:admins@example.com. |
| // - domain:domain — A Google Apps domain name that represents all the |
| // users of that domain. For example, domain:google.com or |
| // domain:example.com. |
| // - projectOwner:projectid — Owners of the given project. For |
| // example, projectOwner:my-example-project |
| // - projectEditor:projectid — Editors of the given project. For |
| // example, projectEditor:my-example-project |
| // - projectViewer:projectid — Viewers of the given project. For |
| // example, projectViewer:my-example-project |
| Members []string `json:"members,omitempty"` |
| |
| // Role: The role to which members belong. Two types of roles are |
| // supported: new IAM roles, which grant permissions that do not map |
| // directly to those provided by ACLs, and legacy IAM roles, which do |
| // map directly to ACL permissions. All roles are of the format |
| // roles/storage.specificRole. |
| // The new IAM roles are: |
| // - roles/storage.admin — Full control of Google Cloud Storage |
| // resources. |
| // - roles/storage.objectViewer — Read-Only access to Google Cloud |
| // Storage objects. |
| // - roles/storage.objectCreator — Access to create objects in Google |
| // Cloud Storage. |
| // - roles/storage.objectAdmin — Full control of Google Cloud Storage |
| // objects. The legacy IAM roles are: |
| // - roles/storage.legacyObjectReader — Read-only access to objects |
| // without listing. Equivalent to an ACL entry on an object with the |
| // READER role. |
| // - roles/storage.legacyObjectOwner — Read/write access to existing |
| // objects without listing. Equivalent to an ACL entry on an object with |
| // the OWNER role. |
| // - roles/storage.legacyBucketReader — Read access to buckets with |
| // object listing. Equivalent to an ACL entry on a bucket with the |
| // READER role. |
| // - roles/storage.legacyBucketWriter — Read access to buckets with |
| // object listing/creation/deletion. Equivalent to an ACL entry on a |
| // bucket with the WRITER role. |
| // - roles/storage.legacyBucketOwner — Read and write access to |
| // existing buckets with object listing/creation/deletion. Equivalent to |
| // an ACL entry on a bucket with the OWNER role. |
| Role string `json:"role,omitempty"` |
| |
| // ForceSendFields is a list of field names (e.g. "Condition") 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. "Condition") 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 *PolicyBindings) MarshalJSON() ([]byte, error) { |
| type noMethod PolicyBindings |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // RewriteResponse: A rewrite response. |
| type RewriteResponse struct { |
| // Done: true if the copy is finished; otherwise, false if the copy is |
| // in progress. This property is always present in the response. |
| Done bool `json:"done,omitempty"` |
| |
| // Kind: The kind of item this is. |
| Kind string `json:"kind,omitempty"` |
| |
| // ObjectSize: The total size of the object being copied in bytes. This |
| // property is always present in the response. |
| ObjectSize int64 `json:"objectSize,omitempty,string"` |
| |
| // Resource: A resource containing the metadata for the copied-to |
| // object. This property is present in the response only when copying |
| // completes. |
| Resource *Object `json:"resource,omitempty"` |
| |
| // RewriteToken: A token to use in subsequent requests to continue |
| // copying data. This token is present in the response only when there |
| // is more data to copy. |
| RewriteToken string `json:"rewriteToken,omitempty"` |
| |
| // TotalBytesRewritten: The total bytes written so far, which can be |
| // used to provide a waiting user with a progress indicator. This |
| // property is always present in the response. |
| TotalBytesRewritten int64 `json:"totalBytesRewritten,omitempty,string"` |
| |
| // ServerResponse contains the HTTP response code and headers from the |
| // server. |
| googleapi.ServerResponse `json:"-"` |
| |
| // ForceSendFields is a list of field names (e.g. "Done") 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. "Done") 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 *RewriteResponse) MarshalJSON() ([]byte, error) { |
| type noMethod RewriteResponse |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // ServiceAccount: A subscription to receive Google PubSub |
| // notifications. |
| type ServiceAccount struct { |
| // EmailAddress: The ID of the notification. |
| EmailAddress string `json:"email_address,omitempty"` |
| |
| // Kind: The kind of item this is. For notifications, this is always |
| // storage#notification. |
| Kind string `json:"kind,omitempty"` |
| |
| // ServerResponse contains the HTTP response code and headers from the |
| // server. |
| googleapi.ServerResponse `json:"-"` |
| |
| // ForceSendFields is a list of field names (e.g. "EmailAddress") 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. "EmailAddress") 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 *ServiceAccount) MarshalJSON() ([]byte, error) { |
| type noMethod ServiceAccount |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // TestIamPermissionsResponse: A |
| // storage.(buckets|objects).testIamPermissions response. |
| type TestIamPermissionsResponse struct { |
| // Kind: The kind of item this is. |
| Kind string `json:"kind,omitempty"` |
| |
| // Permissions: The permissions held by the caller. Permissions are |
| // always of the format storage.resource.capability, where resource is |
| // one of buckets or objects. The supported permissions are as follows: |
| // |
| // - storage.buckets.delete — Delete bucket. |
| // - storage.buckets.get — Read bucket metadata. |
| // - storage.buckets.getIamPolicy — Read bucket IAM policy. |
| // - storage.buckets.create — Create bucket. |
| // - storage.buckets.list — List buckets. |
| // - storage.buckets.setIamPolicy — Update bucket IAM policy. |
| // - storage.buckets.update — Update bucket metadata. |
| // - storage.objects.delete — Delete object. |
| // - storage.objects.get — Read object data and metadata. |
| // - storage.objects.getIamPolicy — Read object IAM policy. |
| // - storage.objects.create — Create object. |
| // - storage.objects.list — List objects. |
| // - storage.objects.setIamPolicy — Update object IAM policy. |
| // - storage.objects.update — Update object metadata. |
| Permissions []string `json:"permissions,omitempty"` |
| |
| // ServerResponse contains the HTTP response code and headers from the |
| // server. |
| googleapi.ServerResponse `json:"-"` |
| |
| // ForceSendFields is a list of field names (e.g. "Kind") 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. "Kind") 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 *TestIamPermissionsResponse) MarshalJSON() ([]byte, error) { |
| type noMethod TestIamPermissionsResponse |
| raw := noMethod(*s) |
| return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields) |
| } |
| |
| // method id "storage.bucketAccessControls.delete": |
| |
| type BucketAccessControlsDeleteCall struct { |
| s *Service |
| bucket string |
| entity string |
| urlParams_ gensupport.URLParams |
| ctx_ context.Context |
| header_ http.Header |
| } |
| |
| // Delete: Permanently deletes the ACL entry for the specified entity on |
| // the specified bucket. |
| func (r *BucketAccessControlsService) Delete(bucket string, entity string) *BucketAccessControlsDeleteCall { |
| c := &BucketAccessControlsDeleteCall{s: r.s, urlParams_: make(gensupport.URLParams)} |
| c.bucket = bucket |
| c.entity = entity |
| return c |
| } |
| |
| // UserProject sets the optional parameter "userProject": The project to |
| // be billed for this request. Required for Requester Pays buckets. |
| func (c *BucketAccessControlsDeleteCall) UserProject(userProject string) *BucketAccessControlsDeleteCall { |
| c.urlParams_.Set("userProject", userProject) |
| return c |
| } |
| |
| // Fields allows partial responses to be retrieved. See |
| // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse |
| // for more information. |
| func (c *BucketAccessControlsDeleteCall) Fields(s ...googleapi.Field) *BucketAccessControlsDeleteCall { |
| c.urlParams_.Set("fields", googleapi.CombineFields(s)) |
| return c |
| } |
| |
| // 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 (c *BucketAccessControlsDeleteCall) Context(ctx context.Context) *BucketAccessControlsDeleteCall { |
| c.ctx_ = ctx |
| return c |
| } |
| |
| // Header returns an http.Header that can be modified by the caller to |
| // add HTTP headers to the request. |
| func (c *BucketAccessControlsDeleteCall) Header() http.Header { |
| if c.header_ == nil { |
| c.header_ = make(http.Header) |
| } |
| return c.header_ |
| } |
| |
| func (c *BucketAccessControlsDeleteCall) doRequest(alt string) (*http.Response, error) { |
| reqHeaders := make(http.Header) |
| for k, v := range c.header_ { |
| reqHeaders[k] = v |
| } |
| reqHeaders.Set("User-Agent", c.s.userAgent()) |
| var body io.Reader = nil |
| c.urlParams_.Set("alt", alt) |
| urls := googleapi.ResolveRelative(c.s.BasePath, "b/{bucket}/acl/{entity}") |
| urls += "?" + c.urlParams_.Encode() |
| req, _ := http.NewRequest("DELETE", urls, body) |
| req.Header = reqHeaders |
| googleapi.Expand(req.URL, map[string]string{ |
| "bucket": c.bucket, |
| "entity": c.entity, |
| }) |
| return gensupport.SendRequest(c.ctx_, c.s.client, req) |
| } |
| |
| // Do executes the "storage.bucketAccessControls.delete" call. |
| func (c *BucketAccessControlsDeleteCall) Do(opts ...googleapi.CallOption) error { |
| gensupport.SetOptions(c.urlParams_, opts...) |
| res, err := c.doRequest("json") |
| if err != nil { |
| return err |
| } |
| defer googleapi.CloseBody(res) |
| if err := googleapi.CheckResponse(res); err != nil { |
| return err |
| } |
| return nil |
| // { |
| // "description": "Permanently deletes the ACL entry for the specified entity on the specified bucket.", |
| // "httpMethod": "DELETE", |
| // "id": "storage.bucketAccessControls.delete", |
| // "parameterOrder": [ |
| // "bucket", |
| // "entity" |
| // ], |
| // "parameters": { |
| // "bucket": { |
| // "description": "Name of a bucket.", |
| // "location": "path", |
| // "required": true, |
| // "type": "string" |
| // }, |
| // "entity": { |
| // "description": "The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.", |
| // "location": "path", |
| // "required": true, |
| // "type": "string" |
| // }, |
| // "userProject": { |
| // "description": "The project to be billed for this request. Required for Requester Pays buckets.", |
| // "location": "query", |
| // "type": "string" |
| // } |
| // }, |
| // "path": "b/{bucket}/acl/{entity}", |
| // "scopes": [ |
| // "https://www.googleapis.com/auth/cloud-platform", |
| // "https://www.googleapis.com/auth/devstorage.full_control" |
| // ] |
| // } |
| |
| } |
| |
| // method id "storage.bucketAccessControls.get": |
| |
| type BucketAccessControlsGetCall struct { |
| s *Service |
| bucket string |
| entity string |
| urlParams_ gensupport.URLParams |
| ifNoneMatch_ string |
| ctx_ context.Context |
| header_ http.Header |
| } |
| |
| // Get: Returns the ACL entry for the specified entity on the specified |
| // bucket. |
| func (r *BucketAccessControlsService) Get(bucket string, entity string) *BucketAccessControlsGetCall { |
| c := &BucketAccessControlsGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} |
| c.bucket = bucket |
| c.entity = entity |
| return c |
| } |
| |
| // UserProject sets the optional parameter "userProject": The project to |
| // be billed for this request. Required for Requester Pays buckets. |
| func (c *BucketAccessControlsGetCall) UserProject(userProject string) *BucketAccessControlsGetCall { |
| c.urlParams_.Set("userProject", userProject) |
| return c |
| } |
| |
| // Fields allows partial responses to be retrieved. See |
| // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse |
| // for more information. |
| func (c *BucketAccessControlsGetCall) Fields(s ...googleapi.Field) *BucketAccessControlsGetCall { |
| c.urlParams_.Set("fields", googleapi.CombineFields(s)) |
| return c |
| } |
| |
| // 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 (c *BucketAccessControlsGetCall) IfNoneMatch(entityTag string) *BucketAccessControlsGetCall { |
| c.ifNoneMatch_ = entityTag |
| return c |
| } |
| |
| // 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 (c *BucketAccessControlsGetCall) Context(ctx context.Context) *BucketAccessControlsGetCall { |
| c.ctx_ = ctx |
| return c |
| } |
| |
| // Header returns an http.Header that can be modified by the caller to |
| // add HTTP headers to the request. |
| func (c *BucketAccessControlsGetCall) Header() http.Header { |
| if c.header_ == nil { |
| c.header_ = make(http.Header) |
| } |
| return c.header_ |
| } |
| |
| func (c *BucketAccessControlsGetCall) doRequest(alt string) (*http.Response, error) { |
| reqHeaders := make(http.Header) |
| for k, v := range c.header_ { |
| reqHeaders[k] = v |
| } |
| reqHeaders.Set("User-Agent", c.s.userAgent()) |
| if c.ifNoneMatch_ != "" { |
| reqHeaders.Set("If-None-Match", c.ifNoneMatch_) |
| } |
| var body io.Reader = nil |
| c.urlParams_.Set("alt", alt) |
| urls := googleapi.ResolveRelative(c.s.BasePath, "b/{bucket}/acl/{entity}") |
| urls += "?" + c.urlParams_.Encode() |
| req, _ := http.NewRequest("GET", urls, body) |
| req.Header = reqHeaders |
| googleapi.Expand(req.URL, map[string]string{ |
| "bucket": c.bucket, |
| "entity": c.entity, |
| }) |
| return gensupport.SendRequest(c.ctx_, c.s.client, req) |
| } |
| |
| // Do executes the "storage.bucketAccessControls.get" call. |
| // Exactly one of *BucketAccessControl or error will be non-nil. Any |
| // non-2xx status code is an error. Response headers are in either |
| // *BucketAccessControl.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 (c *BucketAccessControlsGetCall) Do(opts ...googleapi.CallOption) (*BucketAccessControl, error) { |
| gensupport.SetOptions(c.urlParams_, opts...) |
| res, err := c.doRequest("json") |
| if res != nil && res.StatusCode == http.StatusNotModified { |
| if res.Body != nil { |
| res.Body.Close() |
| } |
| return nil, &googleapi.Error{ |
| Code: res.StatusCode, |
| Header: res.Header, |
| } |
| } |
| if err != nil { |
| return nil, err |
| } |
| defer googleapi.CloseBody(res) |
| if err := googleapi.CheckResponse(res); err != nil { |
| return nil, err |
| } |
| ret := &BucketAccessControl{ |
| ServerResponse: googleapi.ServerResponse{ |
| Header: res.Header, |
| HTTPStatusCode: res.StatusCode, |
| }, |
| } |
| target := &ret |
| if err := json.NewDecoder(res.Body).Decode(target); err != nil { |
| return nil, err |
| } |
| return ret, nil |
| // { |
| // "description": "Returns the ACL entry for the specified entity on the specified bucket.", |
| // "httpMethod": "GET", |
| // "id": "storage.bucketAccessControls.get", |
| // "parameterOrder": [ |
| // "bucket", |
| // "entity" |
| // ], |
| // "parameters": { |
| // "bucket": { |
| // "description": "Name of a bucket.", |
| // "location": "path", |
| // "required": true, |
| // "type": "string" |
| // }, |
| // "entity": { |
| // "description": "The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.", |
| // "location": "path", |
| // "required": true, |
| // "type": "string" |
| // }, |
| // "userProject": { |
| // "description": "The project to be billed for this request. Required for Requester Pays buckets.", |
| // "location": "query", |
| // "type": "string" |
| // } |
| // }, |
| // "path": "b/{bucket}/acl/{entity}", |
| // "response": { |
| // "$ref": "BucketAccessControl" |
| // }, |
| // "scopes": [ |
| // "https://www.googleapis.com/auth/cloud-platform", |
| // "https://www.googleapis.com/auth/devstorage.full_control" |
| // ] |
| // } |
| |
| } |
| |
| // method id "storage.bucketAccessControls.insert": |
| |
| type BucketAccessControlsInsertCall struct { |
| s *Service |
| bucket string |
| bucketaccesscontrol *BucketAccessControl |
| urlParams_ gensupport.URLParams |
| ctx_ context.Context |
| header_ http.Header |
| } |
| |
| // Insert: Creates a new ACL entry on the specified bucket. |
| func (r *BucketAccessControlsService) Insert(bucket string, bucketaccesscontrol *BucketAccessControl) *BucketAccessControlsInsertCall { |
| c := &BucketAccessControlsInsertCall{s: r.s, urlParams_: make(gensupport.URLParams)} |
| c.bucket = bucket |
| c.bucketaccesscontrol = bucketaccesscontrol |
| return c |
| } |
| |
| // UserProject sets the optional parameter "userProject": The project to |
| // be billed for this request. Required for Requester Pays buckets. |
| func (c *BucketAccessControlsInsertCall) UserProject(userProject string) *BucketAccessControlsInsertCall { |
| c.urlParams_.Set("userProject", userProject) |
| return c |
| } |
| |
| // Fields allows partial responses to be retrieved. See |
| // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse |
| // for more information. |
| func (c *BucketAccessControlsInsertCall) Fields(s ...googleapi.Field) *BucketAccessControlsInsertCall { |
| c.urlParams_.Set("fields", googleapi.CombineFields(s)) |
| return c |
| } |
| |
| // 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 (c *BucketAccessControlsInsertCall) Context(ctx context.Context) *BucketAccessControlsInsertCall { |
| c.ctx_ = ctx |
| return c |
| } |
| |
| // Header returns an http.Header that can be modified by the caller to |
| // add HTTP headers to the request. |
| func (c *BucketAccessControlsInsertCall) Header() http.Header { |
| if c.header_ == nil { |
| c.header_ = make(http.Header) |
| } |
| return c.header_ |
| } |
| |
| func (c *BucketAccessControlsInsertCall) doRequest(alt string) (*http.Response, error) { |
| reqHeaders := make(http.Header) |
| for k, v := range c.header_ { |
| reqHeaders[k] = v |
| } |
| reqHeaders.Set("User-Agent", c.s.userAgent()) |
| var body io.Reader = nil |
| body, err := googleapi.WithoutDataWrapper.JSONReader(c.bucketaccesscontrol) |
| if err != nil { |
| return nil, err |
| } |
| reqHeaders.Set("Content-Type", "application/json") |
| c.urlParams_.Set("alt", alt) |
| urls := googleapi.ResolveRelative(c.s.BasePath, "b/{bucket}/acl") |
| urls += "?" + c.urlParams_.Encode() |
| req, _ := http.NewRequest("POST", urls, body) |
| req.Header = reqHeaders |
| googleapi.Expand(req.URL, map[string]string{ |
| "bucket": c.bucket, |
| }) |
| return gensupport.SendRequest(c.ctx_, c.s.client, req) |
| } |
| |
| // Do executes the "storage.bucketAccessControls.insert" call. |
| // Exactly one of *BucketAccessControl or error will be non-nil. Any |
| // non-2xx status code is an error. Response headers are in either |
| // *BucketAccessControl.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 (c *BucketAccessControlsInsertCall) Do(opts ...googleapi.CallOption) (*BucketAccessControl, error) { |
| gensupport.SetOptions(c.urlParams_, opts...) |
| res, err := c.doRequest("json") |
| if res != nil && res.StatusCode == http.StatusNotModified { |
| if res.Body != nil { |
| res.Body.Close() |
| } |
| return nil, &googleapi.Error{ |
| Code: res.StatusCode, |
| Header: res.Header, |
| } |
| } |
| if err != nil { |
| return nil, err |
| } |
| defer googleapi.CloseBody(res) |
| if err := googleapi.CheckResponse(res); err != nil { |
| return nil, err |
| } |
| ret := &BucketAccessControl{ |
| ServerResponse: googleapi.ServerResponse{ |
| Header: res.Header, |
| HTTPStatusCode: res.StatusCode, |
| }, |
| } |
| target := &ret |
| if err := json.NewDecoder(res.Body).Decode(target); err != nil { |
| return nil, err |
| } |
| return ret, nil |
| // { |
| // "description": "Creates a new ACL entry on the specified bucket.", |
| // "httpMethod": "POST", |
| // "id": "storage.bucketAccessControls.insert", |
| // "parameterOrder": [ |
| // "bucket" |
| // ], |
| // "parameters": { |
| // "bucket": { |
| // "description": "Name of a bucket.", |
| // "location": "path", |
| // "required": true, |
| // "type": "string" |
| // }, |
| // "userProject": { |
| // "description": "The project to be billed for this request. Required for Requester Pays buckets.", |
| // "location": "query", |
| // "type": "string" |
| // } |
| // }, |
| // "path": "b/{bucket}/acl", |
| // "request": { |
| // "$ref": "BucketAccessControl" |
| // }, |
| // "response": { |
| // "$ref": "BucketAccessControl" |
| // }, |
| // "scopes": [ |
| // "https://www.googleapis.com/auth/cloud-platform", |
| // "https://www.googleapis.com/auth/devstorage.full_control" |
| // ] |
| // } |
| |
| } |
| |
| // method id "storage.bucketAccessControls.list": |
| |
| type BucketAccessControlsListCall struct { |
| s *Service |
| bucket string |
| urlParams_ gensupport.URLParams |
| ifNoneMatch_ string |
| ctx_ context.Context |
| header_ http.Header |
| } |
| |
| // List: Retrieves ACL entries on the specified bucket. |
| func (r *BucketAccessControlsService) List(bucket string) *BucketAccessControlsListCall { |
| c := &BucketAccessControlsListCall{s: r.s, urlParams_: make(gensupport.URLParams)} |
| c.bucket = bucket |
| return c |
| } |
| |
| // UserProject sets the optional parameter "userProject": The project to |
| // be billed for this request. Required for Requester Pays buckets. |
| func (c *BucketAccessControlsListCall) UserProject(userProject string) *BucketAccessControlsListCall { |
| c.urlParams_.Set("userProject", userProject) |
| return c |
| } |
| |
| // Fields allows partial responses to be retrieved. See |
| // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse |
| // for more information. |
| func (c *BucketAccessControlsListCall) Fields(s ...googleapi.Field) *BucketAccessControlsListCall { |
| c.urlParams_.Set("fields", googleapi.CombineFields(s)) |
| return c |
| } |
| |
| // 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 (c *BucketAccessControlsListCall) IfNoneMatch(entityTag string) *BucketAccessControlsListCall { |
| c.ifNoneMatch_ = entityTag |
| return c |
| } |
| |
| // 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 (c *BucketAccessControlsListCall) Context(ctx context.Context) *BucketAccessControlsListCall { |
| c.ctx_ = ctx |
| return c |
| } |
| |
| // Header returns an http.Header that can be modified by the caller to |
| // add HTTP headers to the request. |
| func (c *BucketAccessControlsListCall) Header() http.Header { |
| if c.header_ == nil { |
| c.header_ = make(http.Header) |
| } |
| return c.header_ |
| } |
| |
| func (c *BucketAccessControlsListCall) doRequest(alt string) (*http.Response, error) { |
| reqHeaders := make(http.Header) |
| for k, v := range c.header_ { |
| reqHeaders[k] = v |
| } |
| reqHeaders.Set("User-Agent", c.s.userAgent()) |
| if c.ifNoneMatch_ != "" { |
| reqHeaders.Set("If-None-Match", c.ifNoneMatch_) |
| } |
| var body io.Reader = nil |
| c.urlParams_.Set("alt", alt) |
| urls := googleapi.ResolveRelative(c.s.BasePath, "b/{bucket}/acl") |
| urls += "?" + c.urlParams_.Encode() |
| req, _ := http.NewRequest("GET", urls, body) |
| req.Header = reqHeaders |
| googleapi.Expand(req.URL, map[string]string{ |
| "bucket": c.bucket, |
| }) |
| return gensupport.SendRequest(c.ctx_, c.s.client, req) |
| } |
| |
| // Do executes the "storage.bucketAccessControls.list" call. |
| // Exactly one of *BucketAccessControls or error will be non-nil. Any |
| // non-2xx status code is an error. Response headers are in either |
| // *BucketAccessControls.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 (c *BucketAccessControlsListCall) Do(opts ...googleapi.CallOption) (*BucketAccessControls, error) { |
| gensupport.SetOptions(c.urlParams_, opts...) |
| res, err := c.doRequest("json") |
| if res != nil && res.StatusCode == http.StatusNotModified { |
| if res.Body != nil { |
| res.Body.Close() |
| } |
| return nil, &googleapi.Error{ |
| Code: res.StatusCode, |
| Header: res.Header, |
| } |
| } |
| if err != nil { |
| return nil, err |
| } |
| defer googleapi.CloseBody(res) |
| if err := googleapi.CheckResponse(res); err != nil { |
| return nil, err |
| } |
| ret := &BucketAccessControls{ |
| ServerResponse: googleapi.ServerResponse{ |
| Header: res.Header, |
| HTTPStatusCode: res.StatusCode, |
| }, |
| } |
| target := &ret |
| if err := json.NewDecoder(res.Body).Decode(target); err != nil { |
| return nil, err |
| } |
| return ret, nil |
| // { |
| // "description": "Retrieves ACL entries on the specified bucket.", |
| // "httpMethod": "GET", |
| // "id": "storage.bucketAccessControls.list", |
| // "parameterOrder": [ |
| // "bucket" |
| // ], |
| // "parameters": { |
| // "bucket": { |
| // "description": "Name of a bucket.", |
| // "location": "path", |
| // "required": true, |
| // "type": "string" |
| // }, |
| // "userProject": { |
| // "description": "The project to be billed for this request. Required for Requester Pays buckets.", |
| // "location": "query", |
| // "type": "string" |
| // } |
| // }, |
| // "path": "b/{bucket}/acl", |
| // "response": { |
| // "$ref": "BucketAccessControls" |
| // }, |
| // "scopes": [ |
| // "https://www.googleapis.com/auth/cloud-platform", |
| // "https://www.googleapis.com/auth/devstorage.full_control" |
| // ] |
| // } |
| |
| } |
| |
| // method id "storage.bucketAccessControls.patch": |
| |
| type BucketAccessControlsPatchCall struct { |
| s *Service |
| bucket string |
| entity string |
| bucketaccesscontrol *BucketAccessControl |
| urlParams_ gensupport.URLParams |
| ctx_ context.Context |
| header_ http.Header |
| } |
| |
| // Patch: Updates an ACL entry on the specified bucket. This method |
| // supports patch semantics. |
| func (r *BucketAccessControlsService) Patch(bucket string, entity string, bucketaccesscontrol *BucketAccessControl) *BucketAccessControlsPatchCall { |
| c := &BucketAccessControlsPatchCall{s: r.s, urlParams_: make(gensupport.URLParams)} |
| c.bucket = bucket |
| c.entity = entity |
| c.bucketaccesscontrol = bucketaccesscontrol |
| return c |
| } |
| |
| // UserProject sets the optional parameter "userProject": The project to |
| // be billed for this request. Required for Requester Pays buckets. |
| func (c *BucketAccessControlsPatchCall) UserProject(userProject string) *BucketAccessControlsPatchCall { |
| c.urlParams_.Set("userProject", userProject) |
| return c |
| } |
| |
| // Fields allows partial responses to be retrieved. See |
| // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse |
| // for more information. |
| func (c *BucketAccessControlsPatchCall) Fields(s ...googleapi.Field) *BucketAccessControlsPatchCall { |
| c.urlParams_.Set("fields", googleapi.CombineFields(s)) |
| return c |
| } |
| |
| // 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 (c *BucketAccessControlsPatchCall) Context(ctx context.Context) *BucketAccessControlsPatchCall { |
| c.ctx_ = ctx |
| return c |
| } |
| |
| // Header returns an http.Header that can be modified by the caller to |
| // add HTTP headers to the request. |
| func (c *BucketAccessControlsPatchCall) Header() http.Header { |
| if c.header_ == nil { |
| c.header_ = make(http.Header) |
| } |
| return c.header_ |
| } |
| |
| func (c *BucketAccessControlsPatchCall) doRequest(alt string) (*http.Response, error) { |
| reqHeaders := make(http.Header) |
| for k, v := range c.header_ { |
| reqHeaders[k] = v |
| } |
| reqHeaders.Set("User-Agent", c.s.userAgent()) |
| var body io.Reader = nil |
| body, err := googleapi.WithoutDataWrapper.JSONReader(c.bucketaccesscontrol) |
| if err != nil { |
| return nil, err |
| } |
| reqHeaders.Set("Content-Type", "application/json") |
| c.urlParams_.Set("alt", alt) |
| urls := googleapi.ResolveRelative(c.s.BasePath, "b/{bucket}/acl/{entity}") |
| urls += "?" + c.urlParams_.Encode() |
| req, _ := http.NewRequest("PATCH", urls, body) |
| req.Header = reqHeaders |
| googleapi.Expand(req.URL, map[string]string{ |
| "bucket": c.bucket, |
| "entity": c.entity, |
| }) |
| return gensupport.SendRequest(c.ctx_, c.s.client, req) |
| } |
| |
| // Do executes the "storage.bucketAccessControls.patch" call. |
| // Exactly one of *BucketAccessControl or error will be non-nil. Any |
| // non-2xx status code is an error. Response headers are in either |
| // *BucketAccessControl.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 (c *BucketAccessControlsPatchCall) Do(opts ...googleapi.CallOption) (*BucketAccessControl, error) { |
| gensupport.SetOptions(c.urlParams_, opts...) |
| res, err := c.doRequest("json") |
| if res != nil && res.StatusCode == http.StatusNotModified { |
| if res.Body != nil { |
| res.Body.Close() |
| } |
| return nil, &googleapi.Error{ |
| Code: res.StatusCode, |
| Header: res.Header, |
| } |
| } |
| if err != nil { |
| return nil, err |
| } |
| defer googleapi.CloseBody(res) |
| if err := googleapi.CheckResponse(res); err != nil { |
| return nil, err |
| } |
| ret := &BucketAccessControl{ |
| ServerResponse: googleapi.ServerResponse{ |
| Header: res.Header, |
| HTTPStatusCode: res.StatusCode, |
| }, |
| } |
| target := &ret |
| if err := json.NewDecoder(res.Body).Decode(target); err != nil { |
| return nil, err |
| } |
| return ret, nil |
| // { |
| // "description": "Updates an ACL entry on the specified bucket. This method supports patch semantics.", |
| // "httpMethod": "PATCH", |
| // "id": "storage.bucketAccessControls.patch", |
| // "parameterOrder": [ |
| // "bucket", |
| // "entity" |
| // ], |
| // "parameters": { |
| // "bucket": { |
| // "description": "Name of a bucket.", |
| // "location": "path", |
| // "required": true, |
| // "type": "string" |
| // }, |
| // "entity": { |
| // "description": "The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.", |
| // "location": "path", |
| // "required": true, |
| // "type": "string" |
| // }, |
| // "userProject": { |
| // "description": "The project to be billed for this request. Required for Requester Pays buckets.", |
| // "location": "query", |
| // "type": "string" |
| // } |
| // }, |
| // "path": "b/{bucket}/acl/{entity}", |
| // "request": { |
| // "$ref": "BucketAccessControl" |
| // }, |
| // "response": { |
| // "$ref": "BucketAccessControl" |
| // }, |
| // "scopes": [ |
| // "https://www.googleapis.com/auth/cloud-platform", |
| // "https://www.googleapis.com/auth/devstorage.full_control" |
| // ] |
| // } |
| |
| } |
| |
| // method id "storage.bucketAccessControls.update": |
| |
| type BucketAccessControlsUpdateCall struct { |
| s *Service |
| bucket string |
| entity string |
| bucketaccesscontrol *BucketAccessControl |
| urlParams_ gensupport.URLParams |
| ctx_ context.Context |
| header_ http.Header |
| } |
| |
| // Update: Updates an ACL entry on the specified bucket. |
| func (r *BucketAccessControlsService) Update(bucket string, entity string, bucketaccesscontrol *BucketAccessControl) *BucketAccessControlsUpdateCall { |
| c := &BucketAccessControlsUpdateCall{s: r.s, urlParams_: make(gensupport.URLParams)} |
| c.bucket = bucket |
| c.entity = entity |
| c.bucketaccesscontrol = bucketaccesscontrol |
| return c |
| } |
| |
| // UserProject sets the optional parameter "userProject": The project to |
| // be billed for this request. Required for Requester Pays buckets. |
| func (c *BucketAccessControlsUpdateCall) UserProject(userProject string) *BucketAccessControlsUpdateCall { |
| c.urlParams_.Set("userProject", userProject) |
| return c |
| } |
| |
| // Fields allows partial responses to be retrieved. See |
| // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse |
| // for more information. |
| func (c *BucketAccessControlsUpdateCall) Fields(s ...googleapi.Field) *BucketAccessControlsUpdateCall { |
| c.urlParams_.Set("fields", googleapi.CombineFields(s)) |
| return c |
| } |
| |
| // 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 (c *BucketAccessControlsUpdateCall) Context(ctx context.Context) *BucketAccessControlsUpdateCall { |
| c.ctx_ = ctx |
| return c |
| } |
| |
| // Header returns an http.Header that can be modified by the caller to |
| // add HTTP headers to the request. |
| func (c *BucketAccessControlsUpdateCall) Header() http.Header { |
| if c.header_ == nil { |
| c.header_ = make(http.Header) |
| } |
| return c.header_ |
| } |
| |
| func (c *BucketAccessControlsUpdateCall) doRequest(alt string) (*http.Response, error) { |
| reqHeaders := make(http.Header) |
| for k, v := range c.header_ { |
| reqHeaders[k] = v |
| } |
| reqHeaders.Set("User-Agent", c.s.userAgent()) |
| var body io.Reader = nil |
| body, err := googleapi.WithoutDataWrapper.JSONReader(c.bucketaccesscontrol) |
| if err != nil { |
| return nil, err |
| } |
| reqHeaders.Set("Content-Type", "application/json") |
| c.urlParams_.Set("alt", alt) |
| urls := googleapi.ResolveRelative(c.s.BasePath, "b/{bucket}/acl/{entity}") |
| urls += "?" + c.urlParams_.Encode() |
| req, _ := http.NewRequest("PUT", urls, body) |
| req.Header = reqHeaders |
| googleapi.Expand(req.URL, map[string]string{ |
| "bucket": c.bucket, |
| "entity": c.entity, |
| }) |
| return gensupport.SendRequest(c.ctx_, c.s.client, req) |
| } |
| |
| // Do executes the "storage.bucketAccessControls.update" call. |
| // Exactly one of *BucketAccessControl or error will be non-nil. Any |
| // non-2xx status code is an error. Response headers are in either |
| // *BucketAccessControl.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 (c *BucketAccessControlsUpdateCall) Do(opts ...googleapi.CallOption) (*BucketAccessControl, error) { |
| gensupport.SetOptions(c.urlParams_, opts...) |
| res, err := c.doRequest("json") |
| if res != nil && res.StatusCode == http.StatusNotModified { |
| if res.Body != nil { |
| res.Body.Close() |
| } |
| return nil, &googleapi.Error{ |
| Code: res.StatusCode, |
| Header: res.Header, |
| } |
| } |
| if err != nil { |
| return nil, err |
| } |
| defer googleapi.CloseBody(res) |
| if err := googleapi.CheckResponse(res); err != nil { |
| return nil, err |
| } |
| ret := &BucketAccessControl{ |
| ServerResponse: googleapi.ServerResponse{ |
| Header: res.Header, |
| HTTPStatusCode: res.StatusCode, |
| }, |
| } |
| target := &ret |
| if err := json.NewDecoder(res.Body).Decode(target); err != nil { |
| return nil, err |
| } |
| return ret, nil |
| // { |
| // "description": "Updates an ACL entry on the specified bucket.", |
| // "httpMethod": "PUT", |
| // "id": "storage.bucketAccessControls.update", |
| // "parameterOrder": [ |
| // "bucket", |
| // "entity" |
| // ], |
| // "parameters": { |
| // "bucket": { |
| // "description": "Name of a bucket.", |
| // "location": "path", |
| // "required": true, |
| // "type": "string" |
| // }, |
| // "entity": { |
| // "description": "The entity holding the permission. Can be user-userId, user-emailAddress, group-groupId, group-emailAddress, allUsers, or allAuthenticatedUsers.", |
| // "location": "path", |
| // "required": true, |
| // "type": "string" |
| // }, |
| // "userProject": { |
| // "description": "The project to be billed for this request. Required for Requester Pays buckets.", |
| // "location": "query", |
| // "type": "string" |
| // } |
| // }, |
| // "path": "b/{bucket}/acl/{entity}", |
| // "request": { |
| // "$ref": "BucketAccessControl" |
| // }, |
| // "response": { |
| // "$ref": "BucketAccessControl" |
| // }, |
| // "scopes": [ |
| // "https://www.googleapis.com/auth/cloud-platform", |
| // "https://www.googleapis.com/auth/devstorage.full_control" |
| // ] |
| // } |
| |
| } |
| |
| // method id "storage.buckets.delete": |
| |
| type BucketsDeleteCall struct { |
| s *Service |
| bucket string |
| urlParams_ gensupport.URLParams |
| ctx_ context.Context |
| header_ http.Header |
| } |
| |
| // Delete: Permanently deletes an empty bucket. |
| func (r *BucketsService) Delete(bucket string) *BucketsDeleteCall { |
| c := &BucketsDeleteCall{s: r.s, urlParams_: make(gensupport.URLParams)} |
| c.bucket = bucket |
| return c |
| } |
| |
| // IfMetagenerationMatch sets the optional parameter |
| // "ifMetagenerationMatch": If set, only deletes the bucket if its |
| // metageneration matches this value. |
| func (c *BucketsDeleteCall) IfMetagenerationMatch(ifMetagenerationMatch int64) *BucketsDeleteCall { |
| c.urlParams_.Set("ifMetagenerationMatch", fmt.Sprint(ifMetagenerationMatch)) |
| return c |
| } |
| |
| // IfMetagenerationNotMatch sets the optional parameter |
| // "ifMetagenerationNotMatch": If set, only deletes the bucket if its |
| // metageneration does not match this value. |
| func (c *BucketsDeleteCall) IfMetagenerationNotMatch(ifMetagenerationNotMatch int64) *BucketsDeleteCall { |
| c.urlParams_.Set("ifMetagenerationNotMatch", fmt.Sprint(ifMetagenerationNotMatch)) |
| return c |
| } |
| |
| // UserProject sets the optional parameter "userProject": The project to |
| // be billed for this request. Required for Requester Pays buckets. |
| func (c *BucketsDeleteCall) UserProject(userProject string) *BucketsDeleteCall { |
| c.urlParams_.Set("userProject", userProject) |
| return c |
| } |
| |
| // Fields allows partial responses to be retrieved. See |
| // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse |
| // for more information. |
| func (c *BucketsDeleteCall) Fields(s ...googleapi.Field) *BucketsDeleteCall { |
| c.urlParams_.Set("fields", googleapi.CombineFields(s)) |
| return c |
| } |
| |
| // 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 (c *BucketsDeleteCall) Context(ctx context.Context) *BucketsDeleteCall { |
| c.ctx_ = ctx |
| return c |
| } |
| |
| // Header returns an http.Header that can be modified by the caller to |
| // add HTTP headers to the request. |
| func (c *BucketsDeleteCall) Header() http.Header { |
| if c.header_ == nil { |
| c.header_ = make(http.Header) |
| } |
| return c.header_ |
| } |
| |
| func (c *BucketsDeleteCall) doRequest(alt string) (*http.Response, error) { |
| reqHeaders := make(http.Header) |
| for k, v := range c.header_ { |
| reqHeaders[k] = v |
| } |
| reqHeaders.Set("User-Agent", c.s.userAgent()) |
| var body io.Reader = nil |
| c.urlParams_.Set("alt", alt) |
| urls := googleapi.ResolveRelative(c.s.BasePath, "b/{bucket}") |
| urls += "?" + c.urlParams_.Encode() |
| req, _ := http.NewRequest("DELETE", urls, body) |
| req.Header = reqHeaders |
| googleapi.Expand(req.URL, map[string]string{ |
| "bucket": c.bucket, |
| }) |
| return gensupport.SendRequest(c.ctx_, c.s.client, req) |
| } |
| |
| // Do executes the "storage.buckets.delete" call. |
| func (c *BucketsDeleteCall) Do(opts ...googleapi.CallOption) error { |
| gensupport.SetOptions(c.urlParams_, opts...) |
| res, err := c.doRequest("json") |
| if err != nil { |
| return err |
| } |
| defer googleapi.CloseBody(res) |
| if err := googleapi.CheckResponse(res); err != nil { |
| return err |
| } |
| return nil |
| // { |
| // "description": "Permanently deletes an empty bucket.", |
| // "httpMethod": "DELETE", |
| // "id": "storage.buckets.delete", |
| // "parameterOrder": [ |
| // "bucket" |
| // ], |
| // "parameters": { |
| // "bucket": { |
| // "description": "Name of a bucket.", |
| // "location": "path", |
| // "required": true, |
| // "type": "string" |
| // }, |
| // "ifMetagenerationMatch": { |
| // "description": "If set, only deletes the bucket if its metageneration matches this value.", |
| // "format": "int64", |
| // "location": "query", |
| // "type": "string" |
| // }, |
| // "ifMetagenerationNotMatch": { |
| // "description": "If set, only deletes the bucket if its metageneration does not match this value.", |
| // "format": "int64", |
| // "location": "query", |
| // "type": "string" |
| // }, |
| // "userProject": { |
| // "description": "The project to be billed for this request. Required for Requester Pays buckets.", |
| // "location": "query", |
| // "type": "string" |
| // } |
| // }, |
| // "path": "b/{bucket}", |
| // "scopes": [ |
| // "https://www.googleapis.com/auth/cloud-platform", |
| // "https://www.googleapis.com/auth/devstorage.full_control", |
| // "https://www.googleapis.com/auth/devstorage.read_write" |
| // ] |
| // } |
| |
| } |
| |
| // method id "storage.buckets.get": |
| |
| type BucketsGetCall struct { |
| s *Service |
| bucket string |
| urlParams_ gensupport.URLParams |
| ifNoneMatch_ string |
| ctx_ context.Context |
| header_ http.Header |
| } |
| |
| // Get: Returns metadata for the specified bucket. |
| func (r *BucketsService) Get(bucket string) *BucketsGetCall { |
| c := &BucketsGetCall{s: r.s, urlParams_: make(gensupport.URLParams)} |
| c.bucket = bucket |
| return c |
| } |
| |
| // IfMetagenerationMatch sets the optional parameter |
| // "ifMetagenerationMatch": Makes the return of the bucket metadata |
| // conditional on whether the bucket's current metageneration matches |
| // the given value. |
| func (c *BucketsGetCall) IfMetagenerationMatch(ifMetagenerationMatch int64) *BucketsGetCall { |
| c.urlParams_.Set("ifMetagenerationMatch", fmt.Sprint(ifMetagenerationMatch)) |
| return c |
| } |
| |
| // IfMetagenerationNotMatch sets the optional parameter |
| // "ifMetagenerationNotMatch": Makes the return of the bucket metadata |
| // conditional on whether the bucket's current metageneration does not |
| // match the given value. |
| func (c *BucketsGetCall) IfMetagenerationNotMatch(ifMetagenerationNotMatch int64) *BucketsGetCall { |
| c.urlParams_.Set("ifMetagenerationNotMatch", fmt.Sprint(ifMetagenerationNotMatch)) |
| return c |
| } |
| |
| // Projection sets the optional parameter "projection": Set of |
| // properties to return. Defaults to noAcl. |
| // |
| // Possible values: |
| // "full" - Include all properties. |
| // "noAcl" - Omit owner, acl and defaultObjectAcl properties. |
| func (c *BucketsGetCall) Projection(projection string) *BucketsGetCall { |
| c.urlParams_.Set("projection", projection) |
| return c |
| } |
| |
| // UserProject sets the optional parameter "userProject": The project to |
| // be billed for this request. Required for Requester Pays buckets. |
| func (c *BucketsGetCall) UserProject(userProject string) *BucketsGetCall { |
| c.urlParams_.Set("userProject", userProject) |
| return c |
| } |
| |
| // Fields allows partial responses to be retrieved. See |
| // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse |
| // for more information. |
| func (c *BucketsGetCall) Fields(s ...googleapi.Field) *BucketsGetCall { |
| c.urlParams_.Set("fields", googleapi.CombineFields(s)) |
| return c |
| } |
| |
| // 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 (c *BucketsGetCall) IfNoneMatch(entityTag string) *BucketsGetCall { |
| c.ifNoneMatch_ = entityTag |
| return c |
| } |
| |
| // 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 (c *BucketsGetCall) Context(ctx context.Context) *BucketsGetCall { |
| c.ctx_ = ctx |
| return c |
| } |
| |
| // Header returns an http.Header that can be modified by the caller to |
| // add HTTP headers to the request. |
| func (c *BucketsGetCall) Header() http.Header { |
| if c.header_ == nil { |
| c.header_ = make(http.Header) |
| } |
| return c.header_ |
| } |
| |
| func (c *BucketsGetCall) doRequest(alt string) (*http.Response, error) { |
| reqHeaders := make(http.Header) |
| for k, v := range c.header_ { |
| reqHeaders[k] = v |
| } |
| reqHeaders.Set("User-Agent", c.s.userAgent()) |
| if c.ifNoneMatch_ != "" { |
| reqHeaders.Set("If-None-Match", c.ifNoneMatch_) |
| } |
| var body io.Reader = nil |
| c.urlParams_.Set("alt", alt) |
| urls := googleapi.ResolveRelative(c.s.BasePath, "b/{bucket}") |
| urls += "?" + c.urlParams_.Encode() |
| req, _ := http.NewRequest("GET", urls, body) |
| req.Header = reqHeaders |
| googleapi.Expand(req.URL, map[string]string{ |
| "bucket": c.bucket, |
| }) |
| return gensupport.SendRequest(c.ctx_, c.s.client, req) |
| } |
| |
| // Do executes the "storage.buckets.get" call. |
| // Exactly one of *Bucket or error will be non-nil. Any non-2xx status |
| // code is an error. Response headers are in either |
| // *Bucket.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 (c *BucketsGetCall) Do(opts ...googleapi.CallOption) (*Bucket, error) { |
| gensupport.SetOptions(c.urlParams_, opts...) |
| res, err := c.doRequest("json") |
| if res != nil && res.StatusCode == http.StatusNotModified { |
| if res.Body != nil { |
| res.Body.Close() |
| } |
| return nil, &googleapi.Error{ |
| Code: res.StatusCode, |
| Header: res.Header, |
| } |
| } |
| if err != nil { |
| return nil, err |
| } |
| defer googleapi.CloseBody(res) |
| if err := googleapi.CheckResponse(res); err != nil { |
| return nil, err |
| } |
| ret := &Bucket{ |
| ServerResponse: googleapi.ServerResponse{ |
| Header: res.Header, |
| HTTPStatusCode: res.StatusCode, |
| }, |
| } |
| target := &ret |
| if err := json.NewDecoder(res.Body).Decode(target); err != nil { |
| return nil, err |
| } |
| return ret, nil |
| // { |
| // "description": "Returns metadata for the specified bucket.", |
| // "httpMethod": "GET", |
| // "id": "storage.buckets.get", |
| // "parameterOrder": [ |
| // "bucket" |
| // ], |
| // "parameters": { |
| // "bucket": { |
| // "description": "Name of a bucket.", |
| // "location": "path", |
| // "required": true, |
| // "type": "string" |
| // }, |
| // "ifMetagenerationMatch": { |
| // "description": "Makes the return of the bucket metadata conditional on whether the bucket's current metageneration matches the given value.", |
| // "format": "int64", |
| // "location": "query", |
| // "type": "string" |
| // }, |
| // "ifMetagenerationNotMatch": { |
| // "description": "Makes the return of the bucket metadata conditional on whether the bucket's current metageneration does not match the given value.", |
| // "format": "int64", |
| // "location": "query", |
| // "type": "string" |
| // }, |
| // "projection": { |
| // "description": "Set of properties to return. Defaults to noAcl.", |
| // "enum": [ |
| // "full", |
| // "noAcl" |
| // ], |
| // "enumDescriptions": [ |
| // "Include all properties.", |
| // "Omit owner, acl and defaultObjectAcl properties." |
| // ], |
| // "location": "query", |
| // "type": "string" |
| // }, |
| // "userProject": { |
| // "description": "The project to be billed for this request. Required for Requester Pays buckets.", |
| // "location": "query", |
| // "type": "string" |
| // } |
| // }, |
| // "path": "b/{bucket}", |
| // "response": { |
| // "$ref": "Bucket" |
| // }, |
| // "scopes": [ |
| // "https://www.googleapis.com/auth/cloud-platform", |
| // "https://www.googleapis.com/auth/cloud-platform.read-only", |
| // "https://www.googleapis.com/auth/devstorage.full_control", |
| // "https://www.googleapis.com/auth/devstorage.read_only", |
| // "https://www.googleapis.com/auth/devstorage.read_write" |
| // ] |
| // } |
| |
| } |
| |
| // method id "storage.buckets.getIamPolicy": |
| |
| type BucketsGetIamPolicyCall struct { |
| s *Service |
| bucket string |
| urlParams_ gensupport.URLParams |
| ifNoneMatch_ string |
| ctx_ context.Context |
| header_ http.Header |
| } |
| |
| // GetIamPolicy: Returns an IAM policy for the specified bucket. |
| func (r *BucketsService) GetIamPolicy(bucket string) *BucketsGetIamPolicyCall { |
| c := &BucketsGetIamPolicyCall{s: r.s, urlParams_: make(gensupport.URLParams)} |
| c.bucket = bucket |
| return c |
| } |
| |
| // UserProject sets the optional parameter "userProject": The project to |
| // be billed for this request. Required for Requester Pays buckets. |
| func (c *BucketsGetIamPolicyCall) UserProject(userProject string) *BucketsGetIamPolicyCall { |
| c.urlParams_.Set("userProject", userProject) |
| return c |
| } |
| |
| // Fields allows partial responses to be retrieved. See |
| // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse |
| // for more information. |
| func (c *BucketsGetIamPolicyCall) Fields(s ...googleapi.Field) *BucketsGetIamPolicyCall { |
| c.urlParams_.Set("fields", googleapi.CombineFields(s)) |
| return c |
| } |
| |
| // 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 (c *BucketsGetIamPolicyCall) IfNoneMatch(entityTag string) *BucketsGetIamPolicyCall { |
| c.ifNoneMatch_ = entityTag |
| return c |
| } |
| |
| // 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 (c *BucketsGetIamPolicyCall) Context(ctx context.Context) *BucketsGetIamPolicyCall { |
| c.ctx_ = ctx |
| return c |
| } |
| |
| // Header returns an http.Header that can be modified by the caller to |
| // add HTTP headers to the request. |
| func (c *BucketsGetIamPolicyCall) Header() http.Header { |
| if c.header_ == nil { |
| c.header_ = make(http.Header) |
| } |
| return c.header_ |
| } |
| |
| func (c *BucketsGetIamPolicyCall) doRequest(alt string) (*http.Response, error) { |
| reqHeaders := make(http.Header) |
| for k, v := range c.header_ { |
| reqHeaders[k] = v |
| } |
| reqHeaders.Set("User-Agent", c.s.userAgent()) |
| if c.ifNoneMatch_ != "" { |
| reqHeaders.Set("If-None-Match", c.ifNoneMatch_) |
| } |
| var body io.Reader = nil |
| c.urlParams_.Set("alt", alt) |
| urls := googleapi.ResolveRelative(c.s.BasePath, "b/{bucket}/iam") |
| urls += "?" + c.urlParams_.Encode() |
| req, _ := http.NewRequest("GET", urls, body) |
| req.Header = reqHeaders |
| googleapi.Expand(req.URL, map[string]string{ |
| "bucket": c.bucket, |
| }) |
| return gensupport.SendRequest(c.ctx_, c.s.client, req) |
| } |
| |
| // Do executes the "storage.buckets.getIamPolicy" call. |
| // Exactly one of *Policy or error will be non-nil. Any non-2xx status |
| // code is an error. Response headers are in either |
| // *Policy.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 (c *BucketsGetIamPolicyCall) Do(opts ...googleapi.CallOption) (*Policy, error) { |
| gensupport.SetOptions(c.urlParams_, opts...) |
| res, err := c.doRequest("json") |
| if res != nil && res.StatusCode == http.StatusNotModified { |
| if res.Body != nil { |
| res.Body.Close() |
| } |
| return nil, &googleapi.Error{ |
| Code: res.StatusCode, |
| Header: res.Header, |
| } |
| } |
| if err != nil { |
| return nil, err |
| } |
| defer googleapi.CloseBody(res) |
| if err := googleapi.CheckResponse(res); err != nil { |
| return nil, err |
| } |
| ret := &Policy{ |
| ServerResponse: googleapi.ServerResponse{ |
| Header: res.Header, |
| HTTPStatusCode: res.StatusCode, |
| }, |
| } |
| target := &ret |
| if err := json.NewDecoder(res.Body).Decode(target); err != nil { |
| return nil, err |
| } |
| return ret, nil |
| // { |
| // "description": "Returns an IAM policy for the specified bucket.", |
| // "httpMethod": "GET", |
| // "id": "storage.buckets.getIamPolicy", |
| // "parameterOrder": [ |
| // "bucket" |
| // ], |
| // "parameters": { |
| // "bucket": { |
| // "description": "Name of a bucket.", |
| // "location": "path", |
| // "required": true, |
| // "type": "string" |
| // }, |
| // "userProject": { |
| // "description": "The project to be billed for this request. Required for Requester Pays buckets.", |
| // "location": "query", |
| // "type": "string" |
| // } |
| // }, |
| // "path": "b/{bucket}/iam", |
| // "response": { |
| // "$ref": "Policy" |
| // }, |
| // "scopes": [ |
| // "https://www.googleapis.com/auth/cloud-platform", |
| // "https://www.googleapis.com/auth/cloud-platform.read-only", |
| // "https://www.googleapis.com/auth/devstorage.full_control", |
| // "https://www.googleapis.com/auth/devstorage.read_only", |
| // "https://www.googleapis.com/auth/devstorage.read_write" |
| // ] |
| // } |
| |
| } |
| |
| // method id "storage.buckets.insert": |
| |
| type BucketsInsertCall struct { |
| s *Service |
| bucket *Bucket |
| urlParams_ gensupport.URLParams |
| ctx_ context.Context |
| header_ http.Header |
| } |
| |
| // Insert: Creates a new bucket. |
| func (r *BucketsService) Insert(projectid string, bucket *Bucket) *BucketsInsertCall { |
| c := &BucketsInsertCall{s: r.s, urlParams_: make(gensupport.URLParams)} |
| c.urlParams_.Set("project", projectid) |
| c.bucket = bucket |
| return c |
| } |
| |
| // PredefinedAcl sets the optional parameter "predefinedAcl": Apply a |
| // predefined set of access controls to this bucket. |
| // |
| // Possible values: |
| // "authenticatedRead" - Project team owners get OWNER access, and |
| // allAuthenticatedUsers get READER access. |
| // "private" - Project team owners get OWNER access. |
| // "projectPrivate" - Project team members get access according to |
| // their roles. |
| // "publicRead" - Project team owners get OWNER access, and allUsers |
| // get READER access. |
| // "publicReadWrite" - Project team owners get OWNER access, and |
| // allUsers get WRITER access. |
| func (c *BucketsInsertCall) PredefinedAcl(predefinedAcl string) *BucketsInsertCall { |
| c.urlParams_.Set("predefinedAcl", predefinedAcl) |
| return c |
| } |
| |
| // PredefinedDefaultObjectAcl sets the optional parameter |
| // "predefinedDefaultObjectAcl": Apply a predefined set of default |
| // object access controls to this bucket. |
| // |
| // Possible values: |
| // "authenticatedRead" - Object owner gets OWNER access, and |
| // allAuthenticatedUsers get READER access. |
| // "bucketOwnerFullControl" - Object owner gets OWNER access, and |
| // project team owners get OWNER access. |
| // "bucketOwnerRead" - Object owner gets OWNER access, and project |
| // team owners get READER access. |
| // "private" - Object owner gets OWNER access. |
| // "projectPrivate" - Object owner gets OWNER access, and project team |
| // members get access according to their roles. |
| // "publicRead" - Object owner gets OWNER access, and allUsers get |
| // READER access. |
| func (c *BucketsInsertCall) PredefinedDefaultObjectAcl(predefinedDefaultObjectAcl string) *BucketsInsertCall { |
| c.urlParams_.Set("predefinedDefaultObjectAcl", predefinedDefaultObjectAcl) |
| return c |
| } |
| |
| // Projection sets the optional parameter "projection": Set of |
| // properties to return. Defaults to noAcl, unless the bucket resource |
| // specifies acl or defaultObjectAcl properties, when it defaults to |
| // full. |
| // |
| // Possible values: |
| // "full" - Include all properties. |
| // "noAcl" - Omit owner, acl and defaultObjectAcl properties. |
| func (c *BucketsInsertCall) Projection(projection string) *BucketsInsertCall { |
| c.urlParams_.Set("projection", projection) |
| return c |
| } |
| |
| // UserProject sets the optional parameter "userProject": The project to |
| // be billed for this request. |
| func (c *BucketsInsertCall) UserProject(userProject string) *BucketsInsertCall { |
| c.urlParams_.Set("userProject", userProject) |
| return c |
| } |
| |
| // Fields allows partial responses to be retrieved. See |
| // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse |
| // for more information. |
| func (c *BucketsInsertCall) Fields(s ...googleapi.Field) *BucketsInsertCall { |
| c.urlParams_.Set("fields", googleapi.CombineFields(s)) |
| return c |
| } |
| |
| // 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 (c *BucketsInsertCall) Context(ctx context.Context) *BucketsInsertCall { |
| c.ctx_ = ctx |
| return c |
| } |
| |
| // Header returns an http.Header that can be modified by the caller to |
| // add HTTP headers to the request. |
| func (c *BucketsInsertCall) Header() http.Header { |
| if c.header_ == nil { |
| c.header_ = make(http.Header) |
| } |
| return c.header_ |
| } |
| |
| func (c *BucketsInsertCall) doRequest(alt string) (*http.Response, error) { |
| reqHeaders := make(http.Header) |
| for k, v := range c.header_ { |
| reqHeaders[k] = v |
| } |
| reqHeaders.Set("User-Agent", c.s.userAgent()) |
| var body io.Reader = nil |
| body, err := googleapi.WithoutDataWrapper.JSONReader(c.bucket) |
| if err != nil { |
| return nil, err |
| } |
| reqHeaders.Set("Content-Type", "application/json") |
| c.urlParams_.Set("alt", alt) |
| urls := googleapi.ResolveRelative(c.s.BasePath, "b") |
| urls += "?" + c.urlParams_.Encode() |
| req, _ := http.NewRequest("POST", urls, body) |
| req.Header = reqHeaders |
| return gensupport.SendRequest(c.ctx_, c.s.client, req) |
| } |
| |
| // Do executes the "storage.buckets.insert" call. |
| // Exactly one of *Bucket or error will be non-nil. Any non-2xx status |
| // code is an error. Response headers are in either |
| // *Bucket.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 (c *BucketsInsertCall) Do(opts ...googleapi.CallOption) (*Bucket, error) { |
| gensupport.SetOptions(c.urlParams_, opts...) |
| res, err := c.doRequest("json") |
| if res != nil && res.StatusCode == http.StatusNotModified { |
| if res.Body != nil { |
| res.Body.Close() |
| } |
| return nil, &googleapi.Error{ |
| Code: res.StatusCode, |
| Header: res.Header, |
| } |
| } |
| if err != nil { |
| return nil, err |
| } |
| defer googleapi.CloseBody(res) |
| if err := googleapi.CheckResponse(res); err != nil { |
| return nil, err |
| } |
| ret := &Bucket{ |
| ServerResponse: googleapi.ServerResponse{ |
| Header: res.Header, |
| HTTPStatusCode: res.StatusCode, |
| }, |
| } |
| target := &ret |
| if err := json.NewDecoder(res.Body).Decode(target); err != nil { |
| return nil, err |
| } |
| return ret, nil |
| // { |
| // "description": "Creates a new bucket.", |
| // "httpMethod": "POST", |
| // "id": "storage.buckets.insert", |
| // "parameterOrder": [ |
| // "project" |
| // ], |
| // "parameters": { |
| // "predefinedAcl": { |
| // "description": "Apply a predefined set of access controls to this bucket.", |
| // "enum": [ |
| // "authenticatedRead", |
| // "private", |
| // "projectPrivate", |
| // "publicRead", |
| // "publicReadWrite" |
| // ], |
| // "enumDescriptions": [ |
| // "Project team owners get OWNER access, and allAuthenticatedUsers get READER access.", |
| // "Project team owners get OWNER access.", |
| // "Project team members get access according to their roles.", |
| // "Project team owners get OWNER access, and allUsers get READER access.", |
| // "Project team owners get OWNER access, and allUsers get WRITER access." |
| // ], |
| // "location": "query", |
| // "type": "string" |
| // }, |
| // "predefinedDefaultObjectAcl": { |
| // "description": "Apply a predefined set of default object access controls to this bucket.", |
| // "enum": [ |
| // "authenticatedRead", |
| // "bucketOwnerFullControl", |
| // "bucketOwnerRead", |
| // "private", |
| // "projectPrivate", |
| // "publicRead" |
| // ], |
| // "enumDescriptions": [ |
| // "Object owner gets OWNER access, and allAuthenticatedUsers get READER access.", |
| // "Object owner gets OWNER access, and project team owners get OWNER access.", |
| // "Object owner gets OWNER access, and project team owners get READER access.", |
| // "Object owner gets OWNER access.", |
| // "Object owner gets OWNER access, and project team members get access according to their roles.", |
| // "Object owner gets OWNER access, and allUsers get READER access." |
| // ], |
| // "location": "query", |
| // "type": "string" |
| // }, |
| // "project": { |
| // "description": "A valid API project identifier.", |
| // "location": "query", |
| // "required": true, |
| // "type": "string" |
| // }, |
| // "projection": { |
| // "description": "Set of properties to return. Defaults to noAcl, unless the bucket resource specifies acl or defaultObjectAcl properties, when it defaults to full.", |
| // "enum": [ |
| // "full", |
| // "noAcl" |
| // ], |
| // "enumDescriptions": [ |
| // "Include all properties.", |
| // "Omit owner, acl and defaultObjectAcl properties." |
| // ], |
| // "location": "query", |
| // "type": "string" |
| // }, |
| // "userProject": { |
| // "description": "The project to be billed for this request.", |
| // "location": "query", |
| // "type": "string" |
| // } |
| // }, |
| // "path": "b", |
| // "request": { |
| // "$ref": "Bucket" |
| // }, |
| // "response": { |
| // "$ref": "Bucket" |
| // }, |
| // "scopes": [ |
| // "https://www.googleapis.com/auth/cloud-platform", |
| // "https://www.googleapis.com/auth/devstorage.full_control", |
| // "https://www.googleapis.com/auth/devstorage.read_write" |
| // ] |
| // } |
| |
| } |
| |
| // method id "storage.buckets.list": |
| |
| type BucketsListCall struct { |
| s *Service |
| urlParams_ gensupport.URLParams |
| ifNoneMatch_ string |
| ctx_ context.Context |
| header_ http.Header |
| } |
| |
| // List: Retrieves a list of buckets for a given project. |
| func (r *BucketsService) List(projectid string) *BucketsListCall { |
| c := &BucketsListCall{s: r.s, urlParams_: make(gensupport.URLParams)} |
| c.urlParams_.Set("project", projectid) |
| return c |
| } |
| |
| // MaxResults sets the optional parameter "maxResults": Maximum number |
| // of buckets to return in a single response. The service will use this |
| // parameter or 1,000 items, whichever is smaller. |
| func (c *BucketsListCall) MaxResults(maxResults int64) *BucketsListCall { |
| c.urlParams_.Set("maxResults", fmt.Sprint(maxResults)) |
| return c |
| } |
| |
| // PageToken sets the optional parameter "pageToken": A |
| // previously-returned page token representing part of the larger set of |
| // results to view. |
| func (c *BucketsListCall) PageToken(pageToken string) *BucketsListCall { |
| c.urlParams_.Set("pageToken", pageToken) |
| return c |
| } |
| |
| // Prefix sets the optional parameter "prefix": Filter results to |
| // buckets whose names begin with this prefix. |
| func (c *BucketsListCall) Prefix(prefix string) *BucketsListCall { |
| c.urlParams_.Set("prefix", prefix) |
| return c |
| } |
| |
| // Projection sets the optional parameter "projection": Set of |
| // properties to return. Defaults to noAcl. |
| // |
| // Possible values: |
| // "full" - Include all properties. |
| // "noAcl" - Omit owner, acl and defaultObjectAcl properties. |
| func (c *BucketsListCall) Projection(projection string) *BucketsListCall { |
| c.urlParams_.Set("projection", projection) |
| return c |
| } |
| |
| // UserProject sets the optional parameter "userProject": The project to |
| // be billed for this request. |
| func (c *BucketsListCall) UserProject(userProject string) *BucketsListCall { |
| c.urlParams_.Set("userProject", userProject) |
| return c |
| } |
| |
| // Fields allows partial responses to be retrieved. See |
| // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse |
| // for more information. |
| func (c *BucketsListCall) Fields(s ...googleapi.Field) *BucketsListCall { |
| c.urlParams_.Set("fields", googleapi.CombineFields(s)) |
| return c |
| } |
| |
| // 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 (c *BucketsListCall) IfNoneMatch(entityTag string) *BucketsListCall { |
| c.ifNoneMatch_ = entityTag |
| return c |
| } |
| |
| // 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 (c *BucketsListCall) Context(ctx context.Context) *BucketsListCall { |
| c.ctx_ = ctx |
| return c |
| } |
| |
| // Header returns an http.Header that can be modified by the caller to |
| // add HTTP headers to the request. |
| func (c *BucketsListCall) Header() http.Header { |
| if c.header_ == nil { |
| c.header_ = make(http.Header) |
| } |
| return c.header_ |
| } |
| |
| func (c *BucketsListCall) doRequest(alt string) (*http.Response, error) { |
| reqHeaders := make(http.Header) |
| for k, v := range c.header_ { |
| reqHeaders[k] = v |
| } |
| reqHeaders.Set("User-Agent", c.s.userAgent()) |
| if c.ifNoneMatch_ != "" { |
| reqHeaders.Set("If-None-Match", c.ifNoneMatch_) |
| } |
| var body io.Reader = nil |
| c.urlParams_.Set("alt", alt) |
| urls := googleapi.ResolveRelative(c.s.BasePath, "b") |
| urls += "?" + c.urlParams_.Encode() |
| req, _ := http.NewRequest("GET", urls, body) |
| req.Header = reqHeaders |
| return gensupport.SendRequest(c.ctx_, c.s.client, req) |
| } |
| |
| // Do executes the "storage.buckets.list" call. |
| // Exactly one of *Buckets or error will be non-nil. Any non-2xx status |
| // code is an error. Response headers are in either |
| // *Buckets.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 (c *BucketsListCall) Do(opts ...googleapi.CallOption) (*Buckets, error) { |
| gensupport.SetOptions(c.urlParams_, opts...) |
| res, err := c.doRequest("json") |
| if res != nil && res.StatusCode == http.StatusNotModified { |
| if res.Body != nil { |
| res.Body.Close() |
| } |
| return nil, &googleapi.Error{ |
| Code: res.StatusCode, |
| Header: res.Header, |
| } |
| } |
| if err != nil { |
| return nil, err |
| } |
| defer googleapi.CloseBody(res) |
| if err := googleapi.CheckResponse(res); err != nil { |
| return nil, err |
| } |
| ret := &Buckets{ |
| ServerResponse: googleapi.ServerResponse{ |
| Header: res.Header, |
| HTTPStatusCode: res.StatusCode, |
| }, |
| } |
| target := &ret |
| if err := json.NewDecoder(res.Body).Decode(target); err != nil { |
| return nil, err |
| } |
| return ret, nil |
| // { |
| // "description": "Retrieves a list of buckets for a given project.", |
| // "httpMethod": "GET", |
| // "id": "storage.buckets.list", |
| // "parameterOrder": [ |
| // "project" |
| // ], |
| // "parameters": { |
| // "maxResults": { |
| // "default": "1000", |
| // "description": "Maximum number of buckets to return in a single response. The service will use this parameter or 1,000 items, whichever is smaller.", |
| // "format": "uint32", |
| // "location": "query", |
| // "minimum": "0", |
| // "type": "integer" |
| // }, |
| // "pageToken": { |
| // "description": "A previously-returned page token representing part of the larger set of results to view.", |
| // "location": "query", |
| // "type": "string" |
| // }, |
| // "prefix": { |
| // "description": "Filter results to buckets whose names begin with this prefix.", |
| // "location": "query", |
| // "type": "string" |
| // }, |
| // "project": { |
| // "description": "A valid API project identifier.", |
| // "location": "query", |
| // "required": true, |
| // "type": "string" |
| // }, |
| // "projection": { |
| // "description": "Set of properties to return. Defaults to noAcl.", |
| // "enum": [ |
| // "full", |
| // "noAcl" |
| // ], |
| // "enumDescriptions": [ |
| // "Include all properties.", |
| // "Omit owner, acl and defaultObjectAcl properties." |
| // ], |
| // "location": "query", |
| // "type": "string" |
| // }, |
| // "userProject": { |
| // "description": "The project to be billed for this request.", |
| // "location": "query", |
| // "type": "string" |
| // } |
| // }, |
| // "path": "b", |
| // "response": { |
| // "$ref": "Buckets" |
| // }, |
| // "scopes": [ |
| // "https://www.googleapis.com/auth/cloud-platform", |
| // "https://www.googleapis.com/auth/cloud-platform.read-only", |
| // "https://www.googleapis.com/auth/devstorage.full_control", |
| // "https://www.googleapis.com/auth/devstorage.read_only", |
| // "https://www.googleapis.com/auth/devstorage.read_write" |
| // ] |
| // } |
| |
| } |
| |
| // Pages invokes f for each page of results. |
| // A non-nil error returned from f will halt the iteration. |
| // The provided context supersedes any context provided to the Context method. |
| func (c *BucketsListCall) Pages(ctx context.Context, f func(*Buckets) error) error { |
| c.ctx_ = ctx |
| defer c.PageToken(c.urlParams_.Get("pageToken")) // reset paging to original point |
| for { |
| x, err := c.Do() |
| if err != nil { |
| return err |
| } |
| if err := f(x); err != nil { |
| return err |
| } |
| if x.NextPageToken == "" { |
| return nil |
| } |
| c.PageToken(x.NextPageToken) |
| } |
| } |
| |
| // method id "storage.buckets.patch": |
| |
| type BucketsPatchCall struct { |
| s *Service |
| bucket string |
| bucket2 *Bucket |
| urlParams_ gensupport.URLParams |
| ctx_ context.Context |
| header_ http.Header |
| } |
| |
| // Patch: Updates a bucket. Changes to the bucket will be readable |
| // immediately after writing, but configuration changes may take time to |
| // propagate. This method supports patch semantics. |
| func (r *BucketsService) Patch(bucket string, bucket2 *Bucket) *BucketsPatchCall { |
| c := &BucketsPatchCall{s: r.s, urlParams_: make(gensupport.URLParams)} |
| c.bucket = bucket |
| c.bucket2 = bucket2 |
| return c |
| } |
| |
| // IfMetagenerationMatch sets the optional parameter |
| // "ifMetagenerationMatch": Makes the return of the bucket metadata |
| // conditional on whether the bucket's current metageneration matches |
| // the given value. |
| func (c *BucketsPatchCall) IfMetagenerationMatch(ifMetagenerationMatch int64) *BucketsPatchCall { |
| c.urlParams_.Set("ifMetagenerationMatch", fmt.Sprint(ifMetagenerationMatch)) |
| return c |
| } |
| |
| // IfMetagenerationNotMatch sets the optional parameter |
| // "ifMetagenerationNotMatch": Makes the return of the bucket metadata |
| // conditional on whether the bucket's current metageneration does not |
| // match the given value. |
| func (c *BucketsPatchCall) IfMetagenerationNotMatch(ifMetagenerationNotMatch int64) *BucketsPatchCall { |
| c.urlParams_.Set("ifMetagenerationNotMatch", fmt.Sprint(ifMetagenerationNotMatch)) |
| return c |
| } |
| |
| // PredefinedAcl sets the optional parameter "predefinedAcl": Apply a |
| // predefined set of access controls to this bucket. |
| // |
| // Possible values: |
| // "authenticatedRead" - Project team owners get OWNER access, and |
| // allAuthenticatedUsers get READER access. |
| // "private" - Project team owners get OWNER access. |
| // "projectPrivate" - Project team members get access according to |
| // their roles. |
| // "publicRead" - Project team owners get OWNER access, and allUsers |
| // get READER access. |
| // "publicReadWrite" - Project team owners get OWNER access, and |
| // allUsers get WRITER access. |
| func (c *BucketsPatchCall) PredefinedAcl(predefinedAcl string) *BucketsPatchCall { |
| c.urlParams_.Set("predefinedAcl", predefinedAcl) |
| return c |
| } |
| |
| // PredefinedDefaultObjectAcl sets the optional parameter |
| // "predefinedDefaultObjectAcl": Apply a predefined set of default |
| // object access controls to this bucket. |
| // |
| // Possible values: |
| // "authenticatedRead" - Object owner gets OWNER access, and |
| // allAuthenticatedUsers get READER access. |
| // "bucketOwnerFullControl" - Object owner gets OWNER access, and |
| // project team owners get OWNER access. |
| // "bucketOwnerRead" - Object owner gets OWNER access, and project |
| // team owners get READER access. |
| // "private" - Object owner gets OWNER access. |
| // "projectPrivate" - Object owner gets OWNER access, and project team |
| // members get access according to their roles. |
| // "publicRead" - Object owner gets OWNER access, and allUsers get |
| // READER access. |
| func (c *BucketsPatchCall) PredefinedDefaultObjectAcl(predefinedDefaultObjectAcl string) *BucketsPatchCall { |
| c.urlParams_.Set("predefinedDefaultObjectAcl", predefinedDefaultObjectAcl) |
| return c |
| } |
| |
| // Projection sets the optional parameter "projection": Set of |
| // properties to return. Defaults to full. |
| // |
| // Possible values: |
| // "full" - Include all properties. |
| // "noAcl" - Omit owner, acl and defaultObjectAcl properties. |
| func (c *BucketsPatchCall) Projection(projection string) *BucketsPatchCall { |
| c.urlParams_.Set("projection", projection) |
| return c |
| } |
| |
| // UserProject sets the optional parameter "userProject": The project to |
| // be billed for this request. Required for Requester Pays buckets. |
| func (c *BucketsPatchCall) UserProject(userProject string) *BucketsPatchCall { |
| c.urlParams_.Set("userProject", userProject) |
| return c |
| } |
| |
| // Fields allows partial responses to be retrieved. See |
| // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse |
| // for more information. |
| func (c *BucketsPatchCall) Fields(s ...googleapi.Field) *BucketsPatchCall { |
| c.urlParams_.Set("fields", googleapi.CombineFields(s)) |
| return c |
| } |
| |
| // 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 (c *BucketsPatchCall) Context(ctx context.Context) *BucketsPatchCall { |
| c.ctx_ = ctx |
| return c |
| } |
| |
| // Header returns an http.Header that can be modified by the caller to |
| // add HTTP headers to the request. |
| func (c *BucketsPatchCall) Header() http.Header { |
| if c.header_ == nil { |
| c.header_ = make(http.Header) |
| } |
| return c.header_ |
| } |
| |
| func (c *BucketsPatchCall) doRequest(alt string) (*http.Response, error) { |
| reqHeaders := make(http.Header) |
| for k, v := range c.header_ { |
| reqHeaders[k] = v |
| } |
| reqHeaders.Set("User-Agent", c.s.userAgent()) |
| var body io.Reader = nil |
| body, err := googleapi.WithoutDataWrapper.JSONReader(c.bucket2) |
| if err != nil { |
| return nil, err |
| } |
| reqHeaders.Set("Content-Type", "application/json") |
| c.urlParams_.Set("alt", alt) |
| urls := googleapi.ResolveRelative(c.s.BasePath, "b/{bucket}") |
| urls += "?" + c.urlParams_.Encode() |
| req, _ := http.NewRequest("PATCH", urls, body) |
| req.Header = reqHeaders |
| googleapi.Expand(req.URL, map[string]string{ |
| "bucket": c.bucket, |
| }) |
| return gensupport.SendRequest(c.ctx_, c.s.client, req) |
| } |
| |
| // Do executes the "storage.buckets.patch" call. |
| // Exactly one of *Bucket or error will be non-nil. Any non-2xx status |
| // code is an error. Response headers are in either |
| // *Bucket.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 (c *BucketsPatchCall) Do(opts ...googleapi.CallOption) (*Bucket, error) { |
| gensupport.SetOptions(c.urlParams_, opts...) |
| res, err := c.doRequest("json") |
| if res != nil && res.StatusCode == http.StatusNotModified { |
| if res.Body != nil { |
| res.Body.Close() |
| } |
| return nil, &googleapi.Error{ |
| Code: res.StatusCode, |
| Header: res.Header, |
| } |
| } |
| if err != nil { |
| return nil, err |
| } |
| defer googleapi.CloseBody(res) |
| if err := googleapi.CheckResponse(res); err != nil { |
| return nil, err |
| } |
| ret := &Bucket{ |
| ServerResponse: googleapi.ServerResponse{ |
| Header: res.Header, |
| HTTPStatusCode: res.StatusCode, |
| }, |
| } |
| target := &ret |
| if err := json.NewDecoder(res.Body).Decode(target); err != nil { |
| return nil, err |
| } |
| return ret, nil |
| // { |
| // "description": "Updates a bucket. Changes to the bucket will be readable immediately after writing, but configuration changes may take time to propagate. This method supports patch semantics.", |
| // "httpMethod": "PATCH", |
| // "id": "storage.buckets.patch", |
| // "parameterOrder": [ |
| // "bucket" |
| // ], |
| // "parameters": { |
| // "bucket": { |
| // "description": "Name of a bucket.", |
| // "location": "path", |
| // "required": true, |
| // "type": "string" |
| // }, |
| // "ifMetagenerationMatch": { |
| // "description": "Makes the return of the bucket metadata conditional on whether the bucket's current metageneration matches the given value.", |
| // "format": "int64", |
| // "location": "query", |
| // "type": "string" |
| // }, |
| // "ifMetagenerationNotMatch": { |
| // "description": "Makes the return of the bucket metadata conditional on whether the bucket's current metageneration does not match the given value.", |
| // "format": "int64", |
| // "location": "query", |
| // "type": "string" |
| // }, |
| // "predefinedAcl": { |
| // "description": "Apply a predefined set of access controls to this bucket.", |
| // "enum": [ |
| // "authenticatedRead", |
| // "private", |
| // "projectPrivate", |
| // "publicRead", |
| // "publicReadWrite" |
| // ], |
| // "enumDescriptions": [ |
| // "Project team owners get OWNER access, and allAuthenticatedUsers get READER access.", |
| // "Project team owners get OWNER access.", |
| // "Project team members get access according to their roles.", |
| // "Project team owners get OWNER access, and allUsers get READER access.", |
| // "Project team owners get OWNER access, and allUsers get WRITER access." |
| // ], |
| // "location": "query", |
| // "type": "string" |
| // }, |
| // "predefinedDefaultObjectAcl": { |
| // "description": "Apply a predefined set of default object access controls to this bucket.", |
| // "enum": [ |
| // "authenticatedRead", |
| // "bucketOwnerFullControl", |
| // "bucketOwnerRead", |
| // "private", |
| // "projectPrivate", |
| // "publicRead" |
| // ], |
| // "enumDescriptions": [ |
| // "Object owner gets OWNER access, and allAuthenticatedUsers get READER access.", |
| // "Object owner gets OWNER access, and project team owners get OWNER access.", |
| // "Object owner gets OWNER access, and project team owners get READER access.", |
| // "Object owner gets OWNER access.", |
| // "Object owner gets OWNER access, and project team members get access according to their roles.", |
| // "Object owner gets OWNER access, and allUsers get READER access." |
| // ], |
| // "location": "query", |
| // "type": "string" |
| // }, |
| // "projection": { |
| // "description": "Set of properties to return. Defaults to full.", |
| // "enum": [ |
| // "full", |
| // "noAcl" |
| // ], |
| // "enumDescriptions": [ |
| // "Include all properties.", |
| // "Omit owner, acl and defaultObjectAcl properties." |
| // ], |
| // "location": "query", |
| // "type": "string" |
| // }, |
| // "userProject": { |
| // "description": "The project to be billed for this request. Required for Requester Pays buckets.", |
| // "location": "query", |
| // "type": "string" |
| // } |
| // }, |
| // "path": "b/{bucket}", |
| // "request": { |
| // "$ref": "Bucket" |
| // }, |
| // "response": { |
| // "$ref": "Bucket" |
| // }, |
| // "scopes": [ |
| // "https://www.googleapis.com/auth/cloud-platform", |
| // "https://www.googleapis.com/auth/devstorage.full_control" |
| // ] |
| // } |
| |
| } |
| |
| // method id "storage.buckets.setIamPolicy": |
| |
| type BucketsSetIamPolicyCall struct { |
| s *Service |
| bucket string |
| policy *Policy |
| urlParams_ gensupport.URLParams |
| ctx_ context.Context |
| header_ http.Header |
| } |
| |
| // SetIamPolicy: Updates an IAM policy for the specified bucket. |
| func (r *BucketsService) SetIamPolicy(bucket string, policy *Policy) *BucketsSetIamPolicyCall { |
| c := &BucketsSetIamPolicyCall{s: r.s, urlParams_: make(gensupport.URLParams)} |
| c.bucket = bucket |
| c.policy = policy |
| return c |
| } |
| |
| // UserProject sets the optional parameter "userProject": The project to |
| // be billed for this request. Required for Requester Pays buckets. |
| func (c *BucketsSetIamPolicyCall) UserProject(userProject string) *BucketsSetIamPolicyCall { |
| c.urlParams_.Set("userProject", userProject) |
| return c |
| } |
| |
| // Fields allows partial responses to be retrieved. See |
| // https://developers.google.com/gdata/docs/2.0/basics#PartialResponse |
| // for more information. |
| func (c *BucketsSetIamPolicyCall) Fields(s ...googleapi.Field) *BucketsSetIamPolicyCall { |
| c.urlParams_.Set("fields", googleapi.CombineFields(s)) |
| return c |
| } |
| |
| // 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 (c *BucketsSetIamPolicyCall) Context(ctx context.Context) *BucketsSetIamPolicyCall { |
| c.ctx_ = ctx |
| return c |
| } |
| |
| // Header returns an http.Header that can be modified by the caller to |
| // add HTTP headers to the request. |
| func (c *BucketsSetIamPolicyCall) Header() http.Header { |
| if c.header_ == nil { |
| c.header_ = make(http.Header) |
| } |
| return c.header_ |
| } |
| |
| func (c *BucketsSetIamPolicyCall) doRequest(alt string) (*http.Response, error) { |
| reqHeaders := make(http.Header) |
| for k, v := range c.header_ { |
| reqHeaders[k] = v |
| } |
| reqHeaders.Set("User-Agent", c.s.userAgent()) |
| var body io.Reader = nil |
| body, err := googleapi.WithoutDataWrapper.JSONReader(c.policy) |
| if err != nil { |
| return nil, err |
| } |
| reqHeaders.Set("Content-Type", "application/json") |
| c.urlParams_.Set("alt", alt) |
| urls := googleapi.ResolveRelative(c.s.BasePath, "b/{bucket}/iam") |
| urls += "?" + c.urlParams_.Encode() |
| req, _ := http.NewRequest("PUT", urls, body) |
| req.Header = reqHeaders |
| googleapi.Expand(req.URL, map[string]string{ |
| "bucket": c.bucket, |
| }) |
| return gensupport.SendRequest(c.ctx_, c.s.client, req) |
| } |
| |
| // Do executes the "storage.buckets.setIamPolicy" call. |
| // Exactly one of *Policy or error will be non-nil. Any non-2xx status |
| // code is an error. Response headers are in either |
| // *Policy.ServerResponse.Header or (if a response was returned at all) |
| // in error.(*googleapi.Error).Header. Use googleapi.IsNotModified to |
|