From 6f2a3577d145ba761b42e33d3b0091414dbec1cf Mon Sep 17 00:00:00 2001 From: Google APIs Date: Wed, 4 Mar 2020 00:37:34 +0000 Subject: [PATCH] Autogenerated update (2020-03-04) Update: - bigquerydatatransfer_v1 - cloudbuild_v1 - cloudbuild_v1alpha1 - cloudbuild_v1alpha2 - commentanalyzer_v1alpha1 - datacatalog_v1beta1 - ml_v1 - pagespeedonline_v5 - vision_v1 - vision_v1p1beta1 - vision_v1p2beta1 --- .../google/apis/bigquerydatatransfer_v1.rb | 2 +- generated/google/apis/chat_v1/classes.rb | 47 ++++++++++++ .../google/apis/chat_v1/representations.rb | 18 +++++ generated/google/apis/cloudbuild_v1.rb | 2 +- generated/google/apis/cloudbuild_v1alpha1.rb | 2 +- generated/google/apis/cloudbuild_v1alpha2.rb | 2 +- .../google/apis/commentanalyzer_v1alpha1.rb | 2 +- .../apis/commentanalyzer_v1alpha1/classes.rb | 4 +- generated/google/apis/datacatalog_v1beta1.rb | 2 +- .../apis/datacatalog_v1beta1/classes.rb | 27 +++++++ .../datacatalog_v1beta1/representations.rb | 15 ++++ .../apis/datacatalog_v1beta1/service.rb | 43 +++++++++++ generated/google/apis/ml_v1.rb | 2 +- generated/google/apis/ml_v1/classes.rb | 29 ++++++++ .../google/apis/ml_v1/representations.rb | 15 ++++ generated/google/apis/ml_v1/service.rb | 71 +++++++++++++++++++ generated/google/apis/pagespeedonline_v5.rb | 2 +- generated/google/apis/vision_v1.rb | 2 +- generated/google/apis/vision_v1p1beta1.rb | 2 +- generated/google/apis/vision_v1p2beta1.rb | 2 +- 20 files changed, 278 insertions(+), 13 deletions(-) diff --git a/generated/google/apis/bigquerydatatransfer_v1.rb b/generated/google/apis/bigquerydatatransfer_v1.rb index dd73e1e26..190ee1168 100644 --- a/generated/google/apis/bigquerydatatransfer_v1.rb +++ b/generated/google/apis/bigquerydatatransfer_v1.rb @@ -26,7 +26,7 @@ module Google # @see https://cloud.google.com/bigquery/ module BigquerydatatransferV1 VERSION = 'V1' - REVISION = '20200203' + REVISION = '20200226' # View and manage your data in Google BigQuery AUTH_BIGQUERY = 'https://www.googleapis.com/auth/bigquery' diff --git a/generated/google/apis/chat_v1/classes.rb b/generated/google/apis/chat_v1/classes.rb index 9dc0e13ee..df00e1033 100644 --- a/generated/google/apis/chat_v1/classes.rb +++ b/generated/google/apis/chat_v1/classes.rb @@ -282,11 +282,30 @@ module Google # @return [String] attr_accessor :config_complete_redirect_url + # The type of dialog event we have received. + # Corresponds to the JSON property `dialogEventType` + # @return [String] + attr_accessor :dialog_event_type + # The timestamp indicating when the event was dispatched. # Corresponds to the JSON property `eventTime` # @return [String] attr_accessor :event_time + # The list of form inputs we will supply to the bot. These are just the + # inputs from the dialog that are populated by the user. This will only be + # populated for CARD_CLICKED events. + # Corresponds to the JSON property `formInputs` + # @return [Array] + attr_accessor :form_inputs + + # Whether or not this event is related to dialogs request, submit or cancel. + # This will be set to true when we want a request/submit/cancel event. + # Corresponds to the JSON property `isDialogEvent` + # @return [Boolean] + attr_accessor :is_dialog_event + alias_method :is_dialog_event?, :is_dialog_event + # A message in Hangouts Chat. # Corresponds to the JSON property `message` # @return [Google::Apis::ChatV1::Message] @@ -330,7 +349,10 @@ module Google def update!(**args) @action = args[:action] if args.key?(:action) @config_complete_redirect_url = args[:config_complete_redirect_url] if args.key?(:config_complete_redirect_url) + @dialog_event_type = args[:dialog_event_type] if args.key?(:dialog_event_type) @event_time = args[:event_time] if args.key?(:event_time) + @form_inputs = args[:form_inputs] if args.key?(:form_inputs) + @is_dialog_event = args[:is_dialog_event] if args.key?(:is_dialog_event) @message = args[:message] if args.key?(:message) @space = args[:space] if args.key?(:space) @thread_key = args[:thread_key] if args.key?(:thread_key) @@ -386,6 +408,31 @@ module Google end end + # A single user input from an editable widget from Card API. + class FormInput + include Google::Apis::Core::Hashable + + # The name of the editable widget. + # Corresponds to the JSON property `name` + # @return [String] + attr_accessor :name + + # Value entered by user. + # 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) + @name = args[:name] if args.key?(:name) + @value = args[:value] if args.key?(:value) + end + end + # An image that is specified by a URL and can have an onclick action. class Image include Google::Apis::Core::Hashable diff --git a/generated/google/apis/chat_v1/representations.rb b/generated/google/apis/chat_v1/representations.rb index 8d0d5f5a2..ac441f525 100644 --- a/generated/google/apis/chat_v1/representations.rb +++ b/generated/google/apis/chat_v1/representations.rb @@ -82,6 +82,12 @@ module Google include Google::Apis::Core::JsonObjectSupport end + class FormInput + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + class Image class Representation < Google::Apis::Core::JsonRepresentation; end @@ -259,7 +265,11 @@ module Google property :action, as: 'action', class: Google::Apis::ChatV1::FormAction, decorator: Google::Apis::ChatV1::FormAction::Representation property :config_complete_redirect_url, as: 'configCompleteRedirectUrl' + property :dialog_event_type, as: 'dialogEventType' property :event_time, as: 'eventTime' + collection :form_inputs, as: 'formInputs', class: Google::Apis::ChatV1::FormInput, decorator: Google::Apis::ChatV1::FormInput::Representation + + property :is_dialog_event, as: 'isDialogEvent' property :message, as: 'message', class: Google::Apis::ChatV1::Message, decorator: Google::Apis::ChatV1::Message::Representation property :space, as: 'space', class: Google::Apis::ChatV1::Space, decorator: Google::Apis::ChatV1::Space::Representation @@ -287,6 +297,14 @@ module Google end end + class FormInput + # @private + class Representation < Google::Apis::Core::JsonRepresentation + property :name, as: 'name' + property :value, as: 'value' + end + end + class Image # @private class Representation < Google::Apis::Core::JsonRepresentation diff --git a/generated/google/apis/cloudbuild_v1.rb b/generated/google/apis/cloudbuild_v1.rb index da9f3e94d..22604ea76 100644 --- a/generated/google/apis/cloudbuild_v1.rb +++ b/generated/google/apis/cloudbuild_v1.rb @@ -25,7 +25,7 @@ module Google # @see https://cloud.google.com/cloud-build/docs/ module CloudbuildV1 VERSION = 'V1' - REVISION = '20200220' + REVISION = '20200229' # View and manage your data across Google Cloud Platform services AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' diff --git a/generated/google/apis/cloudbuild_v1alpha1.rb b/generated/google/apis/cloudbuild_v1alpha1.rb index 9914c98e8..45e4ed083 100644 --- a/generated/google/apis/cloudbuild_v1alpha1.rb +++ b/generated/google/apis/cloudbuild_v1alpha1.rb @@ -25,7 +25,7 @@ module Google # @see https://cloud.google.com/cloud-build/docs/ module CloudbuildV1alpha1 VERSION = 'V1alpha1' - REVISION = '20200220' + REVISION = '20200229' # View and manage your data across Google Cloud Platform services AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' diff --git a/generated/google/apis/cloudbuild_v1alpha2.rb b/generated/google/apis/cloudbuild_v1alpha2.rb index c71940cee..90e5888fd 100644 --- a/generated/google/apis/cloudbuild_v1alpha2.rb +++ b/generated/google/apis/cloudbuild_v1alpha2.rb @@ -25,7 +25,7 @@ module Google # @see https://cloud.google.com/cloud-build/docs/ module CloudbuildV1alpha2 VERSION = 'V1alpha2' - REVISION = '20200220' + REVISION = '20200229' # View and manage your data across Google Cloud Platform services AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' diff --git a/generated/google/apis/commentanalyzer_v1alpha1.rb b/generated/google/apis/commentanalyzer_v1alpha1.rb index 8916850ce..8b49a9fff 100644 --- a/generated/google/apis/commentanalyzer_v1alpha1.rb +++ b/generated/google/apis/commentanalyzer_v1alpha1.rb @@ -30,7 +30,7 @@ module Google # @see https://github.com/conversationai/perspectiveapi/blob/master/README.md module CommentanalyzerV1alpha1 VERSION = 'V1alpha1' - REVISION = '20200209' + REVISION = '20200301' # View your email address AUTH_USERINFO_EMAIL = 'https://www.googleapis.com/auth/userinfo.email' diff --git a/generated/google/apis/commentanalyzer_v1alpha1/classes.rb b/generated/google/apis/commentanalyzer_v1alpha1/classes.rb index 475d976d0..f6a959ea8 100644 --- a/generated/google/apis/commentanalyzer_v1alpha1/classes.rb +++ b/generated/google/apis/commentanalyzer_v1alpha1/classes.rb @@ -81,8 +81,8 @@ module Google # For the prod installation, known as Perspective API, at # blade:commentanalyzer-esf and commentanalyzer.googleapis.com, see # go/checker-models (internal) and - # https://github.com/conversationai/perspectiveapi/blob/master/api_reference.md# - # models. + # https://github.com/conversationai/perspectiveapi/blob/master/2-api/models.md# + # all-attribute-types. # Corresponds to the JSON property `requestedAttributes` # @return [Hash] attr_accessor :requested_attributes diff --git a/generated/google/apis/datacatalog_v1beta1.rb b/generated/google/apis/datacatalog_v1beta1.rb index ed5706789..1531c5362 100644 --- a/generated/google/apis/datacatalog_v1beta1.rb +++ b/generated/google/apis/datacatalog_v1beta1.rb @@ -26,7 +26,7 @@ module Google # @see https://cloud.google.com/data-catalog/docs/ module DatacatalogV1beta1 VERSION = 'V1beta1' - REVISION = '20200225' + REVISION = '20200302' # View and manage your data across Google Cloud Platform services AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' diff --git a/generated/google/apis/datacatalog_v1beta1/classes.rb b/generated/google/apis/datacatalog_v1beta1/classes.rb index 494077392..1abe9de90 100644 --- a/generated/google/apis/datacatalog_v1beta1/classes.rb +++ b/generated/google/apis/datacatalog_v1beta1/classes.rb @@ -781,6 +781,33 @@ module Google end end + # Response message for + # ListEntryGroups. + class GoogleCloudDatacatalogV1beta1ListEntryGroupsResponse + include Google::Apis::Core::Hashable + + # EntryGroup details. + # Corresponds to the JSON property `entryGroups` + # @return [Array] + attr_accessor :entry_groups + + # Token to retrieve the next page of results. It is set to empty if no items + # remain in 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) + @entry_groups = args[:entry_groups] if args.key?(:entry_groups) + @next_page_token = args[:next_page_token] if args.key?(:next_page_token) + end + end + # Response message for # ListPolicyTags. class GoogleCloudDatacatalogV1beta1ListPolicyTagsResponse diff --git a/generated/google/apis/datacatalog_v1beta1/representations.rb b/generated/google/apis/datacatalog_v1beta1/representations.rb index 7330a872f..a772db644 100644 --- a/generated/google/apis/datacatalog_v1beta1/representations.rb +++ b/generated/google/apis/datacatalog_v1beta1/representations.rb @@ -142,6 +142,12 @@ module Google include Google::Apis::Core::JsonObjectSupport end + class GoogleCloudDatacatalogV1beta1ListEntryGroupsResponse + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + class GoogleCloudDatacatalogV1beta1ListPolicyTagsResponse class Representation < Google::Apis::Core::JsonRepresentation; end @@ -484,6 +490,15 @@ module Google end end + class GoogleCloudDatacatalogV1beta1ListEntryGroupsResponse + # @private + class Representation < Google::Apis::Core::JsonRepresentation + collection :entry_groups, as: 'entryGroups', class: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1EntryGroup, decorator: Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1EntryGroup::Representation + + property :next_page_token, as: 'nextPageToken' + end + end + class GoogleCloudDatacatalogV1beta1ListPolicyTagsResponse # @private class Representation < Google::Apis::Core::JsonRepresentation diff --git a/generated/google/apis/datacatalog_v1beta1/service.rb b/generated/google/apis/datacatalog_v1beta1/service.rb index 1e93e2f14..18929d58d 100644 --- a/generated/google/apis/datacatalog_v1beta1/service.rb +++ b/generated/google/apis/datacatalog_v1beta1/service.rb @@ -303,6 +303,49 @@ module Google execute_or_queue_command(command, &block) end + # Lists entry groups. + # @param [String] parent + # Required. The name of the location that contains the entry groups, which can + # be + # provided in URL format. Example: + # * projects/`project_id`/locations/`location` + # @param [Fixnum] page_size + # Optional. The maximum number of items to return. Default is 10. Max limit is + # 1000. + # Throws an invalid argument for `page_size > 1000`. + # @param [String] page_token + # Optional. Token that specifies which page is requested. If empty, the first + # page is + # returned. + # @param [String] fields + # Selector specifying which fields to include in a partial response. + # @param [String] quota_user + # Available to use for quota purposes for server-side applications. Can be any + # arbitrary string assigned to a user, but should not exceed 40 characters. + # @param [Google::Apis::RequestOptions] options + # Request-specific options + # + # @yield [result, err] Result & error if block supplied + # @yieldparam result [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1ListEntryGroupsResponse] parsed result object + # @yieldparam err [StandardError] error object if request failed + # + # @return [Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1ListEntryGroupsResponse] + # + # @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 list_project_location_entry_groups(parent, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block) + command = make_simple_command(:get, 'v1beta1/{+parent}/entryGroups', options) + command.response_representation = Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1ListEntryGroupsResponse::Representation + command.response_class = Google::Apis::DatacatalogV1beta1::GoogleCloudDatacatalogV1beta1ListEntryGroupsResponse + command.params['parent'] = parent unless parent.nil? + command.query['pageSize'] = page_size unless page_size.nil? + command.query['pageToken'] = page_token unless page_token.nil? + command.query['fields'] = fields unless fields.nil? + command.query['quotaUser'] = quota_user unless quota_user.nil? + execute_or_queue_command(command, &block) + end + # Updates an EntryGroup. The user should enable the Data Catalog API in the # project identified by the `entry_group.name` parameter (see [Data Catalog # Resource Project] (/data-catalog/docs/concepts/resource-project) for more diff --git a/generated/google/apis/ml_v1.rb b/generated/google/apis/ml_v1.rb index f0fa967fe..c5469b6ab 100644 --- a/generated/google/apis/ml_v1.rb +++ b/generated/google/apis/ml_v1.rb @@ -25,7 +25,7 @@ module Google # @see https://cloud.google.com/ml/ module MlV1 VERSION = 'V1' - REVISION = '20200222' + REVISION = '20200229' # View and manage your data across Google Cloud Platform services AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' diff --git a/generated/google/apis/ml_v1/classes.rb b/generated/google/apis/ml_v1/classes.rb index fc1e1f69e..126f67a22 100644 --- a/generated/google/apis/ml_v1/classes.rb +++ b/generated/google/apis/ml_v1/classes.rb @@ -294,6 +294,28 @@ module Google end end + # Represents a custom encryption key configuration that can be applied to + # a resource. + class GoogleCloudMlV1EncryptionConfig + include Google::Apis::Core::Hashable + + # The Cloud KMS resource identifier of the customer managed encryption key + # used to protect a resource, such as a training job. Has the form: + # `projects/my-project/locations/my-region/keyRings/my-kr/cryptoKeys/my-key`. + # Corresponds to the JSON property `kmsKeyName` + # @return [String] + attr_accessor :kms_key_name + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + @kms_key_name = args[:kms_key_name] if args.key?(:kms_key_name) + end + end + # Request for explanations to be issued against a trained model. class GoogleCloudMlV1ExplainRequest include Google::Apis::Core::Hashable @@ -1469,6 +1491,12 @@ module Google # @return [Array] attr_accessor :args + # Represents a custom encryption key configuration that can be applied to + # a resource. + # Corresponds to the JSON property `encryptionConfig` + # @return [Google::Apis::MlV1::GoogleCloudMlV1EncryptionConfig] + attr_accessor :encryption_config + # Represents a set of hyperparameters to optimize. # Corresponds to the JSON property `hyperparameters` # @return [Google::Apis::MlV1::GoogleCloudMlV1HyperparameterSpec] @@ -1663,6 +1691,7 @@ module Google # Update properties of this object def update!(**args) @args = args[:args] if args.key?(:args) + @encryption_config = args[:encryption_config] if args.key?(:encryption_config) @hyperparameters = args[:hyperparameters] if args.key?(:hyperparameters) @job_dir = args[:job_dir] if args.key?(:job_dir) @master_config = args[:master_config] if args.key?(:master_config) diff --git a/generated/google/apis/ml_v1/representations.rb b/generated/google/apis/ml_v1/representations.rb index ce0b63c17..e04127970 100644 --- a/generated/google/apis/ml_v1/representations.rb +++ b/generated/google/apis/ml_v1/representations.rb @@ -70,6 +70,12 @@ module Google include Google::Apis::Core::JsonObjectSupport end + class GoogleCloudMlV1EncryptionConfig + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + class GoogleCloudMlV1ExplainRequest class Representation < Google::Apis::Core::JsonRepresentation; end @@ -367,6 +373,13 @@ module Google end end + class GoogleCloudMlV1EncryptionConfig + # @private + class Representation < Google::Apis::Core::JsonRepresentation + property :kms_key_name, as: 'kmsKeyName' + end + end + class GoogleCloudMlV1ExplainRequest # @private class Representation < Google::Apis::Core::JsonRepresentation @@ -632,6 +645,8 @@ module Google # @private class Representation < Google::Apis::Core::JsonRepresentation collection :args, as: 'args' + property :encryption_config, as: 'encryptionConfig', class: Google::Apis::MlV1::GoogleCloudMlV1EncryptionConfig, decorator: Google::Apis::MlV1::GoogleCloudMlV1EncryptionConfig::Representation + property :hyperparameters, as: 'hyperparameters', class: Google::Apis::MlV1::GoogleCloudMlV1HyperparameterSpec, decorator: Google::Apis::MlV1::GoogleCloudMlV1HyperparameterSpec::Representation property :job_dir, as: 'jobDir' diff --git a/generated/google/apis/ml_v1/service.rb b/generated/google/apis/ml_v1/service.rb index db6aa74cf..8ba931059 100644 --- a/generated/google/apis/ml_v1/service.rb +++ b/generated/google/apis/ml_v1/service.rb @@ -543,6 +543,77 @@ module Google execute_or_queue_command(command, &block) end + # Starts asynchronous cancellation on a long-running operation. The server + # makes a best effort to cancel the operation, but success is not + # guaranteed. If the server doesn't support this method, it returns + # `google.rpc.Code.UNIMPLEMENTED`. Clients can use + # Operations.GetOperation or + # other methods to check whether the cancellation succeeded or whether the + # operation completed despite cancellation. On successful cancellation, + # the operation is not deleted; instead, it becomes an operation with + # an Operation.error value with a google.rpc.Status.code of 1, + # corresponding to `Code.CANCELLED`. + # @param [String] name + # The name of the operation resource to be cancelled. + # @param [String] fields + # Selector specifying which fields to include in a partial response. + # @param [String] quota_user + # Available to use for quota purposes for server-side applications. Can be any + # arbitrary string assigned to a user, but should not exceed 40 characters. + # @param [Google::Apis::RequestOptions] options + # Request-specific options + # + # @yield [result, err] Result & error if block supplied + # @yieldparam result [Google::Apis::MlV1::GoogleProtobufEmpty] parsed result object + # @yieldparam err [StandardError] error object if request failed + # + # @return [Google::Apis::MlV1::GoogleProtobufEmpty] + # + # @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 cancel_project_location_operation(name, fields: nil, quota_user: nil, options: nil, &block) + command = make_simple_command(:post, 'v1/{+name}:cancel', options) + command.response_representation = Google::Apis::MlV1::GoogleProtobufEmpty::Representation + command.response_class = Google::Apis::MlV1::GoogleProtobufEmpty + command.params['name'] = name unless name.nil? + command.query['fields'] = fields unless fields.nil? + command.query['quotaUser'] = quota_user unless quota_user.nil? + execute_or_queue_command(command, &block) + end + + # Gets the latest state of a long-running operation. Clients can use this + # method to poll the operation result at intervals as recommended by the API + # service. + # @param [String] name + # The name of the operation resource. + # @param [String] fields + # Selector specifying which fields to include in a partial response. + # @param [String] quota_user + # Available to use for quota purposes for server-side applications. Can be any + # arbitrary string assigned to a user, but should not exceed 40 characters. + # @param [Google::Apis::RequestOptions] options + # Request-specific options + # + # @yield [result, err] Result & error if block supplied + # @yieldparam result [Google::Apis::MlV1::GoogleLongrunningOperation] parsed result object + # @yieldparam err [StandardError] error object if request failed + # + # @return [Google::Apis::MlV1::GoogleLongrunningOperation] + # + # @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 get_project_location_operation(name, fields: nil, quota_user: nil, options: nil, &block) + command = make_simple_command(:get, 'v1/{+name}', options) + command.response_representation = Google::Apis::MlV1::GoogleLongrunningOperation::Representation + command.response_class = Google::Apis::MlV1::GoogleLongrunningOperation + command.params['name'] = name unless name.nil? + command.query['fields'] = fields unless fields.nil? + command.query['quotaUser'] = quota_user unless quota_user.nil? + execute_or_queue_command(command, &block) + end + # Creates a model which will later contain one or more versions. # You must add at least one version before you can request predictions from # the model. Add versions by calling diff --git a/generated/google/apis/pagespeedonline_v5.rb b/generated/google/apis/pagespeedonline_v5.rb index 0f85572fd..544890754 100644 --- a/generated/google/apis/pagespeedonline_v5.rb +++ b/generated/google/apis/pagespeedonline_v5.rb @@ -28,7 +28,7 @@ module Google # @see https://developers.google.com/speed/docs/insights/v5/about module PagespeedonlineV5 VERSION = 'V5' - REVISION = '20200227' + REVISION = '20200303' # Associate you with your personal info on Google PENID = 'openid' diff --git a/generated/google/apis/vision_v1.rb b/generated/google/apis/vision_v1.rb index 6970e8494..48217279c 100644 --- a/generated/google/apis/vision_v1.rb +++ b/generated/google/apis/vision_v1.rb @@ -27,7 +27,7 @@ module Google # @see https://cloud.google.com/vision/ module VisionV1 VERSION = 'V1' - REVISION = '20191213' + REVISION = '20200229' # View and manage your data across Google Cloud Platform services AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' diff --git a/generated/google/apis/vision_v1p1beta1.rb b/generated/google/apis/vision_v1p1beta1.rb index 3b62168c6..f8242784a 100644 --- a/generated/google/apis/vision_v1p1beta1.rb +++ b/generated/google/apis/vision_v1p1beta1.rb @@ -27,7 +27,7 @@ module Google # @see https://cloud.google.com/vision/ module VisionV1p1beta1 VERSION = 'V1p1beta1' - REVISION = '20191105' + REVISION = '20200229' # View and manage your data across Google Cloud Platform services AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' diff --git a/generated/google/apis/vision_v1p2beta1.rb b/generated/google/apis/vision_v1p2beta1.rb index e3349dc7b..5ab2e4c09 100644 --- a/generated/google/apis/vision_v1p2beta1.rb +++ b/generated/google/apis/vision_v1p2beta1.rb @@ -27,7 +27,7 @@ module Google # @see https://cloud.google.com/vision/ module VisionV1p2beta1 VERSION = 'V1p2beta1' - REVISION = '20191105' + REVISION = '20200229' # View and manage your data across Google Cloud Platform services AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'