Autogenerated update (2018-09-29)
Update: - dataproc_v1beta2 - firebaserules_v1 - games_v1 - redis_v1 - testing_v1
This commit is contained in:
parent
d7e41fb2a9
commit
1ebc5ec383
|
@ -62591,6 +62591,7 @@
|
|||
"/firebaserules:v1/GetReleaseExecutableResponse/executableVersion": executable_version
|
||||
"/firebaserules:v1/GetReleaseExecutableResponse/language": language
|
||||
"/firebaserules:v1/GetReleaseExecutableResponse/rulesetName": ruleset_name
|
||||
"/firebaserules:v1/GetReleaseExecutableResponse/syncTime": sync_time
|
||||
"/firebaserules:v1/GetReleaseExecutableResponse/updateTime": update_time
|
||||
"/firebaserules:v1/Issue": issue
|
||||
"/firebaserules:v1/Issue/description": description
|
||||
|
@ -64555,6 +64556,7 @@
|
|||
"/games:v1/games.applications.get/language": language
|
||||
"/games:v1/games.applications.get/platformType": platform_type
|
||||
"/games:v1/games.applications.played": played_application
|
||||
"/games:v1/games.applications.played/builtinGameId": builtin_game_id
|
||||
"/games:v1/games.applications.played/consistencyToken": consistency_token
|
||||
"/games:v1/games.applications.verify": verify_application
|
||||
"/games:v1/games.applications.verify/applicationId": application_id
|
||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
|||
# @see https://cloud.google.com/dataproc/
|
||||
module DataprocV1beta2
|
||||
VERSION = 'V1beta2'
|
||||
REVISION = '20180914'
|
||||
REVISION = '20180925'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
|
@ -226,7 +226,7 @@ module Google
|
|||
# @return [Array<Google::Apis::DataprocV1beta2::NodeInitializationAction>]
|
||||
attr_accessor :initialization_actions
|
||||
|
||||
# Specifies the cluster auto delete related schedule configuration.
|
||||
# Specifies the cluster auto-delete schedule configuration.
|
||||
# Corresponds to the JSON property `lifecycleConfig`
|
||||
# @return [Google::Apis::DataprocV1beta2::LifecycleConfig]
|
||||
attr_accessor :lifecycle_config
|
||||
|
@ -1267,7 +1267,7 @@ module Google
|
|||
end
|
||||
end
|
||||
|
||||
# Specifies the cluster auto delete related schedule configuration.
|
||||
# Specifies the cluster auto-delete schedule configuration.
|
||||
class LifecycleConfig
|
||||
include Google::Apis::Core::Hashable
|
||||
|
||||
|
@ -1276,14 +1276,17 @@ module Google
|
|||
# @return [String]
|
||||
attr_accessor :auto_delete_time
|
||||
|
||||
# Optional. The life duration of cluster, the cluster will be auto-deleted at
|
||||
# the end of this duration.
|
||||
# Optional. The lifetime duration of cluster. The cluster will be auto-deleted
|
||||
# at the end of this period. Valid range: 10m, 14d.Example: "1d", to delete the
|
||||
# cluster 1 day after its creation..
|
||||
# Corresponds to the JSON property `autoDeleteTtl`
|
||||
# @return [String]
|
||||
attr_accessor :auto_delete_ttl
|
||||
|
||||
# Optional. The longest duration that cluster would keep alive while staying
|
||||
# idle; passing this threshold will cause cluster to be auto-deleted.
|
||||
# Optional. The duration to keep the cluster alive while idling. Passing this
|
||||
# threshold will cause the cluster to be deleted. Valid range: 10m, 14d.Example:
|
||||
# "10m", the minimum value, to delete the cluster when it has had no jobs
|
||||
# running for 10 minutes.
|
||||
# Corresponds to the JSON property `idleDeleteTtl`
|
||||
# @return [String]
|
||||
attr_accessor :idle_delete_ttl
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://firebase.google.com/docs/storage/security
|
||||
module FirebaserulesV1
|
||||
VERSION = 'V1'
|
||||
REVISION = '20180605'
|
||||
REVISION = '20180927'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
|
@ -196,6 +196,13 @@ module Google
|
|||
# @return [String]
|
||||
attr_accessor :ruleset_name
|
||||
|
||||
# Optional, indicates the freshness of the result. The response is
|
||||
# guaranteed to be the latest within an interval up to the
|
||||
# sync_time (inclusive).
|
||||
# Corresponds to the JSON property `syncTime`
|
||||
# @return [String]
|
||||
attr_accessor :sync_time
|
||||
|
||||
# Timestamp for the most recent `Release.update_time`.
|
||||
# Corresponds to the JSON property `updateTime`
|
||||
# @return [String]
|
||||
|
@ -211,6 +218,7 @@ module Google
|
|||
@executable_version = args[:executable_version] if args.key?(:executable_version)
|
||||
@language = args[:language] if args.key?(:language)
|
||||
@ruleset_name = args[:ruleset_name] if args.key?(:ruleset_name)
|
||||
@sync_time = args[:sync_time] if args.key?(:sync_time)
|
||||
@update_time = args[:update_time] if args.key?(:update_time)
|
||||
end
|
||||
end
|
||||
|
|
|
@ -198,6 +198,7 @@ module Google
|
|||
property :executable_version, as: 'executableVersion'
|
||||
property :language, as: 'language'
|
||||
property :ruleset_name, as: 'rulesetName'
|
||||
property :sync_time, as: 'syncTime'
|
||||
property :update_time, as: 'updateTime'
|
||||
end
|
||||
end
|
||||
|
|
|
@ -221,7 +221,7 @@ module Google
|
|||
# Format: `projects/`project_id`/releases/`release_id``
|
||||
# @param [String] executable_version
|
||||
# The requested runtime executable version.
|
||||
# Defaults to FIREBASE_RULES_EXECUTABLE_V1
|
||||
# Defaults to FIREBASE_RULES_EXECUTABLE_V1.
|
||||
# @param [String] fields
|
||||
# Selector specifying which fields to include in a partial response.
|
||||
# @param [String] quota_user
|
||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
|||
# @see https://developers.google.com/games/services/
|
||||
module GamesV1
|
||||
VERSION = 'V1'
|
||||
REVISION = '20180913'
|
||||
REVISION = '20180920'
|
||||
|
||||
# View and manage its own configuration data in your Google Drive
|
||||
AUTH_DRIVE_APPDATA = 'https://www.googleapis.com/auth/drive.appdata'
|
||||
|
|
|
@ -371,6 +371,8 @@ module Google
|
|||
end
|
||||
|
||||
# Indicate that the the currently authenticated user is playing your application.
|
||||
# @param [String] builtin_game_id
|
||||
# Override used only by built-in games in Play Games application.
|
||||
# @param [String] fields
|
||||
# Selector specifying which fields to include in a partial response.
|
||||
# @param [String] quota_user
|
||||
|
@ -390,8 +392,9 @@ module Google
|
|||
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
|
||||
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
|
||||
# @raise [Google::Apis::AuthorizationError] Authorization is required
|
||||
def played_application(fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
||||
def played_application(builtin_game_id: nil, fields: nil, quota_user: nil, user_ip: nil, options: nil, &block)
|
||||
command = make_simple_command(:post, 'applications/played', options)
|
||||
command.query['builtinGameId'] = builtin_game_id unless builtin_game_id.nil?
|
||||
command.query['fields'] = fields unless fields.nil?
|
||||
command.query['quotaUser'] = quota_user unless quota_user.nil?
|
||||
command.query['userIp'] = user_ip unless user_ip.nil?
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://cloud.google.com/memorystore/docs/redis/
|
||||
module RedisV1
|
||||
VERSION = 'V1'
|
||||
REVISION = '20180906'
|
||||
REVISION = '20180927'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
|
@ -75,7 +75,7 @@ module Google
|
|||
# @return [String]
|
||||
attr_accessor :api_version
|
||||
|
||||
# Specifies if cancellation was requested for the operaiton.
|
||||
# Specifies if cancellation was requested for the operation.
|
||||
# Corresponds to the JSON property `cancelRequested`
|
||||
# @return [Boolean]
|
||||
attr_accessor :cancel_requested
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://developers.google.com/cloud-test-lab/
|
||||
module TestingV1
|
||||
VERSION = 'V1'
|
||||
REVISION = '20180919'
|
||||
REVISION = '20180927'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
|
@ -581,14 +581,13 @@ module Google
|
|||
# @return [String]
|
||||
attr_accessor :id
|
||||
|
||||
# Represents a whole or partial calendar date, e.g. a birthday. The time of day
|
||||
# Represents a whole calendar date, for example date of birth. The time of day
|
||||
# and time zone are either specified elsewhere or are not significant. The date
|
||||
# is relative to the Proleptic Gregorian Calendar. This can represent:
|
||||
# * A full date, with non-zero year, month and day values
|
||||
# * A month and day value, with a zero year, e.g. an anniversary
|
||||
# * A year on its own, with zero month and day values
|
||||
# * A year and month value, with a zero day, e.g. a credit card expiration date
|
||||
# Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
|
||||
# is relative to the Proleptic Gregorian Calendar. The day can be 0 to
|
||||
# represent a year and month where the day is not significant, for example
|
||||
# credit card expiration date. The year can be 0 to represent a month and day
|
||||
# independent of year, for example anniversary date. Related types are
|
||||
# google.type.TimeOfDay and `google.protobuf.Timestamp`.
|
||||
# Corresponds to the JSON property `releaseDate`
|
||||
# @return [Google::Apis::TestingV1::Date]
|
||||
attr_accessor :release_date
|
||||
|
@ -789,26 +788,24 @@ module Google
|
|||
end
|
||||
end
|
||||
|
||||
# Represents a whole or partial calendar date, e.g. a birthday. The time of day
|
||||
# Represents a whole calendar date, for example date of birth. The time of day
|
||||
# and time zone are either specified elsewhere or are not significant. The date
|
||||
# is relative to the Proleptic Gregorian Calendar. This can represent:
|
||||
# * A full date, with non-zero year, month and day values
|
||||
# * A month and day value, with a zero year, e.g. an anniversary
|
||||
# * A year on its own, with zero month and day values
|
||||
# * A year and month value, with a zero day, e.g. a credit card expiration date
|
||||
# Related types are google.type.TimeOfDay and `google.protobuf.Timestamp`.
|
||||
# is relative to the Proleptic Gregorian Calendar. The day can be 0 to
|
||||
# represent a year and month where the day is not significant, for example
|
||||
# credit card expiration date. The year can be 0 to represent a month and day
|
||||
# independent of year, for example anniversary date. Related types are
|
||||
# google.type.TimeOfDay and `google.protobuf.Timestamp`.
|
||||
class Date
|
||||
include Google::Apis::Core::Hashable
|
||||
|
||||
# Day of month. Must be from 1 to 31 and valid for the year and month, or 0
|
||||
# if specifying a year by itself or a year and month where the day is not
|
||||
# significant.
|
||||
# if specifying a year/month where the day is not significant.
|
||||
# Corresponds to the JSON property `day`
|
||||
# @return [Fixnum]
|
||||
attr_accessor :day
|
||||
|
||||
# Month of year. Must be from 1 to 12, or 0 if specifying a year without a
|
||||
# month and day.
|
||||
# Month of year. Must be from 1 to 12, or 0 if specifying a date without a
|
||||
# month.
|
||||
# Corresponds to the JSON property `month`
|
||||
# @return [Fixnum]
|
||||
attr_accessor :month
|
||||
|
|
Loading…
Reference in New Issue