2015-06-23 23:05:46 +00:00
|
|
|
# Copyright 2015 Google Inc.
|
|
|
|
#
|
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
|
|
|
|
require 'date'
|
|
|
|
require 'google/apis/core/base_service'
|
|
|
|
require 'google/apis/core/json_representation'
|
|
|
|
require 'google/apis/core/hashable'
|
|
|
|
require 'google/apis/errors'
|
|
|
|
|
|
|
|
module Google
|
|
|
|
module Apis
|
|
|
|
module DriveV2
|
|
|
|
|
|
|
|
# An item with user information and settings.
|
|
|
|
class About
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Information about supported additional roles per file type. The most specific
|
|
|
|
# type takes precedence.
|
|
|
|
# Corresponds to the JSON property `additionalRoleInfo`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::About::AdditionalRoleInfo>]
|
|
|
|
attr_accessor :additional_role_info
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Whether the user can create shared drives.
|
|
|
|
# Corresponds to the JSON property `canCreateDrives`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_create_drives
|
|
|
|
alias_method :can_create_drives?, :can_create_drives
|
|
|
|
|
|
|
|
# Deprecated - use canCreateDrives instead.
|
2018-01-26 00:35:55 +00:00
|
|
|
# Corresponds to the JSON property `canCreateTeamDrives`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_create_team_drives
|
|
|
|
alias_method :can_create_team_drives?, :can_create_team_drives
|
|
|
|
|
2015-06-23 23:05:46 +00:00
|
|
|
# The domain sharing policy for the current user. Possible values are:
|
2015-12-03 01:10:07 +00:00
|
|
|
# - allowed
|
|
|
|
# - allowedWithWarning
|
|
|
|
# - incomingOnly
|
|
|
|
# - disallowed
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `domainSharingPolicy`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :domain_sharing_policy
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# A list of themes that are supported for shared drives.
|
|
|
|
# Corresponds to the JSON property `driveThemes`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::About::DriveTheme>]
|
|
|
|
attr_accessor :drive_themes
|
|
|
|
|
2015-06-23 23:05:46 +00:00
|
|
|
# The ETag of the item.
|
|
|
|
# Corresponds to the JSON property `etag`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :etag
|
|
|
|
|
|
|
|
# The allowable export formats.
|
|
|
|
# Corresponds to the JSON property `exportFormats`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::About::ExportFormat>]
|
|
|
|
attr_accessor :export_formats
|
|
|
|
|
|
|
|
# List of additional features enabled on this account.
|
|
|
|
# Corresponds to the JSON property `features`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::About::Feature>]
|
|
|
|
attr_accessor :features
|
|
|
|
|
|
|
|
# The palette of allowable folder colors as RGB hex strings.
|
|
|
|
# Corresponds to the JSON property `folderColorPalette`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :folder_color_palette
|
|
|
|
|
|
|
|
# The allowable import formats.
|
|
|
|
# Corresponds to the JSON property `importFormats`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::About::ImportFormat>]
|
|
|
|
attr_accessor :import_formats
|
|
|
|
|
|
|
|
# A boolean indicating whether the authenticated app is installed by the
|
|
|
|
# authenticated user.
|
|
|
|
# Corresponds to the JSON property `isCurrentAppInstalled`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :is_current_app_installed
|
|
|
|
alias_method :is_current_app_installed?, :is_current_app_installed
|
|
|
|
|
|
|
|
# This is always drive#about.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# The user's language or locale code, as defined by BCP 47, with some extensions
|
|
|
|
# from Unicode's LDML format (http://www.unicode.org/reports/tr35/).
|
|
|
|
# Corresponds to the JSON property `languageCode`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :language_code
|
|
|
|
|
|
|
|
# The largest change id.
|
|
|
|
# Corresponds to the JSON property `largestChangeId`
|
2017-04-03 20:18:48 +00:00
|
|
|
# @return [Fixnum]
|
2015-06-23 23:05:46 +00:00
|
|
|
attr_accessor :largest_change_id
|
|
|
|
|
|
|
|
# List of max upload sizes for each file type. The most specific type takes
|
|
|
|
# precedence.
|
|
|
|
# Corresponds to the JSON property `maxUploadSizes`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::About::MaxUploadSize>]
|
|
|
|
attr_accessor :max_upload_sizes
|
|
|
|
|
|
|
|
# The name of the current user.
|
|
|
|
# Corresponds to the JSON property `name`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :name
|
|
|
|
|
|
|
|
# The current user's ID as visible in the permissions collection.
|
|
|
|
# Corresponds to the JSON property `permissionId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :permission_id
|
|
|
|
|
|
|
|
# The amount of storage quota used by different Google services.
|
|
|
|
# Corresponds to the JSON property `quotaBytesByService`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::About::QuotaBytesByService>]
|
|
|
|
attr_accessor :quota_bytes_by_service
|
|
|
|
|
2019-10-26 00:37:02 +00:00
|
|
|
# The total number of quota bytes. This is only relevant when quotaType is
|
|
|
|
# LIMITED.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `quotaBytesTotal`
|
2017-04-03 20:18:48 +00:00
|
|
|
# @return [Fixnum]
|
2015-06-23 23:05:46 +00:00
|
|
|
attr_accessor :quota_bytes_total
|
|
|
|
|
|
|
|
# The number of quota bytes used by Google Drive.
|
|
|
|
# Corresponds to the JSON property `quotaBytesUsed`
|
2017-04-03 20:18:48 +00:00
|
|
|
# @return [Fixnum]
|
2015-06-23 23:05:46 +00:00
|
|
|
attr_accessor :quota_bytes_used
|
|
|
|
|
|
|
|
# The number of quota bytes used by all Google apps (Drive, Picasa, etc.).
|
|
|
|
# Corresponds to the JSON property `quotaBytesUsedAggregate`
|
2017-04-03 20:18:48 +00:00
|
|
|
# @return [Fixnum]
|
2015-06-23 23:05:46 +00:00
|
|
|
attr_accessor :quota_bytes_used_aggregate
|
|
|
|
|
|
|
|
# The number of quota bytes used by trashed items.
|
|
|
|
# Corresponds to the JSON property `quotaBytesUsedInTrash`
|
2017-04-03 20:18:48 +00:00
|
|
|
# @return [Fixnum]
|
2015-06-23 23:05:46 +00:00
|
|
|
attr_accessor :quota_bytes_used_in_trash
|
|
|
|
|
|
|
|
# The type of the user's storage quota. Possible values are:
|
|
|
|
# - LIMITED
|
|
|
|
# - UNLIMITED
|
|
|
|
# Corresponds to the JSON property `quotaType`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :quota_type
|
|
|
|
|
2016-08-08 20:25:38 +00:00
|
|
|
# The number of remaining change ids, limited to no more than 2500.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `remainingChangeIds`
|
2017-04-03 20:18:48 +00:00
|
|
|
# @return [Fixnum]
|
2015-06-23 23:05:46 +00:00
|
|
|
attr_accessor :remaining_change_ids
|
|
|
|
|
|
|
|
# The id of the root folder.
|
|
|
|
# Corresponds to the JSON property `rootFolderId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :root_folder_id
|
|
|
|
|
|
|
|
# A link back to this item.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Deprecated - use driveThemes instead.
|
2017-03-31 19:53:27 +00:00
|
|
|
# Corresponds to the JSON property `teamDriveThemes`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::About::TeamDriveTheme>]
|
|
|
|
attr_accessor :team_drive_themes
|
|
|
|
|
2015-12-14 22:27:57 +00:00
|
|
|
# Information about a Drive user.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `user`
|
|
|
|
# @return [Google::Apis::DriveV2::User]
|
|
|
|
attr_accessor :user
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@additional_role_info = args[:additional_role_info] if args.key?(:additional_role_info)
|
2019-04-25 00:37:02 +00:00
|
|
|
@can_create_drives = args[:can_create_drives] if args.key?(:can_create_drives)
|
2018-01-26 00:35:55 +00:00
|
|
|
@can_create_team_drives = args[:can_create_team_drives] if args.key?(:can_create_team_drives)
|
2016-01-29 22:32:46 +00:00
|
|
|
@domain_sharing_policy = args[:domain_sharing_policy] if args.key?(:domain_sharing_policy)
|
2019-04-25 00:37:02 +00:00
|
|
|
@drive_themes = args[:drive_themes] if args.key?(:drive_themes)
|
2016-01-29 22:32:46 +00:00
|
|
|
@etag = args[:etag] if args.key?(:etag)
|
|
|
|
@export_formats = args[:export_formats] if args.key?(:export_formats)
|
|
|
|
@features = args[:features] if args.key?(:features)
|
|
|
|
@folder_color_palette = args[:folder_color_palette] if args.key?(:folder_color_palette)
|
|
|
|
@import_formats = args[:import_formats] if args.key?(:import_formats)
|
|
|
|
@is_current_app_installed = args[:is_current_app_installed] if args.key?(:is_current_app_installed)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@language_code = args[:language_code] if args.key?(:language_code)
|
|
|
|
@largest_change_id = args[:largest_change_id] if args.key?(:largest_change_id)
|
|
|
|
@max_upload_sizes = args[:max_upload_sizes] if args.key?(:max_upload_sizes)
|
|
|
|
@name = args[:name] if args.key?(:name)
|
|
|
|
@permission_id = args[:permission_id] if args.key?(:permission_id)
|
|
|
|
@quota_bytes_by_service = args[:quota_bytes_by_service] if args.key?(:quota_bytes_by_service)
|
|
|
|
@quota_bytes_total = args[:quota_bytes_total] if args.key?(:quota_bytes_total)
|
|
|
|
@quota_bytes_used = args[:quota_bytes_used] if args.key?(:quota_bytes_used)
|
|
|
|
@quota_bytes_used_aggregate = args[:quota_bytes_used_aggregate] if args.key?(:quota_bytes_used_aggregate)
|
|
|
|
@quota_bytes_used_in_trash = args[:quota_bytes_used_in_trash] if args.key?(:quota_bytes_used_in_trash)
|
|
|
|
@quota_type = args[:quota_type] if args.key?(:quota_type)
|
|
|
|
@remaining_change_ids = args[:remaining_change_ids] if args.key?(:remaining_change_ids)
|
|
|
|
@root_folder_id = args[:root_folder_id] if args.key?(:root_folder_id)
|
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2017-03-31 19:53:27 +00:00
|
|
|
@team_drive_themes = args[:team_drive_themes] if args.key?(:team_drive_themes)
|
2016-01-29 22:32:46 +00:00
|
|
|
@user = args[:user] if args.key?(:user)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
class AdditionalRoleInfo
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The supported additional roles per primary role.
|
|
|
|
# Corresponds to the JSON property `roleSets`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::About::AdditionalRoleInfo::RoleSet>]
|
|
|
|
attr_accessor :role_sets
|
|
|
|
|
|
|
|
# The content type that this additional role info applies to.
|
|
|
|
# Corresponds to the JSON property `type`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :type
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@role_sets = args[:role_sets] if args.key?(:role_sets)
|
|
|
|
@type = args[:type] if args.key?(:type)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
class RoleSet
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The supported additional roles with the primary role.
|
|
|
|
# Corresponds to the JSON property `additionalRoles`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :additional_roles
|
|
|
|
|
|
|
|
# A primary permission role.
|
|
|
|
# Corresponds to the JSON property `primaryRole`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :primary_role
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@additional_roles = args[:additional_roles] if args.key?(:additional_roles)
|
|
|
|
@primary_role = args[:primary_role] if args.key?(:primary_role)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
#
|
|
|
|
class DriveTheme
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# A link to this theme's background image.
|
|
|
|
# Corresponds to the JSON property `backgroundImageLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :background_image_link
|
|
|
|
|
|
|
|
# The color of this theme as an RGB hex string.
|
|
|
|
# Corresponds to the JSON property `colorRgb`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :color_rgb
|
|
|
|
|
|
|
|
# The ID of the theme.
|
|
|
|
# Corresponds to the JSON property `id`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :id
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@background_image_link = args[:background_image_link] if args.key?(:background_image_link)
|
|
|
|
@color_rgb = args[:color_rgb] if args.key?(:color_rgb)
|
|
|
|
@id = args[:id] if args.key?(:id)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-06-23 23:05:46 +00:00
|
|
|
#
|
|
|
|
class ExportFormat
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The content type to convert from.
|
|
|
|
# Corresponds to the JSON property `source`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :source
|
|
|
|
|
|
|
|
# The possible content types to convert to.
|
|
|
|
# Corresponds to the JSON property `targets`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :targets
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@source = args[:source] if args.key?(:source)
|
|
|
|
@targets = args[:targets] if args.key?(:targets)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
class Feature
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The name of the feature.
|
|
|
|
# Corresponds to the JSON property `featureName`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :feature_name
|
|
|
|
|
|
|
|
# The request limit rate for this feature, in queries per second.
|
|
|
|
# Corresponds to the JSON property `featureRate`
|
|
|
|
# @return [Float]
|
|
|
|
attr_accessor :feature_rate
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@feature_name = args[:feature_name] if args.key?(:feature_name)
|
|
|
|
@feature_rate = args[:feature_rate] if args.key?(:feature_rate)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
class ImportFormat
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The imported file's content type to convert from.
|
|
|
|
# Corresponds to the JSON property `source`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :source
|
|
|
|
|
|
|
|
# The possible content types to convert to.
|
|
|
|
# Corresponds to the JSON property `targets`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :targets
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@source = args[:source] if args.key?(:source)
|
|
|
|
@targets = args[:targets] if args.key?(:targets)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
class MaxUploadSize
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The max upload size for this type.
|
|
|
|
# Corresponds to the JSON property `size`
|
2017-04-03 20:18:48 +00:00
|
|
|
# @return [Fixnum]
|
2015-06-23 23:05:46 +00:00
|
|
|
attr_accessor :size
|
|
|
|
|
|
|
|
# The file type.
|
|
|
|
# Corresponds to the JSON property `type`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :type
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@size = args[:size] if args.key?(:size)
|
|
|
|
@type = args[:type] if args.key?(:type)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
class QuotaBytesByService
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The storage quota bytes used by the service.
|
|
|
|
# Corresponds to the JSON property `bytesUsed`
|
2017-04-03 20:18:48 +00:00
|
|
|
# @return [Fixnum]
|
2015-06-23 23:05:46 +00:00
|
|
|
attr_accessor :bytes_used
|
|
|
|
|
|
|
|
# The service's name, e.g. DRIVE, GMAIL, or PHOTOS.
|
|
|
|
# Corresponds to the JSON property `serviceName`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :service_name
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@bytes_used = args[:bytes_used] if args.key?(:bytes_used)
|
|
|
|
@service_name = args[:service_name] if args.key?(:service_name)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
2017-03-31 19:53:27 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
class TeamDriveTheme
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2019-05-04 00:37:29 +00:00
|
|
|
# Deprecated - use driveThemes/backgroundImageLink instead.
|
2017-03-31 19:53:27 +00:00
|
|
|
# Corresponds to the JSON property `backgroundImageLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :background_image_link
|
|
|
|
|
2019-05-04 00:37:29 +00:00
|
|
|
# Deprecated - use driveThemes/colorRgb instead.
|
2017-03-31 19:53:27 +00:00
|
|
|
# Corresponds to the JSON property `colorRgb`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :color_rgb
|
|
|
|
|
2019-05-04 00:37:29 +00:00
|
|
|
# Deprecated - use driveThemes/id instead.
|
2017-03-31 19:53:27 +00:00
|
|
|
# Corresponds to the JSON property `id`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :id
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@background_image_link = args[:background_image_link] if args.key?(:background_image_link)
|
|
|
|
@color_rgb = args[:color_rgb] if args.key?(:color_rgb)
|
|
|
|
@id = args[:id] if args.key?(:id)
|
|
|
|
end
|
|
|
|
end
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# The apps resource provides a list of the apps that a user has installed, with
|
|
|
|
# information about each app's supported MIME types, file extensions, and other
|
|
|
|
# details.
|
|
|
|
class App
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Whether the app is authorized to access data on the user's Drive.
|
|
|
|
# Corresponds to the JSON property `authorized`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :authorized
|
|
|
|
alias_method :authorized?, :authorized
|
|
|
|
|
|
|
|
# The template url to create a new file with this app in a given folder. The
|
|
|
|
# template will contain `folderId` to be replaced by the folder to create the
|
|
|
|
# new file in.
|
|
|
|
# Corresponds to the JSON property `createInFolderTemplate`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :create_in_folder_template
|
|
|
|
|
|
|
|
# The url to create a new file with this app.
|
|
|
|
# Corresponds to the JSON property `createUrl`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :create_url
|
|
|
|
|
|
|
|
# Whether the app has drive-wide scope. An app with drive-wide scope can access
|
|
|
|
# all files in the user's drive.
|
|
|
|
# Corresponds to the JSON property `hasDriveWideScope`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :has_drive_wide_scope
|
|
|
|
alias_method :has_drive_wide_scope?, :has_drive_wide_scope
|
|
|
|
|
|
|
|
# The various icons for the app.
|
|
|
|
# Corresponds to the JSON property `icons`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::App::Icon>]
|
|
|
|
attr_accessor :icons
|
|
|
|
|
|
|
|
# The ID of the app.
|
|
|
|
# Corresponds to the JSON property `id`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :id
|
|
|
|
|
|
|
|
# Whether the app is installed.
|
|
|
|
# Corresponds to the JSON property `installed`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :installed
|
|
|
|
alias_method :installed?, :installed
|
|
|
|
|
|
|
|
# This is always drive#app.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# A long description of the app.
|
|
|
|
# Corresponds to the JSON property `longDescription`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :long_description
|
|
|
|
|
|
|
|
# The name of the app.
|
|
|
|
# Corresponds to the JSON property `name`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :name
|
|
|
|
|
|
|
|
# The type of object this app creates (e.g. Chart). If empty, the app name
|
|
|
|
# should be used instead.
|
|
|
|
# Corresponds to the JSON property `objectType`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :object_type
|
|
|
|
|
|
|
|
# The template url for opening files with this app. The template will contain `
|
|
|
|
# ids` and/or `exportIds` to be replaced by the actual file ids. See Open Files
|
|
|
|
# for the full documentation.
|
|
|
|
# Corresponds to the JSON property `openUrlTemplate`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :open_url_template
|
|
|
|
|
|
|
|
# The list of primary file extensions.
|
|
|
|
# Corresponds to the JSON property `primaryFileExtensions`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :primary_file_extensions
|
|
|
|
|
|
|
|
# The list of primary mime types.
|
|
|
|
# Corresponds to the JSON property `primaryMimeTypes`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :primary_mime_types
|
|
|
|
|
|
|
|
# The ID of the product listing for this app.
|
|
|
|
# Corresponds to the JSON property `productId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :product_id
|
|
|
|
|
|
|
|
# A link to the product listing for this app.
|
|
|
|
# Corresponds to the JSON property `productUrl`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :product_url
|
|
|
|
|
|
|
|
# The list of secondary file extensions.
|
|
|
|
# Corresponds to the JSON property `secondaryFileExtensions`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :secondary_file_extensions
|
|
|
|
|
|
|
|
# The list of secondary mime types.
|
|
|
|
# Corresponds to the JSON property `secondaryMimeTypes`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :secondary_mime_types
|
|
|
|
|
|
|
|
# A short description of the app.
|
|
|
|
# Corresponds to the JSON property `shortDescription`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :short_description
|
|
|
|
|
|
|
|
# Whether this app supports creating new objects.
|
|
|
|
# Corresponds to the JSON property `supportsCreate`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :supports_create
|
|
|
|
alias_method :supports_create?, :supports_create
|
|
|
|
|
feat: Automated regeneration of drive v2 client (#1396)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-05 02:23:44,731 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-drive-v2
nothing to commit, working tree clean
2020-11-05 02:23:44,760 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.7
Installing tzinfo 1.2.7
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.48.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.19.2
Installing parallel 1.19.2
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.2
Installing powerpack 0.1.2
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=drive.v2 --names-out=/workspace/api_names_out.yaml
Loading drive, version v2 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/drive.v2.json
conflict google/apis/drive_v2.rb
<e/apis/drive_v2.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/drive_v2.rb
conflict google/apis/drive_v2/service.rb
force google/apis/drive_v2/service.rb
conflict google/apis/drive_v2/classes.rb
force google/apis/drive_v2/classes.rb
identical google/apis/drive_v2/representations.rb
identical /workspace/api_names_out.yaml
2020-11-05 02:24:10,797 synthtool [DEBUG] > Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/749223e1-0b80-43a0-be68-640be14dbb8a/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-05 10:40:02 +00:00
|
|
|
# Whether this app supports importing from Docs Editors.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `supportsImport`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :supports_import
|
|
|
|
alias_method :supports_import?, :supports_import
|
|
|
|
|
|
|
|
# Whether this app supports opening more than one file.
|
|
|
|
# Corresponds to the JSON property `supportsMultiOpen`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :supports_multi_open
|
|
|
|
alias_method :supports_multi_open?, :supports_multi_open
|
|
|
|
|
|
|
|
# Whether this app supports creating new files when offline.
|
|
|
|
# Corresponds to the JSON property `supportsOfflineCreate`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :supports_offline_create
|
|
|
|
alias_method :supports_offline_create?, :supports_offline_create
|
|
|
|
|
|
|
|
# Whether the app is selected as the default handler for the types it supports.
|
|
|
|
# Corresponds to the JSON property `useByDefault`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :use_by_default
|
|
|
|
alias_method :use_by_default?, :use_by_default
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@authorized = args[:authorized] if args.key?(:authorized)
|
|
|
|
@create_in_folder_template = args[:create_in_folder_template] if args.key?(:create_in_folder_template)
|
|
|
|
@create_url = args[:create_url] if args.key?(:create_url)
|
|
|
|
@has_drive_wide_scope = args[:has_drive_wide_scope] if args.key?(:has_drive_wide_scope)
|
|
|
|
@icons = args[:icons] if args.key?(:icons)
|
|
|
|
@id = args[:id] if args.key?(:id)
|
|
|
|
@installed = args[:installed] if args.key?(:installed)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@long_description = args[:long_description] if args.key?(:long_description)
|
|
|
|
@name = args[:name] if args.key?(:name)
|
|
|
|
@object_type = args[:object_type] if args.key?(:object_type)
|
|
|
|
@open_url_template = args[:open_url_template] if args.key?(:open_url_template)
|
|
|
|
@primary_file_extensions = args[:primary_file_extensions] if args.key?(:primary_file_extensions)
|
|
|
|
@primary_mime_types = args[:primary_mime_types] if args.key?(:primary_mime_types)
|
|
|
|
@product_id = args[:product_id] if args.key?(:product_id)
|
|
|
|
@product_url = args[:product_url] if args.key?(:product_url)
|
|
|
|
@secondary_file_extensions = args[:secondary_file_extensions] if args.key?(:secondary_file_extensions)
|
|
|
|
@secondary_mime_types = args[:secondary_mime_types] if args.key?(:secondary_mime_types)
|
|
|
|
@short_description = args[:short_description] if args.key?(:short_description)
|
|
|
|
@supports_create = args[:supports_create] if args.key?(:supports_create)
|
|
|
|
@supports_import = args[:supports_import] if args.key?(:supports_import)
|
|
|
|
@supports_multi_open = args[:supports_multi_open] if args.key?(:supports_multi_open)
|
|
|
|
@supports_offline_create = args[:supports_offline_create] if args.key?(:supports_offline_create)
|
|
|
|
@use_by_default = args[:use_by_default] if args.key?(:use_by_default)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
#
|
|
|
|
class Icon
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Category of the icon. Allowed values are:
|
|
|
|
# - application - icon for the application
|
|
|
|
# - document - icon for a file associated with the app
|
|
|
|
# - documentShared - icon for a shared file associated with the app
|
|
|
|
# Corresponds to the JSON property `category`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :category
|
|
|
|
|
|
|
|
# URL for the icon.
|
|
|
|
# Corresponds to the JSON property `iconUrl`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :icon_url
|
|
|
|
|
|
|
|
# Size of the icon. Represented as the maximum of the width and height.
|
|
|
|
# Corresponds to the JSON property `size`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :size
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@category = args[:category] if args.key?(:category)
|
|
|
|
@icon_url = args[:icon_url] if args.key?(:icon_url)
|
|
|
|
@size = args[:size] if args.key?(:size)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# A list of third-party applications which the user has installed or given
|
|
|
|
# access to Google Drive.
|
|
|
|
class AppList
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# List of app IDs that the user has specified to use by default. The list is in
|
|
|
|
# reverse-priority order (lowest to highest).
|
|
|
|
# Corresponds to the JSON property `defaultAppIds`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :default_app_ids
|
|
|
|
|
|
|
|
# The ETag of the list.
|
|
|
|
# Corresponds to the JSON property `etag`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :etag
|
|
|
|
|
2017-01-13 23:04:35 +00:00
|
|
|
# The list of apps.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `items`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::App>]
|
|
|
|
attr_accessor :items
|
|
|
|
|
|
|
|
# This is always drive#appList.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# A link back to this list.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@default_app_ids = args[:default_app_ids] if args.key?(:default_app_ids)
|
|
|
|
@etag = args[:etag] if args.key?(:etag)
|
|
|
|
@items = args[:items] if args.key?(:items)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Representation of a change to a file or shared drive.
|
2015-06-23 23:05:46 +00:00
|
|
|
class Change
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# The type of the change. Possible values are file and drive.
|
|
|
|
# Corresponds to the JSON property `changeType`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :change_type
|
|
|
|
|
|
|
|
# Whether the file or shared drive has been removed from this list of changes,
|
|
|
|
# for example by deletion or loss of access.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `deleted`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :deleted
|
|
|
|
alias_method :deleted?, :deleted
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Representation of a shared drive.
|
|
|
|
# Corresponds to the JSON property `drive`
|
|
|
|
# @return [Google::Apis::DriveV2::Drive]
|
|
|
|
attr_accessor :drive
|
|
|
|
|
|
|
|
# The ID of the shared drive associated with this change.
|
|
|
|
# Corresponds to the JSON property `driveId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :drive_id
|
|
|
|
|
2015-06-23 23:05:46 +00:00
|
|
|
# The metadata for a file.
|
|
|
|
# Corresponds to the JSON property `file`
|
|
|
|
# @return [Google::Apis::DriveV2::File]
|
|
|
|
attr_accessor :file
|
|
|
|
|
|
|
|
# The ID of the file associated with this change.
|
|
|
|
# Corresponds to the JSON property `fileId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :file_id
|
|
|
|
|
|
|
|
# The ID of the change.
|
|
|
|
# Corresponds to the JSON property `id`
|
2017-04-03 20:18:48 +00:00
|
|
|
# @return [Fixnum]
|
2015-06-23 23:05:46 +00:00
|
|
|
attr_accessor :id
|
|
|
|
|
|
|
|
# This is always drive#change.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# The time of this modification.
|
|
|
|
# Corresponds to the JSON property `modificationDate`
|
|
|
|
# @return [DateTime]
|
|
|
|
attr_accessor :modification_date
|
|
|
|
|
|
|
|
# A link back to this change.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
2019-05-04 00:37:29 +00:00
|
|
|
# Deprecated: use the drive collection instead.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `teamDrive`
|
|
|
|
# @return [Google::Apis::DriveV2::TeamDrive]
|
|
|
|
attr_accessor :team_drive
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Deprecated - use driveId instead.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `teamDriveId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :team_drive_id
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Deprecated - use changeType instead.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `type`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :type
|
|
|
|
|
2015-06-23 23:05:46 +00:00
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2019-04-25 00:37:02 +00:00
|
|
|
@change_type = args[:change_type] if args.key?(:change_type)
|
2016-01-29 22:32:46 +00:00
|
|
|
@deleted = args[:deleted] if args.key?(:deleted)
|
2019-04-25 00:37:02 +00:00
|
|
|
@drive = args[:drive] if args.key?(:drive)
|
|
|
|
@drive_id = args[:drive_id] if args.key?(:drive_id)
|
2016-01-29 22:32:46 +00:00
|
|
|
@file = args[:file] if args.key?(:file)
|
|
|
|
@file_id = args[:file_id] if args.key?(:file_id)
|
|
|
|
@id = args[:id] if args.key?(:id)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@modification_date = args[:modification_date] if args.key?(:modification_date)
|
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2017-03-10 21:11:09 +00:00
|
|
|
@team_drive = args[:team_drive] if args.key?(:team_drive)
|
|
|
|
@team_drive_id = args[:team_drive_id] if args.key?(:team_drive_id)
|
|
|
|
@type = args[:type] if args.key?(:type)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# A list of changes for a user.
|
|
|
|
class ChangeList
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The ETag of the list.
|
|
|
|
# Corresponds to the JSON property `etag`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :etag
|
|
|
|
|
2017-01-13 23:04:35 +00:00
|
|
|
# The list of changes. If nextPageToken is populated, then this list may be
|
|
|
|
# incomplete and an additional page of results should be fetched.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `items`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::Change>]
|
|
|
|
attr_accessor :items
|
|
|
|
|
|
|
|
# This is always drive#changeList.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# The current largest change ID.
|
|
|
|
# Corresponds to the JSON property `largestChangeId`
|
2017-04-03 20:18:48 +00:00
|
|
|
# @return [Fixnum]
|
2015-06-23 23:05:46 +00:00
|
|
|
attr_accessor :largest_change_id
|
|
|
|
|
2017-03-10 21:11:09 +00:00
|
|
|
# The starting page token for future changes. This will be present only if the
|
|
|
|
# end of the current changes list has been reached.
|
|
|
|
# Corresponds to the JSON property `newStartPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :new_start_page_token
|
|
|
|
|
2015-06-23 23:05:46 +00:00
|
|
|
# A link to the next page of changes.
|
|
|
|
# Corresponds to the JSON property `nextLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_link
|
|
|
|
|
2017-01-13 23:04:35 +00:00
|
|
|
# The page token for the next page of changes. This will be absent if the end of
|
|
|
|
# the changes list has been reached. If the token is rejected for any reason, it
|
|
|
|
# should be discarded, and pagination should be restarted from the first page of
|
|
|
|
# results.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `nextPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_page_token
|
|
|
|
|
|
|
|
# A link back to this list.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@etag = args[:etag] if args.key?(:etag)
|
|
|
|
@items = args[:items] if args.key?(:items)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@largest_change_id = args[:largest_change_id] if args.key?(:largest_change_id)
|
2017-03-10 21:11:09 +00:00
|
|
|
@new_start_page_token = args[:new_start_page_token] if args.key?(:new_start_page_token)
|
2016-01-29 22:32:46 +00:00
|
|
|
@next_link = args[:next_link] if args.key?(:next_link)
|
|
|
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# An notification channel used to watch for resource changes.
|
|
|
|
class Channel
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The address where notifications are delivered for this channel.
|
|
|
|
# Corresponds to the JSON property `address`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :address
|
|
|
|
|
|
|
|
# Date and time of notification channel expiration, expressed as a Unix
|
|
|
|
# timestamp, in milliseconds. Optional.
|
|
|
|
# Corresponds to the JSON property `expiration`
|
2017-04-03 20:18:48 +00:00
|
|
|
# @return [Fixnum]
|
2015-06-23 23:05:46 +00:00
|
|
|
attr_accessor :expiration
|
|
|
|
|
|
|
|
# A UUID or similar unique string that identifies this channel.
|
|
|
|
# Corresponds to the JSON property `id`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :id
|
|
|
|
|
|
|
|
# Identifies this as a notification channel used to watch for changes to a
|
2019-06-28 00:38:18 +00:00
|
|
|
# resource, which is "api#channel".
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# Additional parameters controlling delivery channel behavior. Optional.
|
|
|
|
# Corresponds to the JSON property `params`
|
|
|
|
# @return [Hash<String,String>]
|
|
|
|
attr_accessor :params
|
|
|
|
|
|
|
|
# A Boolean value to indicate whether payload is wanted. Optional.
|
|
|
|
# Corresponds to the JSON property `payload`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :payload
|
|
|
|
alias_method :payload?, :payload
|
|
|
|
|
|
|
|
# An opaque ID that identifies the resource being watched on this channel.
|
|
|
|
# Stable across different API versions.
|
|
|
|
# Corresponds to the JSON property `resourceId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :resource_id
|
|
|
|
|
|
|
|
# A version-specific identifier for the watched resource.
|
|
|
|
# Corresponds to the JSON property `resourceUri`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :resource_uri
|
|
|
|
|
|
|
|
# An arbitrary string delivered to the target address with each notification
|
|
|
|
# delivered over this channel. Optional.
|
|
|
|
# Corresponds to the JSON property `token`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :token
|
|
|
|
|
|
|
|
# The type of delivery mechanism used for this channel.
|
|
|
|
# Corresponds to the JSON property `type`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :type
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@address = args[:address] if args.key?(:address)
|
|
|
|
@expiration = args[:expiration] if args.key?(:expiration)
|
|
|
|
@id = args[:id] if args.key?(:id)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@params = args[:params] if args.key?(:params)
|
|
|
|
@payload = args[:payload] if args.key?(:payload)
|
|
|
|
@resource_id = args[:resource_id] if args.key?(:resource_id)
|
|
|
|
@resource_uri = args[:resource_uri] if args.key?(:resource_uri)
|
|
|
|
@token = args[:token] if args.key?(:token)
|
|
|
|
@type = args[:type] if args.key?(:type)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# A list of children of a file.
|
|
|
|
class ChildList
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The ETag of the list.
|
|
|
|
# Corresponds to the JSON property `etag`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :etag
|
|
|
|
|
2017-01-13 23:04:35 +00:00
|
|
|
# The list of children. If nextPageToken is populated, then this list may be
|
|
|
|
# incomplete and an additional page of results should be fetched.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `items`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::ChildReference>]
|
|
|
|
attr_accessor :items
|
|
|
|
|
|
|
|
# This is always drive#childList.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# A link to the next page of children.
|
|
|
|
# Corresponds to the JSON property `nextLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_link
|
|
|
|
|
2017-01-13 23:04:35 +00:00
|
|
|
# The page token for the next page of children. This will be absent if the end
|
|
|
|
# of the children list has been reached. If the token is rejected for any reason,
|
|
|
|
# it should be discarded, and pagination should be restarted from the first
|
|
|
|
# page of results.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `nextPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_page_token
|
|
|
|
|
|
|
|
# A link back to this list.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@etag = args[:etag] if args.key?(:etag)
|
|
|
|
@items = args[:items] if args.key?(:items)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@next_link = args[:next_link] if args.key?(:next_link)
|
|
|
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# A reference to a folder's child.
|
|
|
|
class ChildReference
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# A link to the child.
|
|
|
|
# Corresponds to the JSON property `childLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :child_link
|
|
|
|
|
|
|
|
# The ID of the child.
|
|
|
|
# Corresponds to the JSON property `id`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :id
|
|
|
|
|
|
|
|
# This is always drive#childReference.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# A link back to this reference.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@child_link = args[:child_link] if args.key?(:child_link)
|
|
|
|
@id = args[:id] if args.key?(:id)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-14 22:27:57 +00:00
|
|
|
# A comment on a file in Google Drive.
|
2015-06-23 23:05:46 +00:00
|
|
|
class Comment
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# A region of the document represented as a JSON string. See anchor
|
|
|
|
# documentation for details on how to define and interpret anchor properties.
|
|
|
|
# Corresponds to the JSON property `anchor`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :anchor
|
|
|
|
|
2015-12-14 22:27:57 +00:00
|
|
|
# Information about a Drive user.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `author`
|
|
|
|
# @return [Google::Apis::DriveV2::User]
|
|
|
|
attr_accessor :author
|
|
|
|
|
|
|
|
# The ID of the comment.
|
|
|
|
# Corresponds to the JSON property `commentId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :comment_id
|
|
|
|
|
|
|
|
# The plain text content used to create this comment. This is not HTML safe and
|
|
|
|
# should only be used as a starting point to make edits to a comment's content.
|
|
|
|
# Corresponds to the JSON property `content`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :content
|
|
|
|
|
|
|
|
# The context of the file which is being commented on.
|
|
|
|
# Corresponds to the JSON property `context`
|
|
|
|
# @return [Google::Apis::DriveV2::Comment::Context]
|
|
|
|
attr_accessor :context
|
|
|
|
|
|
|
|
# The date when this comment was first created.
|
|
|
|
# Corresponds to the JSON property `createdDate`
|
|
|
|
# @return [DateTime]
|
|
|
|
attr_accessor :created_date
|
|
|
|
|
|
|
|
# Whether this comment has been deleted. If a comment has been deleted the
|
|
|
|
# content will be cleared and this will only represent a comment that once
|
|
|
|
# existed.
|
|
|
|
# Corresponds to the JSON property `deleted`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :deleted
|
|
|
|
alias_method :deleted?, :deleted
|
|
|
|
|
|
|
|
# The file which this comment is addressing.
|
|
|
|
# Corresponds to the JSON property `fileId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :file_id
|
|
|
|
|
|
|
|
# The title of the file which this comment is addressing.
|
|
|
|
# Corresponds to the JSON property `fileTitle`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :file_title
|
|
|
|
|
|
|
|
# HTML formatted content for this comment.
|
|
|
|
# Corresponds to the JSON property `htmlContent`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :html_content
|
|
|
|
|
|
|
|
# This is always drive#comment.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# The date when this comment or any of its replies were last modified.
|
|
|
|
# Corresponds to the JSON property `modifiedDate`
|
|
|
|
# @return [DateTime]
|
|
|
|
attr_accessor :modified_date
|
|
|
|
|
|
|
|
# Replies to this post.
|
|
|
|
# Corresponds to the JSON property `replies`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::CommentReply>]
|
|
|
|
attr_accessor :replies
|
|
|
|
|
|
|
|
# A link back to this comment.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
|
|
|
# The status of this comment. Status can be changed by posting a reply to a
|
|
|
|
# comment with the desired status.
|
|
|
|
# - "open" - The comment is still open.
|
|
|
|
# - "resolved" - The comment has been resolved by one of its replies.
|
|
|
|
# Corresponds to the JSON property `status`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :status
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@anchor = args[:anchor] if args.key?(:anchor)
|
|
|
|
@author = args[:author] if args.key?(:author)
|
|
|
|
@comment_id = args[:comment_id] if args.key?(:comment_id)
|
|
|
|
@content = args[:content] if args.key?(:content)
|
|
|
|
@context = args[:context] if args.key?(:context)
|
|
|
|
@created_date = args[:created_date] if args.key?(:created_date)
|
|
|
|
@deleted = args[:deleted] if args.key?(:deleted)
|
|
|
|
@file_id = args[:file_id] if args.key?(:file_id)
|
|
|
|
@file_title = args[:file_title] if args.key?(:file_title)
|
|
|
|
@html_content = args[:html_content] if args.key?(:html_content)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@modified_date = args[:modified_date] if args.key?(:modified_date)
|
|
|
|
@replies = args[:replies] if args.key?(:replies)
|
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
|
|
@status = args[:status] if args.key?(:status)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# The context of the file which is being commented on.
|
|
|
|
class Context
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The MIME type of the context snippet.
|
|
|
|
# Corresponds to the JSON property `type`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :type
|
|
|
|
|
|
|
|
# Data representation of the segment of the file being commented on. In the case
|
|
|
|
# of a text file for example, this would be the actual text that the comment is
|
|
|
|
# about.
|
|
|
|
# Corresponds to the JSON property `value`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :value
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@type = args[:type] if args.key?(:type)
|
|
|
|
@value = args[:value] if args.key?(:value)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-14 22:27:57 +00:00
|
|
|
# A list of comments on a file in Google Drive.
|
2015-06-23 23:05:46 +00:00
|
|
|
class CommentList
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2017-01-13 23:04:35 +00:00
|
|
|
# The list of comments. If nextPageToken is populated, then this list may be
|
|
|
|
# incomplete and an additional page of results should be fetched.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `items`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::Comment>]
|
|
|
|
attr_accessor :items
|
|
|
|
|
|
|
|
# This is always drive#commentList.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# A link to the next page of comments.
|
|
|
|
# Corresponds to the JSON property `nextLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_link
|
|
|
|
|
2017-01-13 23:04:35 +00:00
|
|
|
# The page token for the next page of comments. This will be absent if the end
|
|
|
|
# of the comments list has been reached. If the token is rejected for any reason,
|
|
|
|
# it should be discarded, and pagination should be restarted from the first
|
|
|
|
# page of results.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `nextPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_page_token
|
|
|
|
|
|
|
|
# A link back to this list.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@items = args[:items] if args.key?(:items)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@next_link = args[:next_link] if args.key?(:next_link)
|
|
|
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-14 22:27:57 +00:00
|
|
|
# A comment on a file in Google Drive.
|
2015-06-23 23:05:46 +00:00
|
|
|
class CommentReply
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2015-12-14 22:27:57 +00:00
|
|
|
# Information about a Drive user.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `author`
|
|
|
|
# @return [Google::Apis::DriveV2::User]
|
|
|
|
attr_accessor :author
|
|
|
|
|
|
|
|
# The plain text content used to create this reply. This is not HTML safe and
|
|
|
|
# should only be used as a starting point to make edits to a reply's content.
|
|
|
|
# This field is required on inserts if no verb is specified (resolve/reopen).
|
|
|
|
# Corresponds to the JSON property `content`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :content
|
|
|
|
|
|
|
|
# The date when this reply was first created.
|
|
|
|
# Corresponds to the JSON property `createdDate`
|
|
|
|
# @return [DateTime]
|
|
|
|
attr_accessor :created_date
|
|
|
|
|
|
|
|
# Whether this reply has been deleted. If a reply has been deleted the content
|
|
|
|
# will be cleared and this will only represent a reply that once existed.
|
|
|
|
# Corresponds to the JSON property `deleted`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :deleted
|
|
|
|
alias_method :deleted?, :deleted
|
|
|
|
|
|
|
|
# HTML formatted content for this reply.
|
|
|
|
# Corresponds to the JSON property `htmlContent`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :html_content
|
|
|
|
|
|
|
|
# This is always drive#commentReply.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# The date when this reply was last modified.
|
|
|
|
# Corresponds to the JSON property `modifiedDate`
|
|
|
|
# @return [DateTime]
|
|
|
|
attr_accessor :modified_date
|
|
|
|
|
|
|
|
# The ID of the reply.
|
|
|
|
# Corresponds to the JSON property `replyId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :reply_id
|
|
|
|
|
|
|
|
# The action this reply performed to the parent comment. When creating a new
|
|
|
|
# reply this is the action to be perform to the parent comment. Possible values
|
|
|
|
# are:
|
|
|
|
# - "resolve" - To resolve a comment.
|
|
|
|
# - "reopen" - To reopen (un-resolve) a comment.
|
|
|
|
# Corresponds to the JSON property `verb`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :verb
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@author = args[:author] if args.key?(:author)
|
|
|
|
@content = args[:content] if args.key?(:content)
|
|
|
|
@created_date = args[:created_date] if args.key?(:created_date)
|
|
|
|
@deleted = args[:deleted] if args.key?(:deleted)
|
|
|
|
@html_content = args[:html_content] if args.key?(:html_content)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@modified_date = args[:modified_date] if args.key?(:modified_date)
|
|
|
|
@reply_id = args[:reply_id] if args.key?(:reply_id)
|
|
|
|
@verb = args[:verb] if args.key?(:verb)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-14 22:27:57 +00:00
|
|
|
# A list of replies to a comment on a file in Google Drive.
|
2015-06-23 23:05:46 +00:00
|
|
|
class CommentReplyList
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2017-01-13 23:04:35 +00:00
|
|
|
# The list of replies. If nextPageToken is populated, then this list may be
|
|
|
|
# incomplete and an additional page of results should be fetched.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `items`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::CommentReply>]
|
|
|
|
attr_accessor :items
|
|
|
|
|
|
|
|
# This is always drive#commentReplyList.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# A link to the next page of replies.
|
|
|
|
# Corresponds to the JSON property `nextLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_link
|
|
|
|
|
2017-01-13 23:04:35 +00:00
|
|
|
# The page token for the next page of replies. This will be absent if the end of
|
|
|
|
# the replies list has been reached. If the token is rejected for any reason, it
|
|
|
|
# should be discarded, and pagination should be restarted from the first page of
|
|
|
|
# results.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `nextPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_page_token
|
|
|
|
|
|
|
|
# A link back to this list.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@items = args[:items] if args.key?(:items)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@next_link = args[:next_link] if args.key?(:next_link)
|
|
|
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-07-16 00:38:22 +00:00
|
|
|
# A restriction for accessing the content of the file.
|
|
|
|
class ContentRestriction
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-07-31 00:37:55 +00:00
|
|
|
# Whether the content of the file is read-only. If a file is read-only, a new
|
|
|
|
# revision of the file may not be added, comments may not be added or modified,
|
|
|
|
# and the title of the file may not be modified.
|
2020-07-16 00:38:22 +00:00
|
|
|
# Corresponds to the JSON property `readOnly`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :read_only
|
|
|
|
alias_method :read_only?, :read_only
|
|
|
|
|
|
|
|
# Reason for why the content of the file is restricted. This is only mutable on
|
|
|
|
# requests that also set readOnly=true.
|
|
|
|
# Corresponds to the JSON property `reason`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :reason
|
|
|
|
|
|
|
|
# Information about a Drive user.
|
|
|
|
# Corresponds to the JSON property `restrictingUser`
|
|
|
|
# @return [Google::Apis::DriveV2::User]
|
|
|
|
attr_accessor :restricting_user
|
|
|
|
|
|
|
|
# The time at which the content restriction was set (formatted RFC 3339
|
|
|
|
# timestamp). Only populated if readOnly is true.
|
|
|
|
# Corresponds to the JSON property `restrictionDate`
|
|
|
|
# @return [DateTime]
|
|
|
|
attr_accessor :restriction_date
|
|
|
|
|
|
|
|
# The type of the content restriction. Currently the only possible value is
|
|
|
|
# globalContentRestriction.
|
|
|
|
# Corresponds to the JSON property `type`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :type
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@read_only = args[:read_only] if args.key?(:read_only)
|
|
|
|
@reason = args[:reason] if args.key?(:reason)
|
|
|
|
@restricting_user = args[:restricting_user] if args.key?(:restricting_user)
|
|
|
|
@restriction_date = args[:restriction_date] if args.key?(:restriction_date)
|
|
|
|
@type = args[:type] if args.key?(:type)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Representation of a shared drive.
|
|
|
|
class Drive
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# An image file and cropping parameters from which a background image for this
|
|
|
|
# shared drive is set. This is a write only field; it can only be set on drive.
|
|
|
|
# drives.update requests that don't set themeId. When specified, all fields of
|
|
|
|
# the backgroundImageFile must be set.
|
|
|
|
# Corresponds to the JSON property `backgroundImageFile`
|
|
|
|
# @return [Google::Apis::DriveV2::Drive::BackgroundImageFile]
|
|
|
|
attr_accessor :background_image_file
|
|
|
|
|
|
|
|
# A short-lived link to this shared drive's background image.
|
|
|
|
# Corresponds to the JSON property `backgroundImageLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :background_image_link
|
|
|
|
|
|
|
|
# Capabilities the current user has on this shared drive.
|
|
|
|
# Corresponds to the JSON property `capabilities`
|
|
|
|
# @return [Google::Apis::DriveV2::Drive::Capabilities]
|
|
|
|
attr_accessor :capabilities
|
|
|
|
|
|
|
|
# The color of this shared drive as an RGB hex string. It can only be set on a
|
|
|
|
# drive.drives.update request that does not set themeId.
|
|
|
|
# Corresponds to the JSON property `colorRgb`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :color_rgb
|
|
|
|
|
|
|
|
# The time at which the shared drive was created (RFC 3339 date-time).
|
|
|
|
# Corresponds to the JSON property `createdDate`
|
|
|
|
# @return [DateTime]
|
|
|
|
attr_accessor :created_date
|
|
|
|
|
|
|
|
# Whether the shared drive is hidden from default view.
|
|
|
|
# Corresponds to the JSON property `hidden`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :hidden
|
|
|
|
alias_method :hidden?, :hidden
|
|
|
|
|
|
|
|
# The ID of this shared drive which is also the ID of the top level folder of
|
|
|
|
# this shared drive.
|
|
|
|
# Corresponds to the JSON property `id`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :id
|
|
|
|
|
|
|
|
# This is always drive#drive
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# The name of this shared drive.
|
|
|
|
# Corresponds to the JSON property `name`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :name
|
|
|
|
|
|
|
|
# A set of restrictions that apply to this shared drive or items inside this
|
|
|
|
# shared drive.
|
|
|
|
# Corresponds to the JSON property `restrictions`
|
|
|
|
# @return [Google::Apis::DriveV2::Drive::Restrictions]
|
|
|
|
attr_accessor :restrictions
|
|
|
|
|
|
|
|
# The ID of the theme from which the background image and color will be set. The
|
|
|
|
# set of possible driveThemes can be retrieved from a drive.about.get response.
|
|
|
|
# When not specified on a drive.drives.insert request, a random theme is chosen
|
|
|
|
# from which the background image and color are set. This is a write-only field;
|
|
|
|
# it can only be set on requests that don't set colorRgb or backgroundImageFile.
|
|
|
|
# Corresponds to the JSON property `themeId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :theme_id
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@background_image_file = args[:background_image_file] if args.key?(:background_image_file)
|
|
|
|
@background_image_link = args[:background_image_link] if args.key?(:background_image_link)
|
|
|
|
@capabilities = args[:capabilities] if args.key?(:capabilities)
|
|
|
|
@color_rgb = args[:color_rgb] if args.key?(:color_rgb)
|
|
|
|
@created_date = args[:created_date] if args.key?(:created_date)
|
|
|
|
@hidden = args[:hidden] if args.key?(:hidden)
|
|
|
|
@id = args[:id] if args.key?(:id)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@name = args[:name] if args.key?(:name)
|
|
|
|
@restrictions = args[:restrictions] if args.key?(:restrictions)
|
|
|
|
@theme_id = args[:theme_id] if args.key?(:theme_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
# An image file and cropping parameters from which a background image for this
|
|
|
|
# shared drive is set. This is a write only field; it can only be set on drive.
|
|
|
|
# drives.update requests that don't set themeId. When specified, all fields of
|
|
|
|
# the backgroundImageFile must be set.
|
|
|
|
class BackgroundImageFile
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The ID of an image file in Google Drive to use for the background image.
|
|
|
|
# Corresponds to the JSON property `id`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :id
|
|
|
|
|
|
|
|
# The width of the cropped image in the closed range of 0 to 1. This value
|
|
|
|
# represents the width of the cropped image divided by the width of the entire
|
|
|
|
# image. The height is computed by applying a width to height aspect ratio of 80
|
|
|
|
# to 9. The resulting image must be at least 1280 pixels wide and 144 pixels
|
|
|
|
# high.
|
|
|
|
# Corresponds to the JSON property `width`
|
|
|
|
# @return [Float]
|
|
|
|
attr_accessor :width
|
|
|
|
|
|
|
|
# The X coordinate of the upper left corner of the cropping area in the
|
|
|
|
# background image. This is a value in the closed range of 0 to 1. This value
|
|
|
|
# represents the horizontal distance from the left side of the entire image to
|
|
|
|
# the left side of the cropping area divided by the width of the entire image.
|
|
|
|
# Corresponds to the JSON property `xCoordinate`
|
|
|
|
# @return [Float]
|
|
|
|
attr_accessor :x_coordinate
|
|
|
|
|
|
|
|
# The Y coordinate of the upper left corner of the cropping area in the
|
|
|
|
# background image. This is a value in the closed range of 0 to 1. This value
|
|
|
|
# represents the vertical distance from the top side of the entire image to the
|
|
|
|
# top side of the cropping area divided by the height of the entire image.
|
|
|
|
# Corresponds to the JSON property `yCoordinate`
|
|
|
|
# @return [Float]
|
|
|
|
attr_accessor :y_coordinate
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@id = args[:id] if args.key?(:id)
|
|
|
|
@width = args[:width] if args.key?(:width)
|
|
|
|
@x_coordinate = args[:x_coordinate] if args.key?(:x_coordinate)
|
|
|
|
@y_coordinate = args[:y_coordinate] if args.key?(:y_coordinate)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Capabilities the current user has on this shared drive.
|
|
|
|
class Capabilities
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Whether the current user can add children to folders in this shared drive.
|
|
|
|
# Corresponds to the JSON property `canAddChildren`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_add_children
|
|
|
|
alias_method :can_add_children?, :can_add_children
|
|
|
|
|
|
|
|
# Whether the current user can change the copyRequiresWriterPermission
|
|
|
|
# restriction of this shared drive.
|
|
|
|
# Corresponds to the JSON property `canChangeCopyRequiresWriterPermissionRestriction`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_change_copy_requires_writer_permission_restriction
|
|
|
|
alias_method :can_change_copy_requires_writer_permission_restriction?, :can_change_copy_requires_writer_permission_restriction
|
|
|
|
|
|
|
|
# Whether the current user can change the domainUsersOnly restriction of this
|
|
|
|
# shared drive.
|
|
|
|
# Corresponds to the JSON property `canChangeDomainUsersOnlyRestriction`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_change_domain_users_only_restriction
|
|
|
|
alias_method :can_change_domain_users_only_restriction?, :can_change_domain_users_only_restriction
|
|
|
|
|
|
|
|
# Whether the current user can change the background of this shared drive.
|
|
|
|
# Corresponds to the JSON property `canChangeDriveBackground`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_change_drive_background
|
|
|
|
alias_method :can_change_drive_background?, :can_change_drive_background
|
|
|
|
|
|
|
|
# Whether the current user can change the driveMembersOnly restriction of this
|
|
|
|
# shared drive.
|
|
|
|
# Corresponds to the JSON property `canChangeDriveMembersOnlyRestriction`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_change_drive_members_only_restriction
|
|
|
|
alias_method :can_change_drive_members_only_restriction?, :can_change_drive_members_only_restriction
|
|
|
|
|
|
|
|
# Whether the current user can comment on files in this shared drive.
|
|
|
|
# Corresponds to the JSON property `canComment`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_comment
|
|
|
|
alias_method :can_comment?, :can_comment
|
|
|
|
|
|
|
|
# Whether the current user can copy files in this shared drive.
|
|
|
|
# Corresponds to the JSON property `canCopy`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_copy
|
|
|
|
alias_method :can_copy?, :can_copy
|
|
|
|
|
|
|
|
# Whether the current user can delete children from folders in this shared drive.
|
|
|
|
# Corresponds to the JSON property `canDeleteChildren`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_delete_children
|
|
|
|
alias_method :can_delete_children?, :can_delete_children
|
|
|
|
|
|
|
|
# Whether the current user can delete this shared drive. Attempting to delete
|
|
|
|
# the shared drive may still fail if there are untrashed items inside the shared
|
|
|
|
# drive.
|
|
|
|
# Corresponds to the JSON property `canDeleteDrive`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_delete_drive
|
|
|
|
alias_method :can_delete_drive?, :can_delete_drive
|
|
|
|
|
|
|
|
# Whether the current user can download files in this shared drive.
|
|
|
|
# Corresponds to the JSON property `canDownload`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_download
|
|
|
|
alias_method :can_download?, :can_download
|
|
|
|
|
|
|
|
# Whether the current user can edit files in this shared drive
|
|
|
|
# Corresponds to the JSON property `canEdit`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_edit
|
|
|
|
alias_method :can_edit?, :can_edit
|
|
|
|
|
|
|
|
# Whether the current user can list the children of folders in this shared drive.
|
|
|
|
# Corresponds to the JSON property `canListChildren`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_list_children
|
|
|
|
alias_method :can_list_children?, :can_list_children
|
|
|
|
|
|
|
|
# Whether the current user can add members to this shared drive or remove them
|
|
|
|
# or change their role.
|
|
|
|
# Corresponds to the JSON property `canManageMembers`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_manage_members
|
|
|
|
alias_method :can_manage_members?, :can_manage_members
|
|
|
|
|
|
|
|
# Whether the current user can read the revisions resource of files in this
|
|
|
|
# shared drive.
|
|
|
|
# Corresponds to the JSON property `canReadRevisions`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_read_revisions
|
|
|
|
alias_method :can_read_revisions?, :can_read_revisions
|
|
|
|
|
|
|
|
# Whether the current user can rename files or folders in this shared drive.
|
|
|
|
# Corresponds to the JSON property `canRename`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_rename
|
|
|
|
alias_method :can_rename?, :can_rename
|
|
|
|
|
|
|
|
# Whether the current user can rename this shared drive.
|
|
|
|
# Corresponds to the JSON property `canRenameDrive`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_rename_drive
|
|
|
|
alias_method :can_rename_drive?, :can_rename_drive
|
|
|
|
|
|
|
|
# Whether the current user can share files or folders in this shared drive.
|
|
|
|
# Corresponds to the JSON property `canShare`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_share
|
|
|
|
alias_method :can_share?, :can_share
|
|
|
|
|
|
|
|
# Whether the current user can trash children from folders in this shared drive.
|
|
|
|
# Corresponds to the JSON property `canTrashChildren`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_trash_children
|
|
|
|
alias_method :can_trash_children?, :can_trash_children
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@can_add_children = args[:can_add_children] if args.key?(:can_add_children)
|
|
|
|
@can_change_copy_requires_writer_permission_restriction = args[:can_change_copy_requires_writer_permission_restriction] if args.key?(:can_change_copy_requires_writer_permission_restriction)
|
|
|
|
@can_change_domain_users_only_restriction = args[:can_change_domain_users_only_restriction] if args.key?(:can_change_domain_users_only_restriction)
|
|
|
|
@can_change_drive_background = args[:can_change_drive_background] if args.key?(:can_change_drive_background)
|
|
|
|
@can_change_drive_members_only_restriction = args[:can_change_drive_members_only_restriction] if args.key?(:can_change_drive_members_only_restriction)
|
|
|
|
@can_comment = args[:can_comment] if args.key?(:can_comment)
|
|
|
|
@can_copy = args[:can_copy] if args.key?(:can_copy)
|
|
|
|
@can_delete_children = args[:can_delete_children] if args.key?(:can_delete_children)
|
|
|
|
@can_delete_drive = args[:can_delete_drive] if args.key?(:can_delete_drive)
|
|
|
|
@can_download = args[:can_download] if args.key?(:can_download)
|
|
|
|
@can_edit = args[:can_edit] if args.key?(:can_edit)
|
|
|
|
@can_list_children = args[:can_list_children] if args.key?(:can_list_children)
|
|
|
|
@can_manage_members = args[:can_manage_members] if args.key?(:can_manage_members)
|
|
|
|
@can_read_revisions = args[:can_read_revisions] if args.key?(:can_read_revisions)
|
|
|
|
@can_rename = args[:can_rename] if args.key?(:can_rename)
|
|
|
|
@can_rename_drive = args[:can_rename_drive] if args.key?(:can_rename_drive)
|
|
|
|
@can_share = args[:can_share] if args.key?(:can_share)
|
|
|
|
@can_trash_children = args[:can_trash_children] if args.key?(:can_trash_children)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# A set of restrictions that apply to this shared drive or items inside this
|
|
|
|
# shared drive.
|
|
|
|
class Restrictions
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Whether administrative privileges on this shared drive are required to modify
|
|
|
|
# restrictions.
|
|
|
|
# Corresponds to the JSON property `adminManagedRestrictions`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :admin_managed_restrictions
|
|
|
|
alias_method :admin_managed_restrictions?, :admin_managed_restrictions
|
|
|
|
|
|
|
|
# Whether the options to copy, print, or download files inside this shared drive,
|
|
|
|
# should be disabled for readers and commenters. When this restriction is set
|
|
|
|
# to true, it will override the similarly named field to true for any file
|
|
|
|
# inside this shared drive.
|
|
|
|
# Corresponds to the JSON property `copyRequiresWriterPermission`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :copy_requires_writer_permission
|
|
|
|
alias_method :copy_requires_writer_permission?, :copy_requires_writer_permission
|
|
|
|
|
|
|
|
# Whether access to this shared drive and items inside this shared drive is
|
|
|
|
# restricted to users of the domain to which this shared drive belongs. This
|
|
|
|
# restriction may be overridden by other sharing policies controlled outside of
|
|
|
|
# this shared drive.
|
|
|
|
# Corresponds to the JSON property `domainUsersOnly`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :domain_users_only
|
|
|
|
alias_method :domain_users_only?, :domain_users_only
|
|
|
|
|
|
|
|
# Whether access to items inside this shared drive is restricted to its members.
|
|
|
|
# Corresponds to the JSON property `driveMembersOnly`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :drive_members_only
|
|
|
|
alias_method :drive_members_only?, :drive_members_only
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@admin_managed_restrictions = args[:admin_managed_restrictions] if args.key?(:admin_managed_restrictions)
|
|
|
|
@copy_requires_writer_permission = args[:copy_requires_writer_permission] if args.key?(:copy_requires_writer_permission)
|
|
|
|
@domain_users_only = args[:domain_users_only] if args.key?(:domain_users_only)
|
|
|
|
@drive_members_only = args[:drive_members_only] if args.key?(:drive_members_only)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# A list of shared drives.
|
|
|
|
class DriveList
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The list of shared drives. If nextPageToken is populated, then this list may
|
|
|
|
# be incomplete and an additional page of results should be fetched.
|
|
|
|
# Corresponds to the JSON property `items`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::Drive>]
|
|
|
|
attr_accessor :items
|
|
|
|
|
|
|
|
# This is always drive#driveList
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# The page token for the next page of shared drives. This will be absent if the
|
|
|
|
# end of the list has been reached. If the token is rejected for any reason, it
|
|
|
|
# should be discarded, and pagination should be restarted from the first page of
|
|
|
|
# results.
|
|
|
|
# Corresponds to the JSON property `nextPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_page_token
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@items = args[:items] if args.key?(:items)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-06-23 23:05:46 +00:00
|
|
|
# The metadata for a file.
|
|
|
|
class File
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# A link for opening the file in a relevant Google editor or viewer.
|
|
|
|
# Corresponds to the JSON property `alternateLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :alternate_link
|
|
|
|
|
|
|
|
# Whether this file is in the Application Data folder.
|
|
|
|
# Corresponds to the JSON property `appDataContents`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :app_data_contents
|
|
|
|
alias_method :app_data_contents?, :app_data_contents
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Deprecated: use capabilities/canComment.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `canComment`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_comment
|
|
|
|
alias_method :can_comment?, :can_comment
|
|
|
|
|
2017-03-10 21:11:09 +00:00
|
|
|
# Deprecated: use capabilities/canReadRevisions.
|
2016-02-25 23:16:53 +00:00
|
|
|
# Corresponds to the JSON property `canReadRevisions`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_read_revisions
|
|
|
|
alias_method :can_read_revisions?, :can_read_revisions
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Capabilities the current user has on this file. Each capability corresponds to
|
2017-03-10 21:11:09 +00:00
|
|
|
# a fine-grained action that a user may take.
|
|
|
|
# Corresponds to the JSON property `capabilities`
|
|
|
|
# @return [Google::Apis::DriveV2::File::Capabilities]
|
|
|
|
attr_accessor :capabilities
|
|
|
|
|
2020-07-16 00:38:22 +00:00
|
|
|
# Restrictions for accessing the content of the file. Only populated if such a
|
|
|
|
# restriction exists.
|
|
|
|
# Corresponds to the JSON property `contentRestrictions`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::ContentRestriction>]
|
|
|
|
attr_accessor :content_restrictions
|
|
|
|
|
2018-07-11 00:36:18 +00:00
|
|
|
# Whether the options to copy, print, or download this file, should be disabled
|
|
|
|
# for readers and commenters.
|
|
|
|
# Corresponds to the JSON property `copyRequiresWriterPermission`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :copy_requires_writer_permission
|
|
|
|
alias_method :copy_requires_writer_permission?, :copy_requires_writer_permission
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Deprecated: use capabilities/canCopy.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `copyable`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :copyable
|
|
|
|
alias_method :copyable?, :copyable
|
|
|
|
|
|
|
|
# Create time for this file (formatted RFC 3339 timestamp).
|
|
|
|
# Corresponds to the JSON property `createdDate`
|
|
|
|
# @return [DateTime]
|
|
|
|
attr_accessor :created_date
|
|
|
|
|
|
|
|
# A link to open this file with the user's default app for this file. Only
|
|
|
|
# populated when the drive.apps.readonly scope is used.
|
|
|
|
# Corresponds to the JSON property `defaultOpenWithLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :default_open_with_link
|
|
|
|
|
|
|
|
# A short description of the file.
|
|
|
|
# Corresponds to the JSON property `description`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :description
|
|
|
|
|
2018-11-06 00:31:47 +00:00
|
|
|
# Short lived download URL for the file. This field is only populated for files
|
feat: Automated regeneration of drive v2 client (#1396)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-05 02:23:44,731 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-drive-v2
nothing to commit, working tree clean
2020-11-05 02:23:44,760 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.7
Installing tzinfo 1.2.7
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.48.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.19.2
Installing parallel 1.19.2
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.2
Installing powerpack 0.1.2
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=drive.v2 --names-out=/workspace/api_names_out.yaml
Loading drive, version v2 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/drive.v2.json
conflict google/apis/drive_v2.rb
<e/apis/drive_v2.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/drive_v2.rb
conflict google/apis/drive_v2/service.rb
force google/apis/drive_v2/service.rb
conflict google/apis/drive_v2/classes.rb
force google/apis/drive_v2/classes.rb
identical google/apis/drive_v2/representations.rb
identical /workspace/api_names_out.yaml
2020-11-05 02:24:10,797 synthtool [DEBUG] > Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/749223e1-0b80-43a0-be68-640be14dbb8a/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-05 10:40:02 +00:00
|
|
|
# with content stored in Google Drive; it is not populated for Docs Editors or
|
2019-04-25 00:37:02 +00:00
|
|
|
# shortcut files.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `downloadUrl`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :download_url
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# ID of the shared drive the file resides in. Only populated for items in shared
|
|
|
|
# drives.
|
|
|
|
# Corresponds to the JSON property `driveId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :drive_id
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Deprecated: use capabilities/canEdit.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `editable`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :editable
|
|
|
|
alias_method :editable?, :editable
|
|
|
|
|
|
|
|
# A link for embedding the file.
|
|
|
|
# Corresponds to the JSON property `embedLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :embed_link
|
|
|
|
|
|
|
|
# ETag of the file.
|
|
|
|
# Corresponds to the JSON property `etag`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :etag
|
|
|
|
|
|
|
|
# Whether this file has been explicitly trashed, as opposed to recursively
|
2015-06-25 23:12:26 +00:00
|
|
|
# trashed.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `explicitlyTrashed`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :explicitly_trashed
|
|
|
|
alias_method :explicitly_trashed?, :explicitly_trashed
|
|
|
|
|
feat: Automated regeneration of drive v2 client (#1396)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-05 02:23:44,731 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-drive-v2
nothing to commit, working tree clean
2020-11-05 02:23:44,760 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.7
Installing tzinfo 1.2.7
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.48.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.19.2
Installing parallel 1.19.2
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.2
Installing powerpack 0.1.2
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=drive.v2 --names-out=/workspace/api_names_out.yaml
Loading drive, version v2 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/drive.v2.json
conflict google/apis/drive_v2.rb
<e/apis/drive_v2.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/drive_v2.rb
conflict google/apis/drive_v2/service.rb
force google/apis/drive_v2/service.rb
conflict google/apis/drive_v2/classes.rb
force google/apis/drive_v2/classes.rb
identical google/apis/drive_v2/representations.rb
identical /workspace/api_names_out.yaml
2020-11-05 02:24:10,797 synthtool [DEBUG] > Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/749223e1-0b80-43a0-be68-640be14dbb8a/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-05 10:40:02 +00:00
|
|
|
# Links for exporting Docs Editors files to specific formats.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `exportLinks`
|
|
|
|
# @return [Hash<String,String>]
|
|
|
|
attr_accessor :export_links
|
|
|
|
|
2015-12-03 01:10:07 +00:00
|
|
|
# The final component of fullFileExtension with trailing text that does not
|
|
|
|
# appear to be part of the extension removed. This field is only populated for
|
feat: Automated regeneration of drive v2 client (#1396)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-05 02:23:44,731 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-drive-v2
nothing to commit, working tree clean
2020-11-05 02:23:44,760 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.7
Installing tzinfo 1.2.7
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.48.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.19.2
Installing parallel 1.19.2
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.2
Installing powerpack 0.1.2
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=drive.v2 --names-out=/workspace/api_names_out.yaml
Loading drive, version v2 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/drive.v2.json
conflict google/apis/drive_v2.rb
<e/apis/drive_v2.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/drive_v2.rb
conflict google/apis/drive_v2/service.rb
force google/apis/drive_v2/service.rb
conflict google/apis/drive_v2/classes.rb
force google/apis/drive_v2/classes.rb
identical google/apis/drive_v2/representations.rb
identical /workspace/api_names_out.yaml
2020-11-05 02:24:10,797 synthtool [DEBUG] > Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/749223e1-0b80-43a0-be68-640be14dbb8a/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-05 10:40:02 +00:00
|
|
|
# files with content stored in Google Drive; it is not populated for Docs
|
|
|
|
# Editors or shortcut files.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `fileExtension`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :file_extension
|
|
|
|
|
feat: Automated regeneration of drive v2 client (#1490)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-12 02:25:02,905 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-drive-v2
nothing to commit, working tree clean
2020-11-12 02:25:02,937 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.8
Installing tzinfo 1.2.8
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.49.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.20.0
Installing parallel 1.20.0
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.2
Installing powerpack 0.1.2
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=drive.v2 --names-out=/workspace/api_names_out.yaml
Loading drive, version v2 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/drive.v2.json
conflict google/apis/drive_v2.rb
<e/apis/drive_v2.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/drive_v2.rb
identical google/apis/drive_v2/service.rb
conflict google/apis/drive_v2/classes.rb
force google/apis/drive_v2/classes.rb
identical google/apis/drive_v2/representations.rb
identical /workspace/api_names_out.yaml
2020-11-12 02:25:29,825 synthtool [DEBUG] > Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/72ddc63c-00ad-46bf-884a-65d806817787/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-12 10:44:08 +00:00
|
|
|
# The size of the file in bytes. This field is populated for files with content
|
|
|
|
# stored in Google Drive and for files in Docs Editors; it is not populated for
|
2019-04-25 00:37:02 +00:00
|
|
|
# shortcut files.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `fileSize`
|
2017-04-03 20:18:48 +00:00
|
|
|
# @return [Fixnum]
|
2015-06-23 23:05:46 +00:00
|
|
|
attr_accessor :file_size
|
|
|
|
|
|
|
|
# Folder color as an RGB hex string if the file is a folder. The list of
|
|
|
|
# supported colors is available in the folderColorPalette field of the About
|
|
|
|
# resource. If an unsupported color is specified, it will be changed to the
|
2019-04-25 00:37:02 +00:00
|
|
|
# closest color in the palette. Not populated for items in shared drives.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `folderColorRgb`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :folder_color_rgb
|
|
|
|
|
2015-12-03 01:10:07 +00:00
|
|
|
# The full file extension; extracted from the title. May contain multiple
|
|
|
|
# concatenated extensions, such as "tar.gz". Removing an extension from the
|
|
|
|
# title does not clear this field; however, changing the extension on the title
|
|
|
|
# does update this field. This field is only populated for files with content
|
feat: Automated regeneration of drive v2 client (#1396)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-05 02:23:44,731 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-drive-v2
nothing to commit, working tree clean
2020-11-05 02:23:44,760 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.7
Installing tzinfo 1.2.7
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.48.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.19.2
Installing parallel 1.19.2
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.2
Installing powerpack 0.1.2
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=drive.v2 --names-out=/workspace/api_names_out.yaml
Loading drive, version v2 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/drive.v2.json
conflict google/apis/drive_v2.rb
<e/apis/drive_v2.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/drive_v2.rb
conflict google/apis/drive_v2/service.rb
force google/apis/drive_v2/service.rb
conflict google/apis/drive_v2/classes.rb
force google/apis/drive_v2/classes.rb
identical google/apis/drive_v2/representations.rb
identical /workspace/api_names_out.yaml
2020-11-05 02:24:10,797 synthtool [DEBUG] > Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/749223e1-0b80-43a0-be68-640be14dbb8a/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-05 10:40:02 +00:00
|
|
|
# stored in Google Drive; it is not populated for Docs Editors or shortcut files.
|
2015-12-03 01:10:07 +00:00
|
|
|
# Corresponds to the JSON property `fullFileExtension`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :full_file_extension
|
|
|
|
|
2019-09-27 00:37:41 +00:00
|
|
|
# Whether there are permissions directly on this file. This field is only
|
|
|
|
# populated for items in shared drives.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `hasAugmentedPermissions`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :has_augmented_permissions
|
|
|
|
alias_method :has_augmented_permissions?, :has_augmented_permissions
|
|
|
|
|
2017-05-26 16:44:32 +00:00
|
|
|
# Whether this file has a thumbnail. This does not indicate whether the
|
|
|
|
# requesting app has access to the thumbnail. To check access, look for the
|
|
|
|
# presence of the thumbnailLink field.
|
2017-01-13 23:04:35 +00:00
|
|
|
# Corresponds to the JSON property `hasThumbnail`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :has_thumbnail
|
|
|
|
alias_method :has_thumbnail?, :has_thumbnail
|
|
|
|
|
2015-12-03 01:10:07 +00:00
|
|
|
# The ID of the file's head revision. This field is only populated for files
|
feat: Automated regeneration of drive v2 client (#1396)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-05 02:23:44,731 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-drive-v2
nothing to commit, working tree clean
2020-11-05 02:23:44,760 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.7
Installing tzinfo 1.2.7
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.48.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.19.2
Installing parallel 1.19.2
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.2
Installing powerpack 0.1.2
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=drive.v2 --names-out=/workspace/api_names_out.yaml
Loading drive, version v2 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/drive.v2.json
conflict google/apis/drive_v2.rb
<e/apis/drive_v2.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/drive_v2.rb
conflict google/apis/drive_v2/service.rb
force google/apis/drive_v2/service.rb
conflict google/apis/drive_v2/classes.rb
force google/apis/drive_v2/classes.rb
identical google/apis/drive_v2/representations.rb
identical /workspace/api_names_out.yaml
2020-11-05 02:24:10,797 synthtool [DEBUG] > Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/749223e1-0b80-43a0-be68-640be14dbb8a/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-05 10:40:02 +00:00
|
|
|
# with content stored in Google Drive; it is not populated for Docs Editors or
|
2019-04-25 00:37:02 +00:00
|
|
|
# shortcut files.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `headRevisionId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :head_revision_id
|
|
|
|
|
|
|
|
# A link to the file's icon.
|
|
|
|
# Corresponds to the JSON property `iconLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :icon_link
|
|
|
|
|
|
|
|
# The ID of the file.
|
|
|
|
# Corresponds to the JSON property `id`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :id
|
|
|
|
|
|
|
|
# Metadata about image media. This will only be present for image types, and its
|
|
|
|
# contents will depend on what can be parsed from the image content.
|
|
|
|
# Corresponds to the JSON property `imageMediaMetadata`
|
|
|
|
# @return [Google::Apis::DriveV2::File::ImageMediaMetadata]
|
|
|
|
attr_accessor :image_media_metadata
|
|
|
|
|
|
|
|
# Indexable text attributes for the file (can only be written)
|
|
|
|
# Corresponds to the JSON property `indexableText`
|
|
|
|
# @return [Google::Apis::DriveV2::File::IndexableText]
|
|
|
|
attr_accessor :indexable_text
|
|
|
|
|
2016-04-14 18:15:27 +00:00
|
|
|
# Whether the file was created or opened by the requesting app.
|
|
|
|
# Corresponds to the JSON property `isAppAuthorized`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :is_app_authorized
|
|
|
|
alias_method :is_app_authorized?, :is_app_authorized
|
|
|
|
|
2015-06-23 23:05:46 +00:00
|
|
|
# The type of file. This is always drive#file.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# A group of labels for the file.
|
|
|
|
# Corresponds to the JSON property `labels`
|
|
|
|
# @return [Google::Apis::DriveV2::File::Labels]
|
|
|
|
attr_accessor :labels
|
|
|
|
|
2015-12-14 22:27:57 +00:00
|
|
|
# Information about a Drive user.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `lastModifyingUser`
|
|
|
|
# @return [Google::Apis::DriveV2::User]
|
|
|
|
attr_accessor :last_modifying_user
|
|
|
|
|
|
|
|
# Name of the last user to modify this file.
|
|
|
|
# Corresponds to the JSON property `lastModifyingUserName`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :last_modifying_user_name
|
|
|
|
|
|
|
|
# Last time this file was viewed by the user (formatted RFC 3339 timestamp).
|
|
|
|
# Corresponds to the JSON property `lastViewedByMeDate`
|
|
|
|
# @return [DateTime]
|
|
|
|
attr_accessor :last_viewed_by_me_date
|
|
|
|
|
2015-12-03 01:10:07 +00:00
|
|
|
# Deprecated.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `markedViewedByMeDate`
|
|
|
|
# @return [DateTime]
|
|
|
|
attr_accessor :marked_viewed_by_me_date
|
|
|
|
|
2015-12-03 01:10:07 +00:00
|
|
|
# An MD5 checksum for the content of this file. This field is only populated for
|
feat: Automated regeneration of drive v2 client (#1396)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-05 02:23:44,731 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-drive-v2
nothing to commit, working tree clean
2020-11-05 02:23:44,760 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.7
Installing tzinfo 1.2.7
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.48.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.19.2
Installing parallel 1.19.2
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.2
Installing powerpack 0.1.2
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=drive.v2 --names-out=/workspace/api_names_out.yaml
Loading drive, version v2 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/drive.v2.json
conflict google/apis/drive_v2.rb
<e/apis/drive_v2.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/drive_v2.rb
conflict google/apis/drive_v2/service.rb
force google/apis/drive_v2/service.rb
conflict google/apis/drive_v2/classes.rb
force google/apis/drive_v2/classes.rb
identical google/apis/drive_v2/representations.rb
identical /workspace/api_names_out.yaml
2020-11-05 02:24:10,797 synthtool [DEBUG] > Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/749223e1-0b80-43a0-be68-640be14dbb8a/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-05 10:40:02 +00:00
|
|
|
# files with content stored in Google Drive; it is not populated for Docs
|
|
|
|
# Editors or shortcut files.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `md5Checksum`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :md5_checksum
|
|
|
|
|
|
|
|
# The MIME type of the file. This is only mutable on update when uploading new
|
|
|
|
# content. This field can be left blank, and the mimetype will be determined
|
|
|
|
# from the uploaded content's MIME type.
|
|
|
|
# Corresponds to the JSON property `mimeType`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :mime_type
|
|
|
|
|
|
|
|
# Last time this file was modified by the user (formatted RFC 3339 timestamp).
|
|
|
|
# Note that setting modifiedDate will also update the modifiedByMe date for the
|
|
|
|
# user which set the date.
|
|
|
|
# Corresponds to the JSON property `modifiedByMeDate`
|
|
|
|
# @return [DateTime]
|
|
|
|
attr_accessor :modified_by_me_date
|
|
|
|
|
|
|
|
# Last time this file was modified by anyone (formatted RFC 3339 timestamp).
|
|
|
|
# This is only mutable on update when the setModifiedDate parameter is set.
|
|
|
|
# Corresponds to the JSON property `modifiedDate`
|
|
|
|
# @return [DateTime]
|
|
|
|
attr_accessor :modified_date
|
|
|
|
|
|
|
|
# A map of the id of each of the user's apps to a link to open this file with
|
|
|
|
# that app. Only populated when the drive.apps.readonly scope is used.
|
|
|
|
# Corresponds to the JSON property `openWithLinks`
|
|
|
|
# @return [Hash<String,String>]
|
|
|
|
attr_accessor :open_with_links
|
|
|
|
|
2016-04-14 18:15:27 +00:00
|
|
|
# The original filename of the uploaded content if available, or else the
|
|
|
|
# original value of the title field. This is only available for files with
|
2019-04-25 00:37:02 +00:00
|
|
|
# binary content in Google Drive.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `originalFilename`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :original_filename
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Whether the file is owned by the current user. Not populated for items in
|
|
|
|
# shared drives.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `ownedByMe`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :owned_by_me
|
|
|
|
alias_method :owned_by_me?, :owned_by_me
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Name(s) of the owner(s) of this file. Not populated for items in shared drives.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `ownerNames`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :owner_names
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# The owner(s) of this file. Not populated for items in shared drives.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `owners`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::User>]
|
|
|
|
attr_accessor :owners
|
|
|
|
|
|
|
|
# Collection of parent folders which contain this file.
|
2018-01-12 00:35:18 +00:00
|
|
|
# If not specified as part of an insert request, the file will be placed
|
|
|
|
# directly in the user's My Drive folder. If not specified as part of a copy
|
|
|
|
# request, the file will inherit any discoverable parents of the source file.
|
|
|
|
# Update requests can also use the addParents and removeParents parameters to
|
|
|
|
# modify the parents list.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `parents`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::ParentReference>]
|
|
|
|
attr_accessor :parents
|
|
|
|
|
2017-08-31 00:35:15 +00:00
|
|
|
# List of permission IDs for users with access to this file.
|
|
|
|
# Corresponds to the JSON property `permissionIds`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :permission_ids
|
|
|
|
|
2017-03-10 21:11:09 +00:00
|
|
|
# The list of permissions for users with access to this file. Not populated for
|
2019-04-25 00:37:02 +00:00
|
|
|
# items in shared drives.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `permissions`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::Permission>]
|
|
|
|
attr_accessor :permissions
|
|
|
|
|
|
|
|
# The list of properties.
|
|
|
|
# Corresponds to the JSON property `properties`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::Property>]
|
|
|
|
attr_accessor :properties
|
|
|
|
|
|
|
|
# The number of quota bytes used by this file.
|
|
|
|
# Corresponds to the JSON property `quotaBytesUsed`
|
2017-04-03 20:18:48 +00:00
|
|
|
# @return [Fixnum]
|
2015-06-23 23:05:46 +00:00
|
|
|
attr_accessor :quota_bytes_used
|
|
|
|
|
|
|
|
# A link back to this file.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
2017-03-10 21:11:09 +00:00
|
|
|
# Deprecated: use capabilities/canShare.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `shareable`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :shareable
|
|
|
|
alias_method :shareable?, :shareable
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Whether the file has been shared. Not populated for items in shared drives.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `shared`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :shared
|
|
|
|
alias_method :shared?, :shared
|
|
|
|
|
|
|
|
# Time at which this file was shared with the user (formatted RFC 3339 timestamp)
|
|
|
|
# .
|
|
|
|
# Corresponds to the JSON property `sharedWithMeDate`
|
|
|
|
# @return [DateTime]
|
|
|
|
attr_accessor :shared_with_me_date
|
|
|
|
|
2015-12-14 22:27:57 +00:00
|
|
|
# Information about a Drive user.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `sharingUser`
|
|
|
|
# @return [Google::Apis::DriveV2::User]
|
|
|
|
attr_accessor :sharing_user
|
|
|
|
|
2020-04-13 16:49:10 +00:00
|
|
|
# Shortcut file details. Only populated for shortcut files, which have the
|
|
|
|
# mimeType field set to application/vnd.google-apps.shortcut.
|
|
|
|
# Corresponds to the JSON property `shortcutDetails`
|
|
|
|
# @return [Google::Apis::DriveV2::File::ShortcutDetails]
|
|
|
|
attr_accessor :shortcut_details
|
|
|
|
|
2015-07-31 00:05:47 +00:00
|
|
|
# The list of spaces which contain the file. Supported values are 'drive', '
|
|
|
|
# appDataFolder' and 'photos'.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `spaces`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :spaces
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Deprecated - use driveId instead.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `teamDriveId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :team_drive_id
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# A thumbnail for the file. This will only be used if a standard thumbnail
|
|
|
|
# cannot be generated.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `thumbnail`
|
|
|
|
# @return [Google::Apis::DriveV2::File::Thumbnail]
|
|
|
|
attr_accessor :thumbnail
|
|
|
|
|
|
|
|
# A short-lived link to the file's thumbnail. Typically lasts on the order of
|
2017-01-13 23:04:35 +00:00
|
|
|
# hours. Only populated when the requesting app can access the file's content.
|
2020-10-16 00:39:01 +00:00
|
|
|
# If the file isn't shared publicly, the URL returned in Files.thumbnailLink
|
|
|
|
# must be fetched using a credentialed request.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `thumbnailLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :thumbnail_link
|
|
|
|
|
2017-01-13 23:04:35 +00:00
|
|
|
# The thumbnail version for use in thumbnail cache invalidation.
|
|
|
|
# Corresponds to the JSON property `thumbnailVersion`
|
2017-04-03 20:18:48 +00:00
|
|
|
# @return [Fixnum]
|
2017-01-13 23:04:35 +00:00
|
|
|
attr_accessor :thumbnail_version
|
|
|
|
|
2017-03-27 22:14:47 +00:00
|
|
|
# The title of this file. Note that for immutable items such as the top level
|
2019-04-25 00:37:02 +00:00
|
|
|
# folders of shared drives, My Drive root folder, and Application Data folder
|
|
|
|
# the title is constant.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `title`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :title
|
|
|
|
|
2017-03-10 21:11:09 +00:00
|
|
|
# The time that the item was trashed (formatted RFC 3339 timestamp). Only
|
2019-04-25 00:37:02 +00:00
|
|
|
# populated for items in shared drives.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `trashedDate`
|
|
|
|
# @return [DateTime]
|
|
|
|
attr_accessor :trashed_date
|
|
|
|
|
|
|
|
# Information about a Drive user.
|
|
|
|
# Corresponds to the JSON property `trashingUser`
|
|
|
|
# @return [Google::Apis::DriveV2::User]
|
|
|
|
attr_accessor :trashing_user
|
|
|
|
|
2015-06-23 23:05:46 +00:00
|
|
|
# A permission for a file.
|
|
|
|
# Corresponds to the JSON property `userPermission`
|
|
|
|
# @return [Google::Apis::DriveV2::Permission]
|
|
|
|
attr_accessor :user_permission
|
|
|
|
|
|
|
|
# A monotonically increasing version number for the file. This reflects every
|
|
|
|
# change made to the file on the server, even those not visible to the
|
|
|
|
# requesting user.
|
|
|
|
# Corresponds to the JSON property `version`
|
2017-04-03 20:18:48 +00:00
|
|
|
# @return [Fixnum]
|
2015-06-23 23:05:46 +00:00
|
|
|
attr_accessor :version
|
|
|
|
|
|
|
|
# Metadata about video media. This will only be present for video types.
|
|
|
|
# Corresponds to the JSON property `videoMediaMetadata`
|
|
|
|
# @return [Google::Apis::DriveV2::File::VideoMediaMetadata]
|
|
|
|
attr_accessor :video_media_metadata
|
|
|
|
|
|
|
|
# A link for downloading the content of the file in a browser using cookie based
|
|
|
|
# authentication. In cases where the content is shared publicly, the content can
|
|
|
|
# be downloaded without any credentials.
|
|
|
|
# Corresponds to the JSON property `webContentLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :web_content_link
|
|
|
|
|
|
|
|
# A link only available on public folders for viewing their static web assets (
|
|
|
|
# HTML, CSS, JS, etc) via Google Drive's Website Hosting.
|
|
|
|
# Corresponds to the JSON property `webViewLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :web_view_link
|
|
|
|
|
2017-03-10 21:11:09 +00:00
|
|
|
# Whether writers can share the document with other users. Not populated for
|
2019-04-25 00:37:02 +00:00
|
|
|
# items in shared drives.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `writersCanShare`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :writers_can_share
|
|
|
|
alias_method :writers_can_share?, :writers_can_share
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@alternate_link = args[:alternate_link] if args.key?(:alternate_link)
|
|
|
|
@app_data_contents = args[:app_data_contents] if args.key?(:app_data_contents)
|
|
|
|
@can_comment = args[:can_comment] if args.key?(:can_comment)
|
2016-02-25 23:16:53 +00:00
|
|
|
@can_read_revisions = args[:can_read_revisions] if args.key?(:can_read_revisions)
|
2017-03-10 21:11:09 +00:00
|
|
|
@capabilities = args[:capabilities] if args.key?(:capabilities)
|
2020-07-16 00:38:22 +00:00
|
|
|
@content_restrictions = args[:content_restrictions] if args.key?(:content_restrictions)
|
2018-07-11 00:36:18 +00:00
|
|
|
@copy_requires_writer_permission = args[:copy_requires_writer_permission] if args.key?(:copy_requires_writer_permission)
|
2016-01-29 22:32:46 +00:00
|
|
|
@copyable = args[:copyable] if args.key?(:copyable)
|
|
|
|
@created_date = args[:created_date] if args.key?(:created_date)
|
|
|
|
@default_open_with_link = args[:default_open_with_link] if args.key?(:default_open_with_link)
|
|
|
|
@description = args[:description] if args.key?(:description)
|
|
|
|
@download_url = args[:download_url] if args.key?(:download_url)
|
2019-04-25 00:37:02 +00:00
|
|
|
@drive_id = args[:drive_id] if args.key?(:drive_id)
|
2016-01-29 22:32:46 +00:00
|
|
|
@editable = args[:editable] if args.key?(:editable)
|
|
|
|
@embed_link = args[:embed_link] if args.key?(:embed_link)
|
|
|
|
@etag = args[:etag] if args.key?(:etag)
|
|
|
|
@explicitly_trashed = args[:explicitly_trashed] if args.key?(:explicitly_trashed)
|
|
|
|
@export_links = args[:export_links] if args.key?(:export_links)
|
|
|
|
@file_extension = args[:file_extension] if args.key?(:file_extension)
|
|
|
|
@file_size = args[:file_size] if args.key?(:file_size)
|
|
|
|
@folder_color_rgb = args[:folder_color_rgb] if args.key?(:folder_color_rgb)
|
|
|
|
@full_file_extension = args[:full_file_extension] if args.key?(:full_file_extension)
|
2017-03-10 21:11:09 +00:00
|
|
|
@has_augmented_permissions = args[:has_augmented_permissions] if args.key?(:has_augmented_permissions)
|
2017-01-13 23:04:35 +00:00
|
|
|
@has_thumbnail = args[:has_thumbnail] if args.key?(:has_thumbnail)
|
2016-01-29 22:32:46 +00:00
|
|
|
@head_revision_id = args[:head_revision_id] if args.key?(:head_revision_id)
|
|
|
|
@icon_link = args[:icon_link] if args.key?(:icon_link)
|
|
|
|
@id = args[:id] if args.key?(:id)
|
|
|
|
@image_media_metadata = args[:image_media_metadata] if args.key?(:image_media_metadata)
|
|
|
|
@indexable_text = args[:indexable_text] if args.key?(:indexable_text)
|
2016-04-14 18:15:27 +00:00
|
|
|
@is_app_authorized = args[:is_app_authorized] if args.key?(:is_app_authorized)
|
2016-01-29 22:32:46 +00:00
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@labels = args[:labels] if args.key?(:labels)
|
|
|
|
@last_modifying_user = args[:last_modifying_user] if args.key?(:last_modifying_user)
|
|
|
|
@last_modifying_user_name = args[:last_modifying_user_name] if args.key?(:last_modifying_user_name)
|
|
|
|
@last_viewed_by_me_date = args[:last_viewed_by_me_date] if args.key?(:last_viewed_by_me_date)
|
|
|
|
@marked_viewed_by_me_date = args[:marked_viewed_by_me_date] if args.key?(:marked_viewed_by_me_date)
|
|
|
|
@md5_checksum = args[:md5_checksum] if args.key?(:md5_checksum)
|
|
|
|
@mime_type = args[:mime_type] if args.key?(:mime_type)
|
|
|
|
@modified_by_me_date = args[:modified_by_me_date] if args.key?(:modified_by_me_date)
|
|
|
|
@modified_date = args[:modified_date] if args.key?(:modified_date)
|
|
|
|
@open_with_links = args[:open_with_links] if args.key?(:open_with_links)
|
|
|
|
@original_filename = args[:original_filename] if args.key?(:original_filename)
|
|
|
|
@owned_by_me = args[:owned_by_me] if args.key?(:owned_by_me)
|
|
|
|
@owner_names = args[:owner_names] if args.key?(:owner_names)
|
|
|
|
@owners = args[:owners] if args.key?(:owners)
|
|
|
|
@parents = args[:parents] if args.key?(:parents)
|
2017-08-31 00:35:15 +00:00
|
|
|
@permission_ids = args[:permission_ids] if args.key?(:permission_ids)
|
2016-01-29 22:32:46 +00:00
|
|
|
@permissions = args[:permissions] if args.key?(:permissions)
|
|
|
|
@properties = args[:properties] if args.key?(:properties)
|
|
|
|
@quota_bytes_used = args[:quota_bytes_used] if args.key?(:quota_bytes_used)
|
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
|
|
@shareable = args[:shareable] if args.key?(:shareable)
|
|
|
|
@shared = args[:shared] if args.key?(:shared)
|
|
|
|
@shared_with_me_date = args[:shared_with_me_date] if args.key?(:shared_with_me_date)
|
|
|
|
@sharing_user = args[:sharing_user] if args.key?(:sharing_user)
|
2020-04-13 16:49:10 +00:00
|
|
|
@shortcut_details = args[:shortcut_details] if args.key?(:shortcut_details)
|
2016-01-29 22:32:46 +00:00
|
|
|
@spaces = args[:spaces] if args.key?(:spaces)
|
2017-03-10 21:11:09 +00:00
|
|
|
@team_drive_id = args[:team_drive_id] if args.key?(:team_drive_id)
|
2016-01-29 22:32:46 +00:00
|
|
|
@thumbnail = args[:thumbnail] if args.key?(:thumbnail)
|
|
|
|
@thumbnail_link = args[:thumbnail_link] if args.key?(:thumbnail_link)
|
2017-01-13 23:04:35 +00:00
|
|
|
@thumbnail_version = args[:thumbnail_version] if args.key?(:thumbnail_version)
|
2016-01-29 22:32:46 +00:00
|
|
|
@title = args[:title] if args.key?(:title)
|
2017-03-10 21:11:09 +00:00
|
|
|
@trashed_date = args[:trashed_date] if args.key?(:trashed_date)
|
|
|
|
@trashing_user = args[:trashing_user] if args.key?(:trashing_user)
|
2016-01-29 22:32:46 +00:00
|
|
|
@user_permission = args[:user_permission] if args.key?(:user_permission)
|
|
|
|
@version = args[:version] if args.key?(:version)
|
|
|
|
@video_media_metadata = args[:video_media_metadata] if args.key?(:video_media_metadata)
|
|
|
|
@web_content_link = args[:web_content_link] if args.key?(:web_content_link)
|
|
|
|
@web_view_link = args[:web_view_link] if args.key?(:web_view_link)
|
|
|
|
@writers_can_share = args[:writers_can_share] if args.key?(:writers_can_share)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Capabilities the current user has on this file. Each capability corresponds to
|
2017-03-10 21:11:09 +00:00
|
|
|
# a fine-grained action that a user may take.
|
|
|
|
class Capabilities
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Whether the current user can add children to this folder. This is always false
|
|
|
|
# when the item is not a folder.
|
|
|
|
# Corresponds to the JSON property `canAddChildren`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_add_children
|
|
|
|
alias_method :can_add_children?, :can_add_children
|
|
|
|
|
2020-07-03 00:37:50 +00:00
|
|
|
# Whether the current user can add a folder from another drive (different shared
|
|
|
|
# drive or My Drive) to this folder. This is false when the item is not a folder.
|
|
|
|
# Only populated for items in shared drives.
|
|
|
|
# Corresponds to the JSON property `canAddFolderFromAnotherDrive`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_add_folder_from_another_drive
|
|
|
|
alias_method :can_add_folder_from_another_drive?, :can_add_folder_from_another_drive
|
|
|
|
|
2020-04-13 16:49:10 +00:00
|
|
|
# Whether the current user can add a parent for the item without removing an
|
|
|
|
# existing parent in the same request. Not populated for shared drive files.
|
|
|
|
# Corresponds to the JSON property `canAddMyDriveParent`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_add_my_drive_parent
|
|
|
|
alias_method :can_add_my_drive_parent?, :can_add_my_drive_parent
|
|
|
|
|
2018-07-11 00:36:18 +00:00
|
|
|
# Whether the current user can change the copyRequiresWriterPermission
|
|
|
|
# restriction of this file.
|
|
|
|
# Corresponds to the JSON property `canChangeCopyRequiresWriterPermission`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_change_copy_requires_writer_permission
|
|
|
|
alias_method :can_change_copy_requires_writer_permission?, :can_change_copy_requires_writer_permission
|
|
|
|
|
|
|
|
# Deprecated
|
2017-05-04 19:35:56 +00:00
|
|
|
# Corresponds to the JSON property `canChangeRestrictedDownload`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_change_restricted_download
|
|
|
|
alias_method :can_change_restricted_download?, :can_change_restricted_download
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Whether the current user can comment on this file.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canComment`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_comment
|
|
|
|
alias_method :can_comment?, :can_comment
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Whether the current user can copy this file. For an item in a shared drive,
|
|
|
|
# whether the current user can copy non-folder descendants of this item, or this
|
|
|
|
# item itself if it is not a folder.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canCopy`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_copy
|
|
|
|
alias_method :can_copy?, :can_copy
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Whether the current user can delete this file.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canDelete`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_delete
|
|
|
|
alias_method :can_delete?, :can_delete
|
|
|
|
|
2018-08-24 00:36:27 +00:00
|
|
|
# Whether the current user can delete children of this folder. This is false
|
2019-04-25 00:37:02 +00:00
|
|
|
# when the item is not a folder. Only populated for items in shared drives.
|
2018-08-24 00:36:27 +00:00
|
|
|
# Corresponds to the JSON property `canDeleteChildren`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_delete_children
|
|
|
|
alias_method :can_delete_children?, :can_delete_children
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Whether the current user can download this file.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canDownload`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_download
|
|
|
|
alias_method :can_download?, :can_download
|
|
|
|
|
2019-09-10 21:25:47 +00:00
|
|
|
# Whether the current user can edit this file. Other factors may limit the type
|
|
|
|
# of changes a user can make to a file. For example, see
|
|
|
|
# canChangeCopyRequiresWriterPermission or canModifyContent.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canEdit`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_edit
|
|
|
|
alias_method :can_edit?, :can_edit
|
|
|
|
|
|
|
|
# Whether the current user can list the children of this folder. This is always
|
|
|
|
# false when the item is not a folder.
|
|
|
|
# Corresponds to the JSON property `canListChildren`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_list_children
|
|
|
|
alias_method :can_list_children?, :can_list_children
|
|
|
|
|
2019-09-10 21:25:47 +00:00
|
|
|
# Whether the current user can modify the content of this file.
|
|
|
|
# Corresponds to the JSON property `canModifyContent`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_modify_content
|
|
|
|
alias_method :can_modify_content?, :can_modify_content
|
|
|
|
|
2020-07-16 00:38:22 +00:00
|
|
|
# Whether the current user can modify restrictions on content of this file.
|
|
|
|
# Corresponds to the JSON property `canModifyContentRestriction`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_modify_content_restriction
|
|
|
|
alias_method :can_modify_content_restriction?, :can_modify_content_restriction
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Whether the current user can move children of this folder outside of the
|
|
|
|
# shared drive. This is false when the item is not a folder. Only populated for
|
|
|
|
# items in shared drives.
|
|
|
|
# Corresponds to the JSON property `canMoveChildrenOutOfDrive`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_move_children_out_of_drive
|
|
|
|
alias_method :can_move_children_out_of_drive?, :can_move_children_out_of_drive
|
|
|
|
|
|
|
|
# Deprecated - use canMoveChildrenOutOfDrive instead.
|
2018-08-24 00:36:27 +00:00
|
|
|
# Corresponds to the JSON property `canMoveChildrenOutOfTeamDrive`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_move_children_out_of_team_drive
|
|
|
|
alias_method :can_move_children_out_of_team_drive?, :can_move_children_out_of_team_drive
|
|
|
|
|
2020-08-21 00:38:20 +00:00
|
|
|
# Whether the current user can move children of this folder within this drive.
|
|
|
|
# This is false when the item is not a folder. Note that a request to move the
|
|
|
|
# child may still fail depending on the current user's access to the child and
|
|
|
|
# to the destination folder.
|
2019-04-25 00:37:02 +00:00
|
|
|
# Corresponds to the JSON property `canMoveChildrenWithinDrive`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_move_children_within_drive
|
|
|
|
alias_method :can_move_children_within_drive?, :can_move_children_within_drive
|
|
|
|
|
|
|
|
# Deprecated - use canMoveChildrenWithinDrive instead.
|
2018-08-24 00:36:27 +00:00
|
|
|
# Corresponds to the JSON property `canMoveChildrenWithinTeamDrive`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_move_children_within_team_drive
|
|
|
|
alias_method :can_move_children_within_team_drive?, :can_move_children_within_team_drive
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Deprecated - use canMoveItemOutOfDrive instead.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canMoveItemIntoTeamDrive`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_move_item_into_team_drive
|
|
|
|
alias_method :can_move_item_into_team_drive?, :can_move_item_into_team_drive
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Whether the current user can move this item outside of this drive by changing
|
|
|
|
# its parent. Note that a request to change the parent of the item may still
|
|
|
|
# fail depending on the new parent that is being added.
|
|
|
|
# Corresponds to the JSON property `canMoveItemOutOfDrive`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_move_item_out_of_drive
|
|
|
|
alias_method :can_move_item_out_of_drive?, :can_move_item_out_of_drive
|
|
|
|
|
|
|
|
# Deprecated - use canMoveItemOutOfDrive instead.
|
2018-08-24 00:36:27 +00:00
|
|
|
# Corresponds to the JSON property `canMoveItemOutOfTeamDrive`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_move_item_out_of_team_drive
|
|
|
|
alias_method :can_move_item_out_of_team_drive?, :can_move_item_out_of_team_drive
|
|
|
|
|
2020-08-21 00:38:20 +00:00
|
|
|
# Whether the current user can move this item within this drive. Note that a
|
|
|
|
# request to change the parent of the item may still fail depending on the new
|
|
|
|
# parent that is being added and the parent that is being removed.
|
2019-04-25 00:37:02 +00:00
|
|
|
# Corresponds to the JSON property `canMoveItemWithinDrive`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_move_item_within_drive
|
|
|
|
alias_method :can_move_item_within_drive?, :can_move_item_within_drive
|
|
|
|
|
|
|
|
# Deprecated - use canMoveItemWithinDrive instead.
|
2018-08-24 00:36:27 +00:00
|
|
|
# Corresponds to the JSON property `canMoveItemWithinTeamDrive`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_move_item_within_team_drive
|
|
|
|
alias_method :can_move_item_within_team_drive?, :can_move_item_within_team_drive
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Deprecated - use canMoveItemWithinDrive or canMoveItemOutOfDrive instead.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canMoveTeamDriveItem`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_move_team_drive_item
|
|
|
|
alias_method :can_move_team_drive_item?, :can_move_team_drive_item
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Whether the current user can read the shared drive to which this file belongs.
|
|
|
|
# Only populated for items in shared drives.
|
|
|
|
# Corresponds to the JSON property `canReadDrive`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_read_drive
|
|
|
|
alias_method :can_read_drive?, :can_read_drive
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Whether the current user can read the revisions resource of this file. For a
|
2019-04-25 00:37:02 +00:00
|
|
|
# shared drive item, whether revisions of non-folder descendants of this item,
|
|
|
|
# or this item itself if it is not a folder, can be read.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canReadRevisions`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_read_revisions
|
|
|
|
alias_method :can_read_revisions?, :can_read_revisions
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Deprecated - use canReadDrive instead.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canReadTeamDrive`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_read_team_drive
|
|
|
|
alias_method :can_read_team_drive?, :can_read_team_drive
|
|
|
|
|
|
|
|
# Whether the current user can remove children from this folder. This is always
|
2019-04-25 00:37:02 +00:00
|
|
|
# false when the item is not a folder. For a folder in a shared drive, use
|
2018-08-24 00:36:27 +00:00
|
|
|
# canDeleteChildren or canTrashChildren instead.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canRemoveChildren`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_remove_children
|
|
|
|
alias_method :can_remove_children?, :can_remove_children
|
|
|
|
|
2020-04-13 16:49:10 +00:00
|
|
|
# Whether the current user can remove a parent from the item without adding
|
|
|
|
# another parent in the same request. Not populated for shared drive files.
|
|
|
|
# Corresponds to the JSON property `canRemoveMyDriveParent`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_remove_my_drive_parent
|
|
|
|
alias_method :can_remove_my_drive_parent?, :can_remove_my_drive_parent
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Whether the current user can rename this file.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canRename`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_rename
|
|
|
|
alias_method :can_rename?, :can_rename
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Whether the current user can modify the sharing settings for this file.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canShare`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_share
|
|
|
|
alias_method :can_share?, :can_share
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Whether the current user can move this file to trash.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canTrash`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_trash
|
|
|
|
alias_method :can_trash?, :can_trash
|
|
|
|
|
2018-08-24 00:36:27 +00:00
|
|
|
# Whether the current user can trash children of this folder. This is false when
|
2019-04-25 00:37:02 +00:00
|
|
|
# the item is not a folder. Only populated for items in shared drives.
|
2018-08-24 00:36:27 +00:00
|
|
|
# Corresponds to the JSON property `canTrashChildren`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_trash_children
|
|
|
|
alias_method :can_trash_children?, :can_trash_children
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Whether the current user can restore this file from trash.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canUntrash`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_untrash
|
|
|
|
alias_method :can_untrash?, :can_untrash
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@can_add_children = args[:can_add_children] if args.key?(:can_add_children)
|
2020-07-03 00:37:50 +00:00
|
|
|
@can_add_folder_from_another_drive = args[:can_add_folder_from_another_drive] if args.key?(:can_add_folder_from_another_drive)
|
2020-04-13 16:49:10 +00:00
|
|
|
@can_add_my_drive_parent = args[:can_add_my_drive_parent] if args.key?(:can_add_my_drive_parent)
|
2018-07-11 00:36:18 +00:00
|
|
|
@can_change_copy_requires_writer_permission = args[:can_change_copy_requires_writer_permission] if args.key?(:can_change_copy_requires_writer_permission)
|
2017-05-04 19:35:56 +00:00
|
|
|
@can_change_restricted_download = args[:can_change_restricted_download] if args.key?(:can_change_restricted_download)
|
2017-03-10 21:11:09 +00:00
|
|
|
@can_comment = args[:can_comment] if args.key?(:can_comment)
|
|
|
|
@can_copy = args[:can_copy] if args.key?(:can_copy)
|
|
|
|
@can_delete = args[:can_delete] if args.key?(:can_delete)
|
2018-08-24 00:36:27 +00:00
|
|
|
@can_delete_children = args[:can_delete_children] if args.key?(:can_delete_children)
|
2017-03-10 21:11:09 +00:00
|
|
|
@can_download = args[:can_download] if args.key?(:can_download)
|
|
|
|
@can_edit = args[:can_edit] if args.key?(:can_edit)
|
|
|
|
@can_list_children = args[:can_list_children] if args.key?(:can_list_children)
|
2019-09-10 21:25:47 +00:00
|
|
|
@can_modify_content = args[:can_modify_content] if args.key?(:can_modify_content)
|
2020-07-16 00:38:22 +00:00
|
|
|
@can_modify_content_restriction = args[:can_modify_content_restriction] if args.key?(:can_modify_content_restriction)
|
2019-04-25 00:37:02 +00:00
|
|
|
@can_move_children_out_of_drive = args[:can_move_children_out_of_drive] if args.key?(:can_move_children_out_of_drive)
|
2018-08-24 00:36:27 +00:00
|
|
|
@can_move_children_out_of_team_drive = args[:can_move_children_out_of_team_drive] if args.key?(:can_move_children_out_of_team_drive)
|
2019-04-25 00:37:02 +00:00
|
|
|
@can_move_children_within_drive = args[:can_move_children_within_drive] if args.key?(:can_move_children_within_drive)
|
2018-08-24 00:36:27 +00:00
|
|
|
@can_move_children_within_team_drive = args[:can_move_children_within_team_drive] if args.key?(:can_move_children_within_team_drive)
|
2017-03-10 21:11:09 +00:00
|
|
|
@can_move_item_into_team_drive = args[:can_move_item_into_team_drive] if args.key?(:can_move_item_into_team_drive)
|
2019-04-25 00:37:02 +00:00
|
|
|
@can_move_item_out_of_drive = args[:can_move_item_out_of_drive] if args.key?(:can_move_item_out_of_drive)
|
2018-08-24 00:36:27 +00:00
|
|
|
@can_move_item_out_of_team_drive = args[:can_move_item_out_of_team_drive] if args.key?(:can_move_item_out_of_team_drive)
|
2019-04-25 00:37:02 +00:00
|
|
|
@can_move_item_within_drive = args[:can_move_item_within_drive] if args.key?(:can_move_item_within_drive)
|
2018-08-24 00:36:27 +00:00
|
|
|
@can_move_item_within_team_drive = args[:can_move_item_within_team_drive] if args.key?(:can_move_item_within_team_drive)
|
2017-03-10 21:11:09 +00:00
|
|
|
@can_move_team_drive_item = args[:can_move_team_drive_item] if args.key?(:can_move_team_drive_item)
|
2019-04-25 00:37:02 +00:00
|
|
|
@can_read_drive = args[:can_read_drive] if args.key?(:can_read_drive)
|
2017-03-10 21:11:09 +00:00
|
|
|
@can_read_revisions = args[:can_read_revisions] if args.key?(:can_read_revisions)
|
|
|
|
@can_read_team_drive = args[:can_read_team_drive] if args.key?(:can_read_team_drive)
|
|
|
|
@can_remove_children = args[:can_remove_children] if args.key?(:can_remove_children)
|
2020-04-13 16:49:10 +00:00
|
|
|
@can_remove_my_drive_parent = args[:can_remove_my_drive_parent] if args.key?(:can_remove_my_drive_parent)
|
2017-03-10 21:11:09 +00:00
|
|
|
@can_rename = args[:can_rename] if args.key?(:can_rename)
|
|
|
|
@can_share = args[:can_share] if args.key?(:can_share)
|
|
|
|
@can_trash = args[:can_trash] if args.key?(:can_trash)
|
2018-08-24 00:36:27 +00:00
|
|
|
@can_trash_children = args[:can_trash_children] if args.key?(:can_trash_children)
|
2017-03-10 21:11:09 +00:00
|
|
|
@can_untrash = args[:can_untrash] if args.key?(:can_untrash)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-06-23 23:05:46 +00:00
|
|
|
# Metadata about image media. This will only be present for image types, and its
|
|
|
|
# contents will depend on what can be parsed from the image content.
|
|
|
|
class ImageMediaMetadata
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The aperture used to create the photo (f-number).
|
|
|
|
# Corresponds to the JSON property `aperture`
|
|
|
|
# @return [Float]
|
|
|
|
attr_accessor :aperture
|
|
|
|
|
|
|
|
# The make of the camera used to create the photo.
|
|
|
|
# Corresponds to the JSON property `cameraMake`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :camera_make
|
|
|
|
|
|
|
|
# The model of the camera used to create the photo.
|
|
|
|
# Corresponds to the JSON property `cameraModel`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :camera_model
|
|
|
|
|
|
|
|
# The color space of the photo.
|
|
|
|
# Corresponds to the JSON property `colorSpace`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :color_space
|
|
|
|
|
|
|
|
# The date and time the photo was taken (EXIF format timestamp).
|
|
|
|
# Corresponds to the JSON property `date`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :date
|
|
|
|
|
|
|
|
# The exposure bias of the photo (APEX value).
|
|
|
|
# Corresponds to the JSON property `exposureBias`
|
|
|
|
# @return [Float]
|
|
|
|
attr_accessor :exposure_bias
|
|
|
|
|
|
|
|
# The exposure mode used to create the photo.
|
|
|
|
# Corresponds to the JSON property `exposureMode`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :exposure_mode
|
|
|
|
|
|
|
|
# The length of the exposure, in seconds.
|
|
|
|
# Corresponds to the JSON property `exposureTime`
|
|
|
|
# @return [Float]
|
|
|
|
attr_accessor :exposure_time
|
|
|
|
|
|
|
|
# Whether a flash was used to create the photo.
|
|
|
|
# Corresponds to the JSON property `flashUsed`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :flash_used
|
|
|
|
alias_method :flash_used?, :flash_used
|
|
|
|
|
|
|
|
# The focal length used to create the photo, in millimeters.
|
|
|
|
# Corresponds to the JSON property `focalLength`
|
|
|
|
# @return [Float]
|
|
|
|
attr_accessor :focal_length
|
|
|
|
|
|
|
|
# The height of the image in pixels.
|
|
|
|
# Corresponds to the JSON property `height`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :height
|
|
|
|
|
|
|
|
# The ISO speed used to create the photo.
|
|
|
|
# Corresponds to the JSON property `isoSpeed`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :iso_speed
|
|
|
|
|
|
|
|
# The lens used to create the photo.
|
|
|
|
# Corresponds to the JSON property `lens`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :lens
|
|
|
|
|
|
|
|
# Geographic location information stored in the image.
|
|
|
|
# Corresponds to the JSON property `location`
|
|
|
|
# @return [Google::Apis::DriveV2::File::ImageMediaMetadata::Location]
|
|
|
|
attr_accessor :location
|
|
|
|
|
|
|
|
# The smallest f-number of the lens at the focal length used to create the photo
|
|
|
|
# (APEX value).
|
|
|
|
# Corresponds to the JSON property `maxApertureValue`
|
|
|
|
# @return [Float]
|
|
|
|
attr_accessor :max_aperture_value
|
|
|
|
|
|
|
|
# The metering mode used to create the photo.
|
|
|
|
# Corresponds to the JSON property `meteringMode`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :metering_mode
|
|
|
|
|
2020-04-13 16:49:10 +00:00
|
|
|
# The number of clockwise 90 degree rotations applied from the image's original
|
|
|
|
# orientation.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `rotation`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :rotation
|
|
|
|
|
|
|
|
# The type of sensor used to create the photo.
|
|
|
|
# Corresponds to the JSON property `sensor`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :sensor
|
|
|
|
|
|
|
|
# The distance to the subject of the photo, in meters.
|
|
|
|
# Corresponds to the JSON property `subjectDistance`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :subject_distance
|
|
|
|
|
|
|
|
# The white balance mode used to create the photo.
|
|
|
|
# Corresponds to the JSON property `whiteBalance`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :white_balance
|
|
|
|
|
|
|
|
# The width of the image in pixels.
|
|
|
|
# Corresponds to the JSON property `width`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :width
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@aperture = args[:aperture] if args.key?(:aperture)
|
|
|
|
@camera_make = args[:camera_make] if args.key?(:camera_make)
|
|
|
|
@camera_model = args[:camera_model] if args.key?(:camera_model)
|
|
|
|
@color_space = args[:color_space] if args.key?(:color_space)
|
|
|
|
@date = args[:date] if args.key?(:date)
|
|
|
|
@exposure_bias = args[:exposure_bias] if args.key?(:exposure_bias)
|
|
|
|
@exposure_mode = args[:exposure_mode] if args.key?(:exposure_mode)
|
|
|
|
@exposure_time = args[:exposure_time] if args.key?(:exposure_time)
|
|
|
|
@flash_used = args[:flash_used] if args.key?(:flash_used)
|
|
|
|
@focal_length = args[:focal_length] if args.key?(:focal_length)
|
|
|
|
@height = args[:height] if args.key?(:height)
|
|
|
|
@iso_speed = args[:iso_speed] if args.key?(:iso_speed)
|
|
|
|
@lens = args[:lens] if args.key?(:lens)
|
|
|
|
@location = args[:location] if args.key?(:location)
|
|
|
|
@max_aperture_value = args[:max_aperture_value] if args.key?(:max_aperture_value)
|
|
|
|
@metering_mode = args[:metering_mode] if args.key?(:metering_mode)
|
|
|
|
@rotation = args[:rotation] if args.key?(:rotation)
|
|
|
|
@sensor = args[:sensor] if args.key?(:sensor)
|
|
|
|
@subject_distance = args[:subject_distance] if args.key?(:subject_distance)
|
|
|
|
@white_balance = args[:white_balance] if args.key?(:white_balance)
|
|
|
|
@width = args[:width] if args.key?(:width)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Geographic location information stored in the image.
|
|
|
|
class Location
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The altitude stored in the image.
|
|
|
|
# Corresponds to the JSON property `altitude`
|
|
|
|
# @return [Float]
|
|
|
|
attr_accessor :altitude
|
|
|
|
|
|
|
|
# The latitude stored in the image.
|
|
|
|
# Corresponds to the JSON property `latitude`
|
|
|
|
# @return [Float]
|
|
|
|
attr_accessor :latitude
|
|
|
|
|
|
|
|
# The longitude stored in the image.
|
|
|
|
# Corresponds to the JSON property `longitude`
|
|
|
|
# @return [Float]
|
|
|
|
attr_accessor :longitude
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@altitude = args[:altitude] if args.key?(:altitude)
|
|
|
|
@latitude = args[:latitude] if args.key?(:latitude)
|
|
|
|
@longitude = args[:longitude] if args.key?(:longitude)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Indexable text attributes for the file (can only be written)
|
|
|
|
class IndexableText
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The text to be indexed for this file.
|
|
|
|
# Corresponds to the JSON property `text`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :text
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@text = args[:text] if args.key?(:text)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# A group of labels for the file.
|
|
|
|
class Labels
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Deprecated.
|
|
|
|
# Corresponds to the JSON property `hidden`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :hidden
|
|
|
|
alias_method :hidden?, :hidden
|
|
|
|
|
2016-11-08 23:43:14 +00:00
|
|
|
# Whether the file has been modified by this user.
|
|
|
|
# Corresponds to the JSON property `modified`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :modified
|
|
|
|
alias_method :modified?, :modified
|
|
|
|
|
2018-07-11 00:36:18 +00:00
|
|
|
# Deprecated - use copyRequiresWriterPermission instead.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `restricted`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :restricted
|
|
|
|
alias_method :restricted?, :restricted
|
|
|
|
|
|
|
|
# Whether this file is starred by the user.
|
|
|
|
# Corresponds to the JSON property `starred`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :starred
|
|
|
|
alias_method :starred?, :starred
|
|
|
|
|
2020-07-16 00:38:22 +00:00
|
|
|
# Whether the file has been trashed, either explicitly or from a trashed parent
|
|
|
|
# folder. Only the owner may trash a file. The trashed item is excluded from all
|
|
|
|
# files.list responses returned for any user who does not own the file. However,
|
|
|
|
# all users with access to the file can see the trashed item metadata in an API
|
|
|
|
# response. All users with access can copy, download, export, and share the file.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `trashed`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :trashed
|
|
|
|
alias_method :trashed?, :trashed
|
|
|
|
|
|
|
|
# Whether this file has been viewed by this user.
|
|
|
|
# Corresponds to the JSON property `viewed`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :viewed
|
|
|
|
alias_method :viewed?, :viewed
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@hidden = args[:hidden] if args.key?(:hidden)
|
2016-11-08 23:43:14 +00:00
|
|
|
@modified = args[:modified] if args.key?(:modified)
|
2016-01-29 22:32:46 +00:00
|
|
|
@restricted = args[:restricted] if args.key?(:restricted)
|
|
|
|
@starred = args[:starred] if args.key?(:starred)
|
|
|
|
@trashed = args[:trashed] if args.key?(:trashed)
|
|
|
|
@viewed = args[:viewed] if args.key?(:viewed)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2020-04-13 16:49:10 +00:00
|
|
|
# Shortcut file details. Only populated for shortcut files, which have the
|
|
|
|
# mimeType field set to application/vnd.google-apps.shortcut.
|
|
|
|
class ShortcutDetails
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The ID of the file that this shortcut points to.
|
|
|
|
# Corresponds to the JSON property `targetId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :target_id
|
|
|
|
|
|
|
|
# The MIME type of the file that this shortcut points to. The value of this
|
|
|
|
# field is a snapshot of the target's MIME type, captured when the shortcut is
|
|
|
|
# created.
|
|
|
|
# Corresponds to the JSON property `targetMimeType`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :target_mime_type
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@target_id = args[:target_id] if args.key?(:target_id)
|
|
|
|
@target_mime_type = args[:target_mime_type] if args.key?(:target_mime_type)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# A thumbnail for the file. This will only be used if a standard thumbnail
|
|
|
|
# cannot be generated.
|
2015-06-23 23:05:46 +00:00
|
|
|
class Thumbnail
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The URL-safe Base64 encoded bytes of the thumbnail image. It should conform to
|
|
|
|
# RFC 4648 section 5.
|
|
|
|
# Corresponds to the JSON property `image`
|
2017-03-31 19:53:27 +00:00
|
|
|
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
2015-06-23 23:05:46 +00:00
|
|
|
# @return [String]
|
|
|
|
attr_accessor :image
|
|
|
|
|
|
|
|
# The MIME type of the thumbnail.
|
|
|
|
# Corresponds to the JSON property `mimeType`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :mime_type
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@image = args[:image] if args.key?(:image)
|
|
|
|
@mime_type = args[:mime_type] if args.key?(:mime_type)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# Metadata about video media. This will only be present for video types.
|
|
|
|
class VideoMediaMetadata
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The duration of the video in milliseconds.
|
|
|
|
# Corresponds to the JSON property `durationMillis`
|
2017-04-03 20:18:48 +00:00
|
|
|
# @return [Fixnum]
|
2015-06-23 23:05:46 +00:00
|
|
|
attr_accessor :duration_millis
|
|
|
|
|
|
|
|
# The height of the video in pixels.
|
|
|
|
# Corresponds to the JSON property `height`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :height
|
|
|
|
|
|
|
|
# The width of the video in pixels.
|
|
|
|
# Corresponds to the JSON property `width`
|
|
|
|
# @return [Fixnum]
|
|
|
|
attr_accessor :width
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@duration_millis = args[:duration_millis] if args.key?(:duration_millis)
|
|
|
|
@height = args[:height] if args.key?(:height)
|
|
|
|
@width = args[:width] if args.key?(:width)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# A list of files.
|
|
|
|
class FileList
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The ETag of the list.
|
|
|
|
# Corresponds to the JSON property `etag`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :etag
|
|
|
|
|
2017-03-10 21:11:09 +00:00
|
|
|
# Whether the search process was incomplete. If true, then some search results
|
|
|
|
# may be missing, since all documents were not searched. This may occur when
|
2019-04-25 00:37:02 +00:00
|
|
|
# searching multiple drives with the "allDrives" corpora, but all corpora could
|
|
|
|
# not be searched. When this happens, it is suggested that clients narrow their
|
|
|
|
# query by choosing a different corpus such as "default" or "drive".
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `incompleteSearch`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :incomplete_search
|
|
|
|
alias_method :incomplete_search?, :incomplete_search
|
|
|
|
|
2017-01-13 23:04:35 +00:00
|
|
|
# The list of files. If nextPageToken is populated, then this list may be
|
|
|
|
# incomplete and an additional page of results should be fetched.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `items`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::File>]
|
|
|
|
attr_accessor :items
|
|
|
|
|
|
|
|
# This is always drive#fileList.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# A link to the next page of files.
|
|
|
|
# Corresponds to the JSON property `nextLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_link
|
|
|
|
|
2017-01-13 23:04:35 +00:00
|
|
|
# The page token for the next page of files. This will be absent if the end of
|
|
|
|
# the files list has been reached. If the token is rejected for any reason, it
|
|
|
|
# should be discarded, and pagination should be restarted from the first page of
|
|
|
|
# results.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `nextPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_page_token
|
|
|
|
|
|
|
|
# A link back to this list.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@etag = args[:etag] if args.key?(:etag)
|
2017-03-10 21:11:09 +00:00
|
|
|
@incomplete_search = args[:incomplete_search] if args.key?(:incomplete_search)
|
2016-01-29 22:32:46 +00:00
|
|
|
@items = args[:items] if args.key?(:items)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@next_link = args[:next_link] if args.key?(:next_link)
|
|
|
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-03 01:10:07 +00:00
|
|
|
# A list of generated IDs which can be provided in insert requests
|
|
|
|
class GeneratedIds
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The IDs generated for the requesting user in the specified space.
|
|
|
|
# Corresponds to the JSON property `ids`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :ids
|
|
|
|
|
|
|
|
# This is always drive#generatedIds
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# The type of file that can be created with these IDs.
|
|
|
|
# Corresponds to the JSON property `space`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :space
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@ids = args[:ids] if args.key?(:ids)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@space = args[:space] if args.key?(:space)
|
2015-12-03 01:10:07 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-06-23 23:05:46 +00:00
|
|
|
# A list of a file's parents.
|
|
|
|
class ParentList
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The ETag of the list.
|
|
|
|
# Corresponds to the JSON property `etag`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :etag
|
|
|
|
|
2017-01-13 23:04:35 +00:00
|
|
|
# The list of parents.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `items`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::ParentReference>]
|
|
|
|
attr_accessor :items
|
|
|
|
|
|
|
|
# This is always drive#parentList.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# A link back to this list.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@etag = args[:etag] if args.key?(:etag)
|
|
|
|
@items = args[:items] if args.key?(:items)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# A reference to a file's parent.
|
|
|
|
class ParentReference
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The ID of the parent.
|
|
|
|
# Corresponds to the JSON property `id`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :id
|
|
|
|
|
|
|
|
# Whether or not the parent is the root folder.
|
|
|
|
# Corresponds to the JSON property `isRoot`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :is_root
|
|
|
|
alias_method :is_root?, :is_root
|
|
|
|
|
|
|
|
# This is always drive#parentReference.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# A link to the parent.
|
|
|
|
# Corresponds to the JSON property `parentLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :parent_link
|
|
|
|
|
|
|
|
# A link back to this reference.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@id = args[:id] if args.key?(:id)
|
|
|
|
@is_root = args[:is_root] if args.key?(:is_root)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@parent_link = args[:parent_link] if args.key?(:parent_link)
|
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# A permission for a file.
|
|
|
|
class Permission
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2017-03-10 21:11:09 +00:00
|
|
|
# Additional roles for this user. Only commenter is currently allowed, though
|
|
|
|
# more may be supported in the future.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `additionalRoles`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :additional_roles
|
|
|
|
|
2017-06-14 17:02:03 +00:00
|
|
|
# Deprecated.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `authKey`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :auth_key
|
|
|
|
|
2017-05-26 16:44:32 +00:00
|
|
|
# Whether the account associated with this permission has been deleted. This
|
|
|
|
# field only pertains to user and group permissions.
|
2017-05-04 19:35:56 +00:00
|
|
|
# Corresponds to the JSON property `deleted`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :deleted
|
|
|
|
alias_method :deleted?, :deleted
|
|
|
|
|
2015-06-23 23:05:46 +00:00
|
|
|
# The domain name of the entity this permission refers to. This is an output-
|
|
|
|
# only field which is present when the permission type is user, group or domain.
|
|
|
|
# Corresponds to the JSON property `domain`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :domain
|
|
|
|
|
|
|
|
# The email address of the user or group this permission refers to. This is an
|
|
|
|
# output-only field which is present when the permission type is user or group.
|
|
|
|
# Corresponds to the JSON property `emailAddress`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :email_address
|
|
|
|
|
|
|
|
# The ETag of the permission.
|
|
|
|
# Corresponds to the JSON property `etag`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :etag
|
|
|
|
|
2017-03-10 21:11:09 +00:00
|
|
|
# The time at which this permission will expire (RFC 3339 date-time). Expiration
|
|
|
|
# dates have the following restrictions:
|
2020-05-07 20:07:42 +00:00
|
|
|
# - They cannot be set on shared drive items
|
2017-03-10 21:11:09 +00:00
|
|
|
# - They can only be set on user and group permissions
|
|
|
|
# - The date must be in the future
|
|
|
|
# - The date cannot be more than a year in the future
|
2018-01-30 00:35:59 +00:00
|
|
|
# - The date can only be set on drive.permissions.update or drive.permissions.
|
|
|
|
# patch requests
|
2016-06-09 20:22:21 +00:00
|
|
|
# Corresponds to the JSON property `expirationDate`
|
|
|
|
# @return [DateTime]
|
|
|
|
attr_accessor :expiration_date
|
|
|
|
|
2015-06-23 23:05:46 +00:00
|
|
|
# The ID of the user this permission refers to, and identical to the
|
|
|
|
# permissionId in the About and Files resources. When making a drive.permissions.
|
2016-08-31 20:33:12 +00:00
|
|
|
# insert request, exactly one of the id or value fields must be specified unless
|
2017-01-13 23:04:35 +00:00
|
|
|
# the permission type is anyone, in which case both id and value are ignored.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `id`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :id
|
|
|
|
|
|
|
|
# This is always drive#permission.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# The name for this permission.
|
|
|
|
# Corresponds to the JSON property `name`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :name
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Details of whether the permissions on this shared drive item are inherited or
|
|
|
|
# directly on this item. This is an output-only field which is present only for
|
|
|
|
# shared drive items.
|
|
|
|
# Corresponds to the JSON property `permissionDetails`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::Permission::PermissionDetail>]
|
|
|
|
attr_accessor :permission_details
|
|
|
|
|
2015-06-23 23:05:46 +00:00
|
|
|
# A link to the profile photo, if available.
|
|
|
|
# Corresponds to the JSON property `photoLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :photo_link
|
|
|
|
|
2017-03-10 21:11:09 +00:00
|
|
|
# The primary role for this user. While new values may be supported in the
|
|
|
|
# future, the following are currently allowed:
|
2015-06-23 23:05:46 +00:00
|
|
|
# - owner
|
2018-09-08 00:36:18 +00:00
|
|
|
# - organizer
|
|
|
|
# - fileOrganizer
|
2015-06-23 23:05:46 +00:00
|
|
|
# - writer
|
2018-09-08 00:36:18 +00:00
|
|
|
# - reader
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `role`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :role
|
|
|
|
|
|
|
|
# A link back to this permission.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
# Deprecated - use permissionDetails instead.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `teamDrivePermissionDetails`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::Permission::TeamDrivePermissionDetail>]
|
|
|
|
attr_accessor :team_drive_permission_details
|
|
|
|
|
2015-06-23 23:05:46 +00:00
|
|
|
# The account type. Allowed values are:
|
|
|
|
# - user
|
|
|
|
# - group
|
|
|
|
# - domain
|
|
|
|
# - anyone
|
|
|
|
# Corresponds to the JSON property `type`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :type
|
|
|
|
|
|
|
|
# The email address or domain name for the entity. This is used during inserts
|
|
|
|
# and is not populated in responses. When making a drive.permissions.insert
|
2016-08-31 20:33:12 +00:00
|
|
|
# request, exactly one of the id or value fields must be specified unless the
|
2017-01-13 23:04:35 +00:00
|
|
|
# permission type is anyone, in which case both id and value are ignored.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `value`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :value
|
|
|
|
|
2020-08-07 00:38:13 +00:00
|
|
|
# Indicates the view for this permission. Only populated for permissions that
|
|
|
|
# belong to a view. published is the only supported value.
|
|
|
|
# Corresponds to the JSON property `view`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :view
|
|
|
|
|
2015-06-23 23:05:46 +00:00
|
|
|
# Whether the link is required for this permission.
|
|
|
|
# Corresponds to the JSON property `withLink`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :with_link
|
|
|
|
alias_method :with_link?, :with_link
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@additional_roles = args[:additional_roles] if args.key?(:additional_roles)
|
|
|
|
@auth_key = args[:auth_key] if args.key?(:auth_key)
|
2017-05-04 19:35:56 +00:00
|
|
|
@deleted = args[:deleted] if args.key?(:deleted)
|
2016-01-29 22:32:46 +00:00
|
|
|
@domain = args[:domain] if args.key?(:domain)
|
|
|
|
@email_address = args[:email_address] if args.key?(:email_address)
|
|
|
|
@etag = args[:etag] if args.key?(:etag)
|
2016-06-09 20:22:21 +00:00
|
|
|
@expiration_date = args[:expiration_date] if args.key?(:expiration_date)
|
2016-01-29 22:32:46 +00:00
|
|
|
@id = args[:id] if args.key?(:id)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@name = args[:name] if args.key?(:name)
|
2019-04-25 00:37:02 +00:00
|
|
|
@permission_details = args[:permission_details] if args.key?(:permission_details)
|
2016-01-29 22:32:46 +00:00
|
|
|
@photo_link = args[:photo_link] if args.key?(:photo_link)
|
|
|
|
@role = args[:role] if args.key?(:role)
|
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2017-03-10 21:11:09 +00:00
|
|
|
@team_drive_permission_details = args[:team_drive_permission_details] if args.key?(:team_drive_permission_details)
|
2016-01-29 22:32:46 +00:00
|
|
|
@type = args[:type] if args.key?(:type)
|
|
|
|
@value = args[:value] if args.key?(:value)
|
2020-08-07 00:38:13 +00:00
|
|
|
@view = args[:view] if args.key?(:view)
|
2016-01-29 22:32:46 +00:00
|
|
|
@with_link = args[:with_link] if args.key?(:with_link)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
2017-03-10 21:11:09 +00:00
|
|
|
|
2019-04-25 00:37:02 +00:00
|
|
|
#
|
|
|
|
class PermissionDetail
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Additional roles for this user. Only commenter is currently possible, though
|
|
|
|
# more may be supported in the future.
|
|
|
|
# Corresponds to the JSON property `additionalRoles`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :additional_roles
|
|
|
|
|
|
|
|
# Whether this permission is inherited. This field is always populated. This is
|
|
|
|
# an output-only field.
|
|
|
|
# Corresponds to the JSON property `inherited`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :inherited
|
|
|
|
alias_method :inherited?, :inherited
|
|
|
|
|
|
|
|
# The ID of the item from which this permission is inherited. This is an output-
|
2020-04-13 16:49:10 +00:00
|
|
|
# only field.
|
2019-04-25 00:37:02 +00:00
|
|
|
# Corresponds to the JSON property `inheritedFrom`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :inherited_from
|
|
|
|
|
|
|
|
# The permission type for this user. While new values may be added in future,
|
|
|
|
# the following are currently possible:
|
|
|
|
# - file
|
|
|
|
# - member
|
|
|
|
# Corresponds to the JSON property `permissionType`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :permission_type
|
|
|
|
|
|
|
|
# The primary role for this user. While new values may be added in the future,
|
|
|
|
# the following are currently possible:
|
|
|
|
# - organizer
|
|
|
|
# - fileOrganizer
|
|
|
|
# - writer
|
|
|
|
# - reader
|
|
|
|
# Corresponds to the JSON property `role`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :role
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@additional_roles = args[:additional_roles] if args.key?(:additional_roles)
|
|
|
|
@inherited = args[:inherited] if args.key?(:inherited)
|
|
|
|
@inherited_from = args[:inherited_from] if args.key?(:inherited_from)
|
|
|
|
@permission_type = args[:permission_type] if args.key?(:permission_type)
|
|
|
|
@role = args[:role] if args.key?(:role)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-03-10 21:11:09 +00:00
|
|
|
#
|
|
|
|
class TeamDrivePermissionDetail
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2019-05-04 00:37:29 +00:00
|
|
|
# Deprecated - use permissionDetails/additionalRoles instead.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `additionalRoles`
|
|
|
|
# @return [Array<String>]
|
|
|
|
attr_accessor :additional_roles
|
|
|
|
|
2019-05-04 00:37:29 +00:00
|
|
|
# Deprecated - use permissionDetails/inherited instead.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `inherited`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :inherited
|
|
|
|
alias_method :inherited?, :inherited
|
|
|
|
|
2019-05-04 00:37:29 +00:00
|
|
|
# Deprecated - use permissionDetails/inheritedFrom instead.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `inheritedFrom`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :inherited_from
|
|
|
|
|
2019-05-04 00:37:29 +00:00
|
|
|
# Deprecated - use permissionDetails/role instead.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `role`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :role
|
|
|
|
|
2019-05-04 00:37:29 +00:00
|
|
|
# Deprecated - use permissionDetails/permissionType instead.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `teamDrivePermissionType`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :team_drive_permission_type
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@additional_roles = args[:additional_roles] if args.key?(:additional_roles)
|
|
|
|
@inherited = args[:inherited] if args.key?(:inherited)
|
|
|
|
@inherited_from = args[:inherited_from] if args.key?(:inherited_from)
|
|
|
|
@role = args[:role] if args.key?(:role)
|
|
|
|
@team_drive_permission_type = args[:team_drive_permission_type] if args.key?(:team_drive_permission_type)
|
|
|
|
end
|
|
|
|
end
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# An ID for a user or group as seen in Permission items.
|
|
|
|
class PermissionId
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The permission ID.
|
|
|
|
# Corresponds to the JSON property `id`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :id
|
|
|
|
|
|
|
|
# This is always drive#permissionId.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@id = args[:id] if args.key?(:id)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# A list of permissions associated with a file.
|
|
|
|
class PermissionList
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The ETag of the list.
|
|
|
|
# Corresponds to the JSON property `etag`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :etag
|
|
|
|
|
2017-01-13 23:04:35 +00:00
|
|
|
# The list of permissions.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `items`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::Permission>]
|
|
|
|
attr_accessor :items
|
|
|
|
|
|
|
|
# This is always drive#permissionList.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
2017-03-10 21:11:09 +00:00
|
|
|
# The page token for the next page of permissions. This field will be absent if
|
|
|
|
# the end of the permissions list has been reached. If the token is rejected for
|
|
|
|
# any reason, it should be discarded, and pagination should be restarted from
|
|
|
|
# the first page of results.
|
|
|
|
# Corresponds to the JSON property `nextPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_page_token
|
|
|
|
|
2015-06-23 23:05:46 +00:00
|
|
|
# A link back to this list.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@etag = args[:etag] if args.key?(:etag)
|
|
|
|
@items = args[:items] if args.key?(:items)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
2017-03-10 21:11:09 +00:00
|
|
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2016-01-29 22:32:46 +00:00
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# A key-value pair attached to a file that is either public or private to an
|
|
|
|
# application.
|
|
|
|
# The following limits apply to file properties:
|
|
|
|
# - Maximum of 100 properties total per file
|
|
|
|
# - Maximum of 30 private properties per app
|
|
|
|
# - Maximum of 30 public properties
|
|
|
|
# - Maximum of 124 bytes size limit on (key + value) string in UTF-8 encoding
|
|
|
|
# for a single property.
|
|
|
|
class Property
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# ETag of the property.
|
|
|
|
# Corresponds to the JSON property `etag`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :etag
|
|
|
|
|
|
|
|
# The key of this property.
|
|
|
|
# Corresponds to the JSON property `key`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :key
|
|
|
|
|
|
|
|
# This is always drive#property.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# The link back to this property.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
|
|
|
# The value of this property.
|
|
|
|
# Corresponds to the JSON property `value`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :value
|
|
|
|
|
2018-04-06 00:35:48 +00:00
|
|
|
# The visibility of this property. Allowed values are PRIVATE and PUBLIC. (
|
feat: Automated regeneration of drive v2 client (#1620)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-12-03 02:22:19,148 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-drive-v2
nothing to commit, working tree clean
2020-12-03 02:22:19,177 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.8
Installing tzinfo 1.2.8
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.50.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.20.1
Installing parallel 1.20.1
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.3
Installing powerpack 0.1.3
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=drive.v2 --names-out=/workspace/api_names_out.yaml
Loading drive, version v2 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/drive.v2.json
conflict google/apis/drive_v2.rb
<e/apis/drive_v2.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/drive_v2.rb
identical google/apis/drive_v2/service.rb
conflict google/apis/drive_v2/classes.rb
force google/apis/drive_v2/classes.rb
identical google/apis/drive_v2/representations.rb
identical /workspace/api_names_out.yaml
2020-12-03 02:22:44,087 synthtool [DEBUG] > Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/7b006b37-fae5-4e1c-9d57-231db3ac031c/targets
- [ ] To automatically regenerate this PR, check this box.
2020-12-03 10:38:03 +00:00
|
|
|
# Default: PRIVATE). Private properties can only be retrieved using an
|
|
|
|
# authenticated request. An authenticated request uses an access token obtained
|
|
|
|
# with a OAuth 2 client ID. You cannot use an API key to retrieve private
|
|
|
|
# properties.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `visibility`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :visibility
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@etag = args[:etag] if args.key?(:etag)
|
|
|
|
@key = args[:key] if args.key?(:key)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
|
|
|
@value = args[:value] if args.key?(:value)
|
|
|
|
@visibility = args[:visibility] if args.key?(:visibility)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# A collection of properties, key-value pairs that are either public or private
|
|
|
|
# to an application.
|
|
|
|
class PropertyList
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The ETag of the list.
|
|
|
|
# Corresponds to the JSON property `etag`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :etag
|
|
|
|
|
|
|
|
# The list of properties.
|
|
|
|
# Corresponds to the JSON property `items`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::Property>]
|
|
|
|
attr_accessor :items
|
|
|
|
|
|
|
|
# This is always drive#propertyList.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# The link back to this list.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@etag = args[:etag] if args.key?(:etag)
|
|
|
|
@items = args[:items] if args.key?(:items)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# A revision of a file.
|
|
|
|
class Revision
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2020-01-25 00:37:19 +00:00
|
|
|
#
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `downloadUrl`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :download_url
|
|
|
|
|
|
|
|
# The ETag of the revision.
|
|
|
|
# Corresponds to the JSON property `etag`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :etag
|
|
|
|
|
feat: Automated regeneration of drive v2 client (#1396)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-05 02:23:44,731 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-drive-v2
nothing to commit, working tree clean
2020-11-05 02:23:44,760 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.7
Installing tzinfo 1.2.7
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.48.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.19.2
Installing parallel 1.19.2
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.2
Installing powerpack 0.1.2
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=drive.v2 --names-out=/workspace/api_names_out.yaml
Loading drive, version v2 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/drive.v2.json
conflict google/apis/drive_v2.rb
<e/apis/drive_v2.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/drive_v2.rb
conflict google/apis/drive_v2/service.rb
force google/apis/drive_v2/service.rb
conflict google/apis/drive_v2/classes.rb
force google/apis/drive_v2/classes.rb
identical google/apis/drive_v2/representations.rb
identical /workspace/api_names_out.yaml
2020-11-05 02:24:10,797 synthtool [DEBUG] > Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/749223e1-0b80-43a0-be68-640be14dbb8a/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-05 10:40:02 +00:00
|
|
|
# Links for exporting Docs Editors files to specific formats.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `exportLinks`
|
|
|
|
# @return [Hash<String,String>]
|
|
|
|
attr_accessor :export_links
|
|
|
|
|
|
|
|
# The size of the revision in bytes. This will only be populated on files with
|
|
|
|
# content stored in Drive.
|
|
|
|
# Corresponds to the JSON property `fileSize`
|
2017-04-03 20:18:48 +00:00
|
|
|
# @return [Fixnum]
|
2015-06-23 23:05:46 +00:00
|
|
|
attr_accessor :file_size
|
|
|
|
|
|
|
|
# The ID of the revision.
|
|
|
|
# Corresponds to the JSON property `id`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :id
|
|
|
|
|
|
|
|
# This is always drive#revision.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
2015-12-14 22:27:57 +00:00
|
|
|
# Information about a Drive user.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `lastModifyingUser`
|
|
|
|
# @return [Google::Apis::DriveV2::User]
|
|
|
|
attr_accessor :last_modifying_user
|
|
|
|
|
|
|
|
# Name of the last user to modify this revision.
|
|
|
|
# Corresponds to the JSON property `lastModifyingUserName`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :last_modifying_user_name
|
|
|
|
|
|
|
|
# An MD5 checksum for the content of this revision. This will only be populated
|
|
|
|
# on files with content stored in Drive.
|
|
|
|
# Corresponds to the JSON property `md5Checksum`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :md5_checksum
|
|
|
|
|
|
|
|
# The MIME type of the revision.
|
|
|
|
# Corresponds to the JSON property `mimeType`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :mime_type
|
|
|
|
|
|
|
|
# Last time this revision was modified (formatted RFC 3339 timestamp).
|
|
|
|
# Corresponds to the JSON property `modifiedDate`
|
|
|
|
# @return [DateTime]
|
|
|
|
attr_accessor :modified_date
|
|
|
|
|
|
|
|
# The original filename when this revision was created. This will only be
|
|
|
|
# populated on files with content stored in Drive.
|
|
|
|
# Corresponds to the JSON property `originalFilename`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :original_filename
|
|
|
|
|
|
|
|
# Whether this revision is pinned to prevent automatic purging. This will only
|
feat: Automated regeneration of drive v2 client (#1396)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-05 02:23:44,731 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-drive-v2
nothing to commit, working tree clean
2020-11-05 02:23:44,760 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.7
Installing tzinfo 1.2.7
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.48.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.19.2
Installing parallel 1.19.2
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.2
Installing powerpack 0.1.2
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=drive.v2 --names-out=/workspace/api_names_out.yaml
Loading drive, version v2 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/drive.v2.json
conflict google/apis/drive_v2.rb
<e/apis/drive_v2.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/drive_v2.rb
conflict google/apis/drive_v2/service.rb
force google/apis/drive_v2/service.rb
conflict google/apis/drive_v2/classes.rb
force google/apis/drive_v2/classes.rb
identical google/apis/drive_v2/representations.rb
identical /workspace/api_names_out.yaml
2020-11-05 02:24:10,797 synthtool [DEBUG] > Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/749223e1-0b80-43a0-be68-640be14dbb8a/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-05 10:40:02 +00:00
|
|
|
# be populated and can only be modified on files with content stored in Drive,
|
|
|
|
# excluding Docs Editors files. Revisions can also be pinned when they are
|
|
|
|
# created through the drive.files.insert/update/copy by using the pinned query
|
|
|
|
# parameter. Pinned revisions are stored indefinitely using additional storage
|
|
|
|
# quota, up to a maximum of 200 revisions.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `pinned`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :pinned
|
|
|
|
alias_method :pinned?, :pinned
|
|
|
|
|
|
|
|
# Whether subsequent revisions will be automatically republished. This is only
|
feat: Automated regeneration of drive v2 client (#1396)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-05 02:23:44,731 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-drive-v2
nothing to commit, working tree clean
2020-11-05 02:23:44,760 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.7
Installing tzinfo 1.2.7
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.48.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.19.2
Installing parallel 1.19.2
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.2
Installing powerpack 0.1.2
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=drive.v2 --names-out=/workspace/api_names_out.yaml
Loading drive, version v2 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/drive.v2.json
conflict google/apis/drive_v2.rb
<e/apis/drive_v2.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/drive_v2.rb
conflict google/apis/drive_v2/service.rb
force google/apis/drive_v2/service.rb
conflict google/apis/drive_v2/classes.rb
force google/apis/drive_v2/classes.rb
identical google/apis/drive_v2/representations.rb
identical /workspace/api_names_out.yaml
2020-11-05 02:24:10,797 synthtool [DEBUG] > Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/749223e1-0b80-43a0-be68-640be14dbb8a/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-05 10:40:02 +00:00
|
|
|
# populated and can only be modified for Docs Editors files.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `publishAuto`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :publish_auto
|
|
|
|
alias_method :publish_auto?, :publish_auto
|
|
|
|
|
|
|
|
# Whether this revision is published. This is only populated and can only be
|
feat: Automated regeneration of drive v2 client (#1396)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-05 02:23:44,731 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-drive-v2
nothing to commit, working tree clean
2020-11-05 02:23:44,760 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.7
Installing tzinfo 1.2.7
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.48.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.19.2
Installing parallel 1.19.2
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.2
Installing powerpack 0.1.2
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=drive.v2 --names-out=/workspace/api_names_out.yaml
Loading drive, version v2 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/drive.v2.json
conflict google/apis/drive_v2.rb
<e/apis/drive_v2.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/drive_v2.rb
conflict google/apis/drive_v2/service.rb
force google/apis/drive_v2/service.rb
conflict google/apis/drive_v2/classes.rb
force google/apis/drive_v2/classes.rb
identical google/apis/drive_v2/representations.rb
identical /workspace/api_names_out.yaml
2020-11-05 02:24:10,797 synthtool [DEBUG] > Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/749223e1-0b80-43a0-be68-640be14dbb8a/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-05 10:40:02 +00:00
|
|
|
# modified for Docs Editors files.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `published`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :published
|
|
|
|
alias_method :published?, :published
|
|
|
|
|
2020-10-12 00:39:02 +00:00
|
|
|
# A link to the published revision. This is only populated for Google Sites
|
|
|
|
# files.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `publishedLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :published_link
|
|
|
|
|
|
|
|
# Whether this revision is published outside the domain. This is only populated
|
feat: Automated regeneration of drive v2 client (#1396)
This PR was generated using Autosynth. :rainbow:
<details><summary>Log from Synthtool</summary>
```
2020-11-05 02:23:44,731 synthtool [DEBUG] > Executing /home/kbuilder/.cache/synthtool/google-api-ruby-client/synth.py.
On branch autosynth-drive-v2
nothing to commit, working tree clean
2020-11-05 02:23:44,760 synthtool [DEBUG] > Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
DEBUG:synthtool:Running: docker run --rm -v/home/kbuilder/.cache/synthtool/google-api-ruby-client:/workspace -v/var/run/docker.sock:/var/run/docker.sock -w /workspace --entrypoint script/synth.rb gcr.io/cloud-devrel-kokoro-resources/yoshi-ruby/autosynth drive v2
bundle install
Don't run Bundler as root. Bundler can ask for sudo if it is needed, and
installing your bundle as root will break this application for all non-root
users on this machine.
The dependency jruby-openssl (>= 0) will be unused by any of the platforms Bundler is installing for. Bundler is installing for ruby but the dependency is only for java. To add those platforms to the bundle, run `bundle lock --add-platform java`.
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/.
Resolving dependencies...
Fetching rake 11.3.0
Installing rake 11.3.0
Fetching concurrent-ruby 1.1.7
Installing concurrent-ruby 1.1.7
Fetching i18n 1.8.5
Installing i18n 1.8.5
Fetching minitest 5.14.2
Installing minitest 5.14.2
Fetching thread_safe 0.3.6
Installing thread_safe 0.3.6
Fetching tzinfo 1.2.7
Installing tzinfo 1.2.7
Fetching activesupport 5.0.7.2
Installing activesupport 5.0.7.2
Fetching public_suffix 4.0.6
Installing public_suffix 4.0.6
Fetching addressable 2.7.0
Installing addressable 2.7.0
Fetching ast 2.4.1
Installing ast 2.4.1
Using bundler 2.1.4
Fetching byebug 11.1.3
Installing byebug 11.1.3 with native extensions
Fetching coderay 1.1.3
Installing coderay 1.1.3
Fetching json 2.3.1
Installing json 2.3.1 with native extensions
Fetching docile 1.3.2
Installing docile 1.3.2
Fetching simplecov-html 0.10.2
Installing simplecov-html 0.10.2
Fetching simplecov 0.16.1
Installing simplecov 0.16.1
Using sync 0.5.0
Fetching tins 1.26.0
Installing tins 1.26.0
Fetching term-ansicolor 1.7.1
Installing term-ansicolor 1.7.1
Fetching thor 0.20.3
Installing thor 0.20.3
Fetching coveralls 0.8.23
Installing coveralls 0.8.23
Fetching crack 0.4.4
Installing crack 0.4.4
Fetching declarative 0.0.20
Installing declarative 0.0.20
Fetching declarative-option 0.1.0
Installing declarative-option 0.1.0
Fetching diff-lcs 1.4.4
Installing diff-lcs 1.4.4
Fetching dotenv 2.7.6
Installing dotenv 2.7.6
Fetching fakefs 0.20.1
Installing fakefs 0.20.1
Fetching multipart-post 2.1.1
Installing multipart-post 2.1.1
Fetching ruby2_keywords 0.0.2
Installing ruby2_keywords 0.0.2
Fetching faraday 1.1.0
Installing faraday 1.1.0
Fetching gems 1.2.0
Installing gems 1.2.0
Fetching github-markup 1.7.0
Installing github-markup 1.7.0
Fetching jwt 2.2.2
Installing jwt 2.2.2
Fetching memoist 0.16.2
Installing memoist 0.16.2
Fetching multi_json 1.15.0
Installing multi_json 1.15.0
Fetching os 0.9.6
Installing os 0.9.6
Fetching signet 0.14.0
Installing signet 0.14.0
Fetching googleauth 0.14.0
Installing googleauth 0.14.0
Fetching httpclient 2.8.3
Installing httpclient 2.8.3
Fetching mini_mime 1.0.2
Installing mini_mime 1.0.2
Fetching uber 0.1.0
Installing uber 0.1.0
Fetching representable 3.0.4
Installing representable 3.0.4
Fetching retriable 3.1.2
Installing retriable 3.1.2
Fetching rexml 3.2.4
Installing rexml 3.2.4
Using google-api-client 0.48.0 from source at `.`
Fetching google-id-token 1.4.2
Installing google-id-token 1.4.2
Fetching hashdiff 1.0.1
Installing hashdiff 1.0.1
Fetching mime-types-data 3.2020.1104
Installing mime-types-data 3.2020.1104
Fetching mime-types 3.3.1
Installing mime-types 3.3.1
Fetching multi_xml 0.6.0
Installing multi_xml 0.6.0
Fetching httparty 0.18.1
Installing httparty 0.18.1
Fetching rspec-support 3.10.0
Installing rspec-support 3.10.0
Fetching rspec-core 3.10.0
Installing rspec-core 3.10.0
Fetching rspec-expectations 3.10.0
Installing rspec-expectations 3.10.0
Fetching rspec-mocks 3.10.0
Installing rspec-mocks 3.10.0
Fetching rspec 3.10.0
Installing rspec 3.10.0
Fetching json_spec 1.1.5
Installing json_spec 1.1.5
Fetching launchy 2.5.0
Installing launchy 2.5.0
Fetching little-plugger 1.1.4
Installing little-plugger 1.1.4
Fetching logging 2.3.0
Installing logging 2.3.0
Fetching method_source 1.0.0
Installing method_source 1.0.0
Fetching opencensus 0.5.0
Installing opencensus 0.5.0
Fetching parallel 1.19.2
Installing parallel 1.19.2
Fetching parser 2.7.2.0
Installing parser 2.7.2.0
Fetching powerpack 0.1.2
Installing powerpack 0.1.2
Fetching pry 0.13.1
Installing pry 0.13.1
Fetching pry-byebug 3.9.0
Installing pry-byebug 3.9.0
Fetching yard 0.9.25
Installing yard 0.9.25
Fetching pry-doc 0.13.5
Installing pry-doc 0.13.5
Fetching rainbow 2.2.2
Installing rainbow 2.2.2 with native extensions
Fetching redcarpet 3.5.0
Installing redcarpet 3.5.0 with native extensions
Fetching redis 3.3.5
Installing redis 3.3.5
Fetching rmail 1.1.4
Installing rmail 1.1.4
Fetching ruby-progressbar 1.10.1
Installing ruby-progressbar 1.10.1
Fetching unicode-display_width 1.7.0
Installing unicode-display_width 1.7.0
Fetching rubocop 0.49.1
Installing rubocop 0.49.1
Fetching webmock 2.3.2
Installing webmock 2.3.2
Bundle complete! 31 Gemfile dependencies, 78 gems now installed.
Use `bundle info [gemname]` to see where a bundled gem is installed.
Post-install message from i18n:
HEADS UP! i18n 1.1 changed fallbacks to exclude default locale.
But that may break your application.
If you are upgrading your Rails application from an older version of Rails:
Please check your Rails app for 'config.i18n.fallbacks = true'.
If you're using I18n (>= 1.1.0) and Rails (< 5.2.2), this should be
'config.i18n.fallbacks = [I18n.default_locale]'.
If not, fallbacks will be broken in your app by I18n 1.1.x.
If you are starting a NEW Rails application, you can ignore this notice.
For more info see:
https://github.com/svenfuchs/i18n/releases/tag/v1.1.0
Post-install message from httparty:
When you HTTParty, you must party hard!
echo a | bundle exec bin/generate-api gen generated --api=drive.v2 --names-out=/workspace/api_names_out.yaml
Loading drive, version v2 from https://raw.githubusercontent.com/googleapis/discovery-artifact-manager/master/discoveries/drive.v2.json
conflict google/apis/drive_v2.rb
<e/apis/drive_v2.rb? (enter "h" for help) [Ynaqdhm] a
force google/apis/drive_v2.rb
conflict google/apis/drive_v2/service.rb
force google/apis/drive_v2/service.rb
conflict google/apis/drive_v2/classes.rb
force google/apis/drive_v2/classes.rb
identical google/apis/drive_v2/representations.rb
identical /workspace/api_names_out.yaml
2020-11-05 02:24:10,797 synthtool [DEBUG] > Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
DEBUG:synthtool:Wrote metadata to generated/google/apis/drive_v2/synth.metadata.
```
</details>
Full log will be available here:
https://source.cloud.google.com/results/invocations/749223e1-0b80-43a0-be68-640be14dbb8a/targets
- [ ] To automatically regenerate this PR, check this box.
2020-11-05 10:40:02 +00:00
|
|
|
# and can only be modified for Docs Editors files.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `publishedOutsideDomain`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :published_outside_domain
|
|
|
|
alias_method :published_outside_domain?, :published_outside_domain
|
|
|
|
|
|
|
|
# A link back to this revision.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@download_url = args[:download_url] if args.key?(:download_url)
|
|
|
|
@etag = args[:etag] if args.key?(:etag)
|
|
|
|
@export_links = args[:export_links] if args.key?(:export_links)
|
|
|
|
@file_size = args[:file_size] if args.key?(:file_size)
|
|
|
|
@id = args[:id] if args.key?(:id)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@last_modifying_user = args[:last_modifying_user] if args.key?(:last_modifying_user)
|
|
|
|
@last_modifying_user_name = args[:last_modifying_user_name] if args.key?(:last_modifying_user_name)
|
|
|
|
@md5_checksum = args[:md5_checksum] if args.key?(:md5_checksum)
|
|
|
|
@mime_type = args[:mime_type] if args.key?(:mime_type)
|
|
|
|
@modified_date = args[:modified_date] if args.key?(:modified_date)
|
|
|
|
@original_filename = args[:original_filename] if args.key?(:original_filename)
|
|
|
|
@pinned = args[:pinned] if args.key?(:pinned)
|
|
|
|
@publish_auto = args[:publish_auto] if args.key?(:publish_auto)
|
|
|
|
@published = args[:published] if args.key?(:published)
|
|
|
|
@published_link = args[:published_link] if args.key?(:published_link)
|
|
|
|
@published_outside_domain = args[:published_outside_domain] if args.key?(:published_outside_domain)
|
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
# A list of revisions of a file.
|
|
|
|
class RevisionList
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The ETag of the list.
|
|
|
|
# Corresponds to the JSON property `etag`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :etag
|
|
|
|
|
2017-01-13 23:04:35 +00:00
|
|
|
# The list of revisions. If nextPageToken is populated, then this list may be
|
|
|
|
# incomplete and an additional page of results should be fetched.
|
2015-06-23 23:05:46 +00:00
|
|
|
# Corresponds to the JSON property `items`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::Revision>]
|
|
|
|
attr_accessor :items
|
|
|
|
|
|
|
|
# This is always drive#revisionList.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
2016-10-12 22:52:51 +00:00
|
|
|
# The page token for the next page of revisions. This field will be absent if
|
|
|
|
# the end of the revisions list has been reached. If the token is rejected for
|
|
|
|
# any reason, it should be discarded and pagination should be restarted from the
|
|
|
|
# first page of results.
|
|
|
|
# Corresponds to the JSON property `nextPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_page_token
|
|
|
|
|
2015-06-23 23:05:46 +00:00
|
|
|
# A link back to this list.
|
|
|
|
# Corresponds to the JSON property `selfLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :self_link
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@etag = args[:etag] if args.key?(:etag)
|
|
|
|
@items = args[:items] if args.key?(:items)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
2016-10-12 22:52:51 +00:00
|
|
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
2016-01-29 22:32:46 +00:00
|
|
|
@self_link = args[:self_link] if args.key?(:self_link)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-02-03 19:29:28 +00:00
|
|
|
#
|
|
|
|
class StartPageToken
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Identifies what kind of resource this is. Value: the fixed string "drive#
|
|
|
|
# startPageToken".
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# The starting page token for listing changes.
|
|
|
|
# Corresponds to the JSON property `startPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :start_page_token
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@start_page_token = args[:start_page_token] if args.key?(:start_page_token)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2019-05-04 00:37:29 +00:00
|
|
|
# Deprecated: use the drive collection instead.
|
2017-03-10 21:11:09 +00:00
|
|
|
class TeamDrive
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# An image file and cropping parameters from which a background image for this
|
2017-05-26 16:44:32 +00:00
|
|
|
# Team Drive is set. This is a write only field; it can only be set on drive.
|
|
|
|
# teamdrives.update requests that don't set themeId. When specified, all fields
|
|
|
|
# of the backgroundImageFile must be set.
|
2017-03-31 19:53:27 +00:00
|
|
|
# Corresponds to the JSON property `backgroundImageFile`
|
|
|
|
# @return [Google::Apis::DriveV2::TeamDrive::BackgroundImageFile]
|
|
|
|
attr_accessor :background_image_file
|
|
|
|
|
|
|
|
# A short-lived link to this Team Drive's background image.
|
|
|
|
# Corresponds to the JSON property `backgroundImageLink`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :background_image_link
|
|
|
|
|
2017-03-10 21:11:09 +00:00
|
|
|
# Capabilities the current user has on this Team Drive.
|
|
|
|
# Corresponds to the JSON property `capabilities`
|
|
|
|
# @return [Google::Apis::DriveV2::TeamDrive::Capabilities]
|
|
|
|
attr_accessor :capabilities
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# The color of this Team Drive as an RGB hex string. It can only be set on a
|
|
|
|
# drive.teamdrives.update request that does not set themeId.
|
|
|
|
# Corresponds to the JSON property `colorRgb`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :color_rgb
|
|
|
|
|
2017-11-01 00:35:09 +00:00
|
|
|
# The time at which the Team Drive was created (RFC 3339 date-time).
|
|
|
|
# Corresponds to the JSON property `createdDate`
|
|
|
|
# @return [DateTime]
|
|
|
|
attr_accessor :created_date
|
|
|
|
|
2018-07-11 00:36:18 +00:00
|
|
|
# The ID of this Team Drive which is also the ID of the top level folder of this
|
|
|
|
# Team Drive.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `id`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :id
|
|
|
|
|
|
|
|
# This is always drive#teamDrive
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# The name of this Team Drive.
|
|
|
|
# Corresponds to the JSON property `name`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :name
|
|
|
|
|
2018-07-11 00:36:18 +00:00
|
|
|
# A set of restrictions that apply to this Team Drive or items inside this Team
|
|
|
|
# Drive.
|
|
|
|
# Corresponds to the JSON property `restrictions`
|
|
|
|
# @return [Google::Apis::DriveV2::TeamDrive::Restrictions]
|
|
|
|
attr_accessor :restrictions
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# The ID of the theme from which the background image and color will be set. The
|
|
|
|
# set of possible teamDriveThemes can be retrieved from a drive.about.get
|
|
|
|
# response. When not specified on a drive.teamdrives.insert request, a random
|
|
|
|
# theme is chosen from which the background image and color are set. This is a
|
2017-05-26 16:44:32 +00:00
|
|
|
# write-only field; it can only be set on requests that don't set colorRgb or
|
|
|
|
# backgroundImageFile.
|
2017-03-31 19:53:27 +00:00
|
|
|
# Corresponds to the JSON property `themeId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :theme_id
|
|
|
|
|
2017-03-10 21:11:09 +00:00
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2017-03-31 19:53:27 +00:00
|
|
|
@background_image_file = args[:background_image_file] if args.key?(:background_image_file)
|
|
|
|
@background_image_link = args[:background_image_link] if args.key?(:background_image_link)
|
2017-03-10 21:11:09 +00:00
|
|
|
@capabilities = args[:capabilities] if args.key?(:capabilities)
|
2017-03-31 19:53:27 +00:00
|
|
|
@color_rgb = args[:color_rgb] if args.key?(:color_rgb)
|
2017-11-01 00:35:09 +00:00
|
|
|
@created_date = args[:created_date] if args.key?(:created_date)
|
2017-03-10 21:11:09 +00:00
|
|
|
@id = args[:id] if args.key?(:id)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@name = args[:name] if args.key?(:name)
|
2018-07-11 00:36:18 +00:00
|
|
|
@restrictions = args[:restrictions] if args.key?(:restrictions)
|
2017-03-31 19:53:27 +00:00
|
|
|
@theme_id = args[:theme_id] if args.key?(:theme_id)
|
|
|
|
end
|
|
|
|
|
|
|
|
# An image file and cropping parameters from which a background image for this
|
2017-05-26 16:44:32 +00:00
|
|
|
# Team Drive is set. This is a write only field; it can only be set on drive.
|
|
|
|
# teamdrives.update requests that don't set themeId. When specified, all fields
|
|
|
|
# of the backgroundImageFile must be set.
|
2017-03-31 19:53:27 +00:00
|
|
|
class BackgroundImageFile
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The ID of an image file in Drive to use for the background image.
|
|
|
|
# Corresponds to the JSON property `id`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :id
|
|
|
|
|
2017-05-26 16:44:32 +00:00
|
|
|
# The width of the cropped image in the closed range of 0 to 1. This value
|
|
|
|
# represents the width of the cropped image divided by the width of the entire
|
|
|
|
# image. The height is computed by applying a width to height aspect ratio of 80
|
|
|
|
# to 9. The resulting image must be at least 1280 pixels wide and 144 pixels
|
|
|
|
# high.
|
2017-03-31 19:53:27 +00:00
|
|
|
# Corresponds to the JSON property `width`
|
|
|
|
# @return [Float]
|
|
|
|
attr_accessor :width
|
|
|
|
|
|
|
|
# The X coordinate of the upper left corner of the cropping area in the
|
2017-05-26 16:44:32 +00:00
|
|
|
# background image. This is a value in the closed range of 0 to 1. This value
|
|
|
|
# represents the horizontal distance from the left side of the entire image to
|
|
|
|
# the left side of the cropping area divided by the width of the entire image.
|
2017-03-31 19:53:27 +00:00
|
|
|
# Corresponds to the JSON property `xCoordinate`
|
|
|
|
# @return [Float]
|
|
|
|
attr_accessor :x_coordinate
|
|
|
|
|
|
|
|
# The Y coordinate of the upper left corner of the cropping area in the
|
2017-05-26 16:44:32 +00:00
|
|
|
# background image. This is a value in the closed range of 0 to 1. This value
|
|
|
|
# represents the vertical distance from the top side of the entire image to the
|
|
|
|
# top side of the cropping area divided by the height of the entire image.
|
2017-03-31 19:53:27 +00:00
|
|
|
# Corresponds to the JSON property `yCoordinate`
|
|
|
|
# @return [Float]
|
|
|
|
attr_accessor :y_coordinate
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@id = args[:id] if args.key?(:id)
|
|
|
|
@width = args[:width] if args.key?(:width)
|
|
|
|
@x_coordinate = args[:x_coordinate] if args.key?(:x_coordinate)
|
|
|
|
@y_coordinate = args[:y_coordinate] if args.key?(:y_coordinate)
|
|
|
|
end
|
2017-03-10 21:11:09 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# Capabilities the current user has on this Team Drive.
|
|
|
|
class Capabilities
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Whether the current user can add children to folders in this Team Drive.
|
|
|
|
# Corresponds to the JSON property `canAddChildren`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_add_children
|
|
|
|
alias_method :can_add_children?, :can_add_children
|
|
|
|
|
2018-07-11 00:36:18 +00:00
|
|
|
# Whether the current user can change the copyRequiresWriterPermission
|
|
|
|
# restriction of this Team Drive.
|
|
|
|
# Corresponds to the JSON property `canChangeCopyRequiresWriterPermissionRestriction`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_change_copy_requires_writer_permission_restriction
|
|
|
|
alias_method :can_change_copy_requires_writer_permission_restriction?, :can_change_copy_requires_writer_permission_restriction
|
|
|
|
|
|
|
|
# Whether the current user can change the domainUsersOnly restriction of this
|
|
|
|
# Team Drive.
|
|
|
|
# Corresponds to the JSON property `canChangeDomainUsersOnlyRestriction`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_change_domain_users_only_restriction
|
|
|
|
alias_method :can_change_domain_users_only_restriction?, :can_change_domain_users_only_restriction
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Whether the current user can change the background of this Team Drive.
|
|
|
|
# Corresponds to the JSON property `canChangeTeamDriveBackground`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_change_team_drive_background
|
|
|
|
alias_method :can_change_team_drive_background?, :can_change_team_drive_background
|
|
|
|
|
2018-07-11 00:36:18 +00:00
|
|
|
# Whether the current user can change the teamMembersOnly restriction of this
|
|
|
|
# Team Drive.
|
|
|
|
# Corresponds to the JSON property `canChangeTeamMembersOnlyRestriction`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_change_team_members_only_restriction
|
|
|
|
alias_method :can_change_team_members_only_restriction?, :can_change_team_members_only_restriction
|
|
|
|
|
2017-03-10 21:11:09 +00:00
|
|
|
# Whether the current user can comment on files in this Team Drive.
|
|
|
|
# Corresponds to the JSON property `canComment`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_comment
|
|
|
|
alias_method :can_comment?, :can_comment
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Whether the current user can copy files in this Team Drive.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canCopy`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_copy
|
|
|
|
alias_method :can_copy?, :can_copy
|
|
|
|
|
2018-08-24 00:36:27 +00:00
|
|
|
# Whether the current user can delete children from folders in this Team Drive.
|
|
|
|
# Corresponds to the JSON property `canDeleteChildren`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_delete_children
|
|
|
|
alias_method :can_delete_children?, :can_delete_children
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Whether the current user can delete this Team Drive. Attempting to delete the
|
|
|
|
# Team Drive may still fail if there are untrashed items inside the Team Drive.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canDeleteTeamDrive`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_delete_team_drive
|
|
|
|
alias_method :can_delete_team_drive?, :can_delete_team_drive
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Whether the current user can download files in this Team Drive.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canDownload`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_download
|
|
|
|
alias_method :can_download?, :can_download
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Whether the current user can edit files in this Team Drive
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canEdit`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_edit
|
|
|
|
alias_method :can_edit?, :can_edit
|
|
|
|
|
|
|
|
# Whether the current user can list the children of folders in this Team Drive.
|
|
|
|
# Corresponds to the JSON property `canListChildren`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_list_children
|
|
|
|
alias_method :can_list_children?, :can_list_children
|
|
|
|
|
|
|
|
# Whether the current user can add members to this Team Drive or remove them or
|
|
|
|
# change their role.
|
|
|
|
# Corresponds to the JSON property `canManageMembers`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_manage_members
|
|
|
|
alias_method :can_manage_members?, :can_manage_members
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Whether the current user can read the revisions resource of files in this Team
|
|
|
|
# Drive.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canReadRevisions`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_read_revisions
|
|
|
|
alias_method :can_read_revisions?, :can_read_revisions
|
|
|
|
|
2018-08-24 00:36:27 +00:00
|
|
|
# Deprecated - use canDeleteChildren or canTrashChildren instead.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canRemoveChildren`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_remove_children
|
|
|
|
alias_method :can_remove_children?, :can_remove_children
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Whether the current user can rename files or folders in this Team Drive.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canRename`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_rename
|
|
|
|
alias_method :can_rename?, :can_rename
|
|
|
|
|
2017-03-31 19:53:27 +00:00
|
|
|
# Whether the current user can rename this Team Drive.
|
2017-03-10 21:11:09 +00:00
|
|
|
# Corresponds to the JSON property `canRenameTeamDrive`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_rename_team_drive
|
|
|
|
alias_method :can_rename_team_drive?, :can_rename_team_drive
|
|
|
|
|
|
|
|
# Whether the current user can share files or folders in this Team Drive.
|
|
|
|
# Corresponds to the JSON property `canShare`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_share
|
|
|
|
alias_method :can_share?, :can_share
|
|
|
|
|
2018-08-24 00:36:27 +00:00
|
|
|
# Whether the current user can trash children from folders in this Team Drive.
|
|
|
|
# Corresponds to the JSON property `canTrashChildren`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :can_trash_children
|
|
|
|
alias_method :can_trash_children?, :can_trash_children
|
|
|
|
|
2017-03-10 21:11:09 +00:00
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@can_add_children = args[:can_add_children] if args.key?(:can_add_children)
|
2018-07-11 00:36:18 +00:00
|
|
|
@can_change_copy_requires_writer_permission_restriction = args[:can_change_copy_requires_writer_permission_restriction] if args.key?(:can_change_copy_requires_writer_permission_restriction)
|
|
|
|
@can_change_domain_users_only_restriction = args[:can_change_domain_users_only_restriction] if args.key?(:can_change_domain_users_only_restriction)
|
2017-03-31 19:53:27 +00:00
|
|
|
@can_change_team_drive_background = args[:can_change_team_drive_background] if args.key?(:can_change_team_drive_background)
|
2018-07-11 00:36:18 +00:00
|
|
|
@can_change_team_members_only_restriction = args[:can_change_team_members_only_restriction] if args.key?(:can_change_team_members_only_restriction)
|
2017-03-10 21:11:09 +00:00
|
|
|
@can_comment = args[:can_comment] if args.key?(:can_comment)
|
|
|
|
@can_copy = args[:can_copy] if args.key?(:can_copy)
|
2018-08-24 00:36:27 +00:00
|
|
|
@can_delete_children = args[:can_delete_children] if args.key?(:can_delete_children)
|
2017-03-10 21:11:09 +00:00
|
|
|
@can_delete_team_drive = args[:can_delete_team_drive] if args.key?(:can_delete_team_drive)
|
|
|
|
@can_download = args[:can_download] if args.key?(:can_download)
|
|
|
|
@can_edit = args[:can_edit] if args.key?(:can_edit)
|
|
|
|
@can_list_children = args[:can_list_children] if args.key?(:can_list_children)
|
|
|
|
@can_manage_members = args[:can_manage_members] if args.key?(:can_manage_members)
|
|
|
|
@can_read_revisions = args[:can_read_revisions] if args.key?(:can_read_revisions)
|
|
|
|
@can_remove_children = args[:can_remove_children] if args.key?(:can_remove_children)
|
|
|
|
@can_rename = args[:can_rename] if args.key?(:can_rename)
|
|
|
|
@can_rename_team_drive = args[:can_rename_team_drive] if args.key?(:can_rename_team_drive)
|
|
|
|
@can_share = args[:can_share] if args.key?(:can_share)
|
2018-08-24 00:36:27 +00:00
|
|
|
@can_trash_children = args[:can_trash_children] if args.key?(:can_trash_children)
|
2017-03-10 21:11:09 +00:00
|
|
|
end
|
|
|
|
end
|
2018-07-11 00:36:18 +00:00
|
|
|
|
|
|
|
# A set of restrictions that apply to this Team Drive or items inside this Team
|
|
|
|
# Drive.
|
|
|
|
class Restrictions
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# Whether administrative privileges on this Team Drive are required to modify
|
|
|
|
# restrictions.
|
|
|
|
# Corresponds to the JSON property `adminManagedRestrictions`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :admin_managed_restrictions
|
|
|
|
alias_method :admin_managed_restrictions?, :admin_managed_restrictions
|
|
|
|
|
|
|
|
# Whether the options to copy, print, or download files inside this Team Drive,
|
|
|
|
# should be disabled for readers and commenters. When this restriction is set to
|
|
|
|
# true, it will override the similarly named field to true for any file inside
|
|
|
|
# this Team Drive.
|
|
|
|
# Corresponds to the JSON property `copyRequiresWriterPermission`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :copy_requires_writer_permission
|
|
|
|
alias_method :copy_requires_writer_permission?, :copy_requires_writer_permission
|
|
|
|
|
|
|
|
# Whether access to this Team Drive and items inside this Team Drive is
|
|
|
|
# restricted to users of the domain to which this Team Drive belongs. This
|
|
|
|
# restriction may be overridden by other sharing policies controlled outside of
|
|
|
|
# this Team Drive.
|
|
|
|
# Corresponds to the JSON property `domainUsersOnly`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :domain_users_only
|
|
|
|
alias_method :domain_users_only?, :domain_users_only
|
|
|
|
|
|
|
|
# Whether access to items inside this Team Drive is restricted to members of
|
|
|
|
# this Team Drive.
|
|
|
|
# Corresponds to the JSON property `teamMembersOnly`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :team_members_only
|
|
|
|
alias_method :team_members_only?, :team_members_only
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@admin_managed_restrictions = args[:admin_managed_restrictions] if args.key?(:admin_managed_restrictions)
|
|
|
|
@copy_requires_writer_permission = args[:copy_requires_writer_permission] if args.key?(:copy_requires_writer_permission)
|
|
|
|
@domain_users_only = args[:domain_users_only] if args.key?(:domain_users_only)
|
|
|
|
@team_members_only = args[:team_members_only] if args.key?(:team_members_only)
|
|
|
|
end
|
|
|
|
end
|
2017-03-10 21:11:09 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# A list of Team Drives.
|
|
|
|
class TeamDriveList
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# The list of Team Drives.
|
|
|
|
# Corresponds to the JSON property `items`
|
|
|
|
# @return [Array<Google::Apis::DriveV2::TeamDrive>]
|
|
|
|
attr_accessor :items
|
|
|
|
|
|
|
|
# This is always drive#teamDriveList
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# The page token for the next page of Team Drives.
|
|
|
|
# Corresponds to the JSON property `nextPageToken`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :next_page_token
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
|
|
|
@items = args[:items] if args.key?(:items)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-12-14 22:27:57 +00:00
|
|
|
# Information about a Drive user.
|
2015-06-23 23:05:46 +00:00
|
|
|
class User
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# A plain text displayable name for this user.
|
|
|
|
# Corresponds to the JSON property `displayName`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :display_name
|
|
|
|
|
|
|
|
# The email address of the user.
|
|
|
|
# Corresponds to the JSON property `emailAddress`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :email_address
|
|
|
|
|
|
|
|
# Whether this user is the same as the authenticated user for whom the request
|
|
|
|
# was made.
|
|
|
|
# Corresponds to the JSON property `isAuthenticatedUser`
|
|
|
|
# @return [Boolean]
|
|
|
|
attr_accessor :is_authenticated_user
|
|
|
|
alias_method :is_authenticated_user?, :is_authenticated_user
|
|
|
|
|
|
|
|
# This is always drive#user.
|
|
|
|
# Corresponds to the JSON property `kind`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :kind
|
|
|
|
|
|
|
|
# The user's ID as visible in the permissions collection.
|
|
|
|
# Corresponds to the JSON property `permissionId`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :permission_id
|
|
|
|
|
|
|
|
# The user's profile picture.
|
|
|
|
# Corresponds to the JSON property `picture`
|
|
|
|
# @return [Google::Apis::DriveV2::User::Picture]
|
|
|
|
attr_accessor :picture
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@display_name = args[:display_name] if args.key?(:display_name)
|
|
|
|
@email_address = args[:email_address] if args.key?(:email_address)
|
|
|
|
@is_authenticated_user = args[:is_authenticated_user] if args.key?(:is_authenticated_user)
|
|
|
|
@kind = args[:kind] if args.key?(:kind)
|
|
|
|
@permission_id = args[:permission_id] if args.key?(:permission_id)
|
|
|
|
@picture = args[:picture] if args.key?(:picture)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
# The user's profile picture.
|
|
|
|
class Picture
|
|
|
|
include Google::Apis::Core::Hashable
|
|
|
|
|
|
|
|
# A URL that points to a profile picture of this user.
|
|
|
|
# Corresponds to the JSON property `url`
|
|
|
|
# @return [String]
|
|
|
|
attr_accessor :url
|
|
|
|
|
|
|
|
def initialize(**args)
|
|
|
|
update!(**args)
|
|
|
|
end
|
|
|
|
|
|
|
|
# Update properties of this object
|
|
|
|
def update!(**args)
|
2016-01-29 22:32:46 +00:00
|
|
|
@url = args[:url] if args.key?(:url)
|
2015-06-23 23:05:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|