From 9a87638ca2427aeeb4e94b0c2833bbfd036fa765 Mon Sep 17 00:00:00 2001 From: Google APIs Date: Sat, 21 Apr 2018 00:37:04 +0000 Subject: [PATCH] Autogenerated update (2018-04-21) Update: - bigquery_v2 - cloudresourcemanager_v1 - cloudresourcemanager_v1beta1 - cloudresourcemanager_v2 - cloudresourcemanager_v2beta1 - datastore_v1 - datastore_v1beta1 - datastore_v1beta3 - firestore_v1beta1 --- api_names_out.yaml | 8 +++ generated/google/apis/bigquery_v2.rb | 2 +- generated/google/apis/bigquery_v2/classes.rb | 70 +++++++++++++++++-- .../apis/bigquery_v2/representations.rb | 22 ++++++ .../google/apis/cloudresourcemanager_v1.rb | 2 +- .../apis/cloudresourcemanager_v1/classes.rb | 2 +- .../apis/cloudresourcemanager_v1beta1.rb | 2 +- .../cloudresourcemanager_v1beta1/classes.rb | 2 +- .../google/apis/cloudresourcemanager_v2.rb | 2 +- .../apis/cloudresourcemanager_v2/classes.rb | 2 +- .../apis/cloudresourcemanager_v2beta1.rb | 2 +- .../cloudresourcemanager_v2beta1/classes.rb | 2 +- generated/google/apis/datastore_v1.rb | 4 +- generated/google/apis/datastore_v1/service.rb | 2 +- generated/google/apis/datastore_v1beta1.rb | 4 +- .../google/apis/datastore_v1beta1/service.rb | 2 +- generated/google/apis/datastore_v1beta3.rb | 4 +- .../google/apis/datastore_v1beta3/service.rb | 2 +- generated/google/apis/firestore_v1beta1.rb | 4 +- .../google/apis/firestore_v1beta1/service.rb | 2 +- 20 files changed, 115 insertions(+), 27 deletions(-) diff --git a/api_names_out.yaml b/api_names_out.yaml index 477d7f65e..85cad039a 100644 --- a/api_names_out.yaml +++ b/api_names_out.yaml @@ -9341,6 +9341,9 @@ "/bigquery:v2/BigtableOptions/columnFamilies/column_family": column_family "/bigquery:v2/BigtableOptions/ignoreUnspecifiedColumnFamilies": ignore_unspecified_column_families "/bigquery:v2/BigtableOptions/readRowkeyAsString": read_rowkey_as_string +"/bigquery:v2/Clustering": clustering +"/bigquery:v2/Clustering/fields": fields +"/bigquery:v2/Clustering/fields/field": field "/bigquery:v2/CsvOptions": csv_options "/bigquery:v2/CsvOptions/allowJaggedRows": allow_jagged_rows "/bigquery:v2/CsvOptions/allowQuotedNewlines": allow_quoted_newlines @@ -9463,6 +9466,7 @@ "/bigquery:v2/GetServiceAccountResponse/email": email "/bigquery:v2/GetServiceAccountResponse/kind": kind "/bigquery:v2/GoogleSheetsOptions": google_sheets_options +"/bigquery:v2/GoogleSheetsOptions/range": range "/bigquery:v2/GoogleSheetsOptions/skipLeadingRows": skip_leading_rows "/bigquery:v2/Job": job "/bigquery:v2/Job/configuration": configuration @@ -9499,6 +9503,7 @@ "/bigquery:v2/JobConfigurationLoad/allowJaggedRows": allow_jagged_rows "/bigquery:v2/JobConfigurationLoad/allowQuotedNewlines": allow_quoted_newlines "/bigquery:v2/JobConfigurationLoad/autodetect": autodetect +"/bigquery:v2/JobConfigurationLoad/clustering": clustering "/bigquery:v2/JobConfigurationLoad/createDisposition": create_disposition "/bigquery:v2/JobConfigurationLoad/destinationEncryptionConfiguration": destination_encryption_configuration "/bigquery:v2/JobConfigurationLoad/destinationTable": destination_table @@ -9524,6 +9529,7 @@ "/bigquery:v2/JobConfigurationLoad/writeDisposition": write_disposition "/bigquery:v2/JobConfigurationQuery": job_configuration_query "/bigquery:v2/JobConfigurationQuery/allowLargeResults": allow_large_results +"/bigquery:v2/JobConfigurationQuery/clustering": clustering "/bigquery:v2/JobConfigurationQuery/createDisposition": create_disposition "/bigquery:v2/JobConfigurationQuery/defaultDataset": default_dataset "/bigquery:v2/JobConfigurationQuery/destinationEncryptionConfiguration": destination_encryption_configuration @@ -9697,6 +9703,7 @@ "/bigquery:v2/Streamingbuffer/estimatedRows": estimated_rows "/bigquery:v2/Streamingbuffer/oldestEntryTime": oldest_entry_time "/bigquery:v2/Table": table +"/bigquery:v2/Table/clustering": clustering "/bigquery:v2/Table/creationTime": creation_time "/bigquery:v2/Table/description": description "/bigquery:v2/Table/encryptionConfiguration": encryption_configuration @@ -9758,6 +9765,7 @@ "/bigquery:v2/TableList/nextPageToken": next_page_token "/bigquery:v2/TableList/tables": tables "/bigquery:v2/TableList/tables/table": table +"/bigquery:v2/TableList/tables/table/clustering": clustering "/bigquery:v2/TableList/tables/table/creationTime": creation_time "/bigquery:v2/TableList/tables/table/expirationTime": expiration_time "/bigquery:v2/TableList/tables/table/friendlyName": friendly_name diff --git a/generated/google/apis/bigquery_v2.rb b/generated/google/apis/bigquery_v2.rb index 9773aa8a7..eae1489d1 100644 --- a/generated/google/apis/bigquery_v2.rb +++ b/generated/google/apis/bigquery_v2.rb @@ -25,7 +25,7 @@ module Google # @see https://cloud.google.com/bigquery/ module BigqueryV2 VERSION = 'V2' - REVISION = '20180401' + REVISION = '20180416' # View and manage your data in Google BigQuery AUTH_BIGQUERY = 'https://www.googleapis.com/auth/bigquery' diff --git a/generated/google/apis/bigquery_v2/classes.rb b/generated/google/apis/bigquery_v2/classes.rb index 7ef2707d7..8d39378bd 100644 --- a/generated/google/apis/bigquery_v2/classes.rb +++ b/generated/google/apis/bigquery_v2/classes.rb @@ -195,6 +195,27 @@ module Google end end + # + class Clustering + include Google::Apis::Core::Hashable + + # [Repeated] One or more fields on which data should be clustered. Only top- + # level, non-repeated, simple-type fields are supported. The order of the fields + # will determine how clusters will be generated, so it is important. + # Corresponds to the JSON property `fields` + # @return [Array] + attr_accessor :fields + + def initialize(**args) + update!(**args) + end + + # Update properties of this object + def update!(**args) + @fields = args[:fields] if args.key?(:fields) + end + end + # class CsvOptions include Google::Apis::Core::Hashable @@ -1095,6 +1116,12 @@ module Google class GoogleSheetsOptions include Google::Apis::Core::Hashable + # [Experimental] [Optional] Range of a sheet to query from. Only used when non- + # empty. Typical format: !: + # Corresponds to the JSON property `range` + # @return [String] + attr_accessor :range + # [Optional] The number of rows at the top of a sheet that BigQuery will skip # when reading the data. The default value is 0. This property is useful if you # have header rows that should be skipped. When autodetect is on, behavior is @@ -1116,6 +1143,7 @@ module Google # Update properties of this object def update!(**args) + @range = args[:range] if args.key?(:range) @skip_leading_rows = args[:skip_leading_rows] if args.key?(:skip_leading_rows) end end @@ -1362,13 +1390,20 @@ module Google attr_accessor :allow_quoted_newlines alias_method :allow_quoted_newlines?, :allow_quoted_newlines - # Indicates if we should automatically infer the options and schema for CSV and - # JSON sources. + # [Optional] Indicates if we should automatically infer the options and schema + # for CSV and JSON sources. # Corresponds to the JSON property `autodetect` # @return [Boolean] attr_accessor :autodetect alias_method :autodetect?, :autodetect + # [Experimental] Clustering specification for the destination table. Must be + # specified with time-based partitioning, data in the table will be first + # partitioned and subsequently clustered. + # Corresponds to the JSON property `clustering` + # @return [Google::Apis::BigqueryV2::Clustering] + attr_accessor :clustering + # [Optional] Specifies whether the job is allowed to create new tables. The # following values are supported: CREATE_IF_NEEDED: If the table does not exist, # BigQuery creates the table. CREATE_NEVER: The table must already exist. If it @@ -1520,7 +1555,7 @@ module Google # @return [Array] attr_accessor :source_uris - # If specified, configures time-based partitioning for the destination table. + # Time-based partitioning specification for the destination table. # Corresponds to the JSON property `timePartitioning` # @return [Google::Apis::BigqueryV2::TimePartitioning] attr_accessor :time_partitioning @@ -1546,6 +1581,7 @@ module Google @allow_jagged_rows = args[:allow_jagged_rows] if args.key?(:allow_jagged_rows) @allow_quoted_newlines = args[:allow_quoted_newlines] if args.key?(:allow_quoted_newlines) @autodetect = args[:autodetect] if args.key?(:autodetect) + @clustering = args[:clustering] if args.key?(:clustering) @create_disposition = args[:create_disposition] if args.key?(:create_disposition) @destination_encryption_configuration = args[:destination_encryption_configuration] if args.key?(:destination_encryption_configuration) @destination_table = args[:destination_table] if args.key?(:destination_table) @@ -1583,6 +1619,13 @@ module Google attr_accessor :allow_large_results alias_method :allow_large_results?, :allow_large_results + # [Experimental] Clustering specification for the destination table. Must be + # specified with time-based partitioning, data in the table will be first + # partitioned and subsequently clustered. + # Corresponds to the JSON property `clustering` + # @return [Google::Apis::BigqueryV2::Clustering] + attr_accessor :clustering + # [Optional] Specifies whether the job is allowed to create new tables. The # following values are supported: CREATE_IF_NEEDED: If the table does not exist, # BigQuery creates the table. CREATE_NEVER: The table must already exist. If it @@ -1683,7 +1726,7 @@ module Google # @return [Hash] attr_accessor :table_definitions - # If specified, configures time-based partitioning for the destination table. + # Time-based partitioning specification for the destination table. # Corresponds to the JSON property `timePartitioning` # @return [Google::Apis::BigqueryV2::TimePartitioning] attr_accessor :time_partitioning @@ -1732,6 +1775,7 @@ module Google # Update properties of this object def update!(**args) @allow_large_results = args[:allow_large_results] if args.key?(:allow_large_results) + @clustering = args[:clustering] if args.key?(:clustering) @create_disposition = args[:create_disposition] if args.key?(:create_disposition) @default_dataset = args[:default_dataset] if args.key?(:default_dataset) @destination_encryption_configuration = args[:destination_encryption_configuration] if args.key?(:destination_encryption_configuration) @@ -2780,6 +2824,13 @@ module Google class Table include Google::Apis::Core::Hashable + # [Experimental] Clustering specification for the table. Must be specified with + # time-based partitioning, data in the table will be first partitioned and + # subsequently clustered. + # Corresponds to the JSON property `clustering` + # @return [Google::Apis::BigqueryV2::Clustering] + attr_accessor :clustering + # [Output-only] The time when this table was created, in milliseconds since the # epoch. # Corresponds to the JSON property `creationTime` @@ -2893,7 +2944,7 @@ module Google # @return [Google::Apis::BigqueryV2::TableReference] attr_accessor :table_reference - # If specified, configures time-based partitioning for this table. + # Time-based partitioning specification for this table. # Corresponds to the JSON property `timePartitioning` # @return [Google::Apis::BigqueryV2::TimePartitioning] attr_accessor :time_partitioning @@ -2917,6 +2968,7 @@ module Google # Update properties of this object def update!(**args) + @clustering = args[:clustering] if args.key?(:clustering) @creation_time = args[:creation_time] if args.key?(:creation_time) @description = args[:description] if args.key?(:description) @encryption_configuration = args[:encryption_configuration] if args.key?(:encryption_configuration) @@ -3232,6 +3284,11 @@ module Google class Table include Google::Apis::Core::Hashable + # [Experimental] Clustering specification for this table, if configured. + # Corresponds to the JSON property `clustering` + # @return [Google::Apis::BigqueryV2::Clustering] + attr_accessor :clustering + # The time when this table was created, in milliseconds since the epoch. # Corresponds to the JSON property `creationTime` # @return [Fixnum] @@ -3270,7 +3327,7 @@ module Google # @return [Google::Apis::BigqueryV2::TableReference] attr_accessor :table_reference - # The time-based partitioning for this table. + # The time-based partitioning specification for this table, if configured. # Corresponds to the JSON property `timePartitioning` # @return [Google::Apis::BigqueryV2::TimePartitioning] attr_accessor :time_partitioning @@ -3291,6 +3348,7 @@ module Google # Update properties of this object def update!(**args) + @clustering = args[:clustering] if args.key?(:clustering) @creation_time = args[:creation_time] if args.key?(:creation_time) @expiration_time = args[:expiration_time] if args.key?(:expiration_time) @friendly_name = args[:friendly_name] if args.key?(:friendly_name) diff --git a/generated/google/apis/bigquery_v2/representations.rb b/generated/google/apis/bigquery_v2/representations.rb index 22499bc53..e414c486f 100644 --- a/generated/google/apis/bigquery_v2/representations.rb +++ b/generated/google/apis/bigquery_v2/representations.rb @@ -40,6 +40,12 @@ module Google include Google::Apis::Core::JsonObjectSupport end + class Clustering + class Representation < Google::Apis::Core::JsonRepresentation; end + + include Google::Apis::Core::JsonObjectSupport + end + class CsvOptions class Representation < Google::Apis::Core::JsonRepresentation; end @@ -422,6 +428,13 @@ module Google end end + class Clustering + # @private + class Representation < Google::Apis::Core::JsonRepresentation + collection :fields, as: 'fields' + end + end + class CsvOptions # @private class Representation < Google::Apis::Core::JsonRepresentation @@ -622,6 +635,7 @@ module Google class GoogleSheetsOptions # @private class Representation < Google::Apis::Core::JsonRepresentation + property :range, as: 'range' property :skip_leading_rows, :numeric_string => true, as: 'skipLeadingRows' end end @@ -691,6 +705,8 @@ module Google property :allow_jagged_rows, as: 'allowJaggedRows' property :allow_quoted_newlines, as: 'allowQuotedNewlines' property :autodetect, as: 'autodetect' + property :clustering, as: 'clustering', class: Google::Apis::BigqueryV2::Clustering, decorator: Google::Apis::BigqueryV2::Clustering::Representation + property :create_disposition, as: 'createDisposition' property :destination_encryption_configuration, as: 'destinationEncryptionConfiguration', class: Google::Apis::BigqueryV2::EncryptionConfiguration, decorator: Google::Apis::BigqueryV2::EncryptionConfiguration::Representation @@ -723,6 +739,8 @@ module Google # @private class Representation < Google::Apis::Core::JsonRepresentation property :allow_large_results, as: 'allowLargeResults' + property :clustering, as: 'clustering', class: Google::Apis::BigqueryV2::Clustering, decorator: Google::Apis::BigqueryV2::Clustering::Representation + property :create_disposition, as: 'createDisposition' property :default_dataset, as: 'defaultDataset', class: Google::Apis::BigqueryV2::DatasetReference, decorator: Google::Apis::BigqueryV2::DatasetReference::Representation @@ -1020,6 +1038,8 @@ module Google class Table # @private class Representation < Google::Apis::Core::JsonRepresentation + property :clustering, as: 'clustering', class: Google::Apis::BigqueryV2::Clustering, decorator: Google::Apis::BigqueryV2::Clustering::Representation + property :creation_time, :numeric_string => true, as: 'creationTime' property :description, as: 'description' property :encryption_configuration, as: 'encryptionConfiguration', class: Google::Apis::BigqueryV2::EncryptionConfiguration, decorator: Google::Apis::BigqueryV2::EncryptionConfiguration::Representation @@ -1135,6 +1155,8 @@ module Google class Table # @private class Representation < Google::Apis::Core::JsonRepresentation + property :clustering, as: 'clustering', class: Google::Apis::BigqueryV2::Clustering, decorator: Google::Apis::BigqueryV2::Clustering::Representation + property :creation_time, :numeric_string => true, as: 'creationTime' property :expiration_time, :numeric_string => true, as: 'expirationTime' property :friendly_name, as: 'friendlyName' diff --git a/generated/google/apis/cloudresourcemanager_v1.rb b/generated/google/apis/cloudresourcemanager_v1.rb index 1c62f5b84..ee5b33cab 100644 --- a/generated/google/apis/cloudresourcemanager_v1.rb +++ b/generated/google/apis/cloudresourcemanager_v1.rb @@ -26,7 +26,7 @@ module Google # @see https://cloud.google.com/resource-manager module CloudresourcemanagerV1 VERSION = 'V1' - REVISION = '20180416' + REVISION = '20180418' # 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/cloudresourcemanager_v1/classes.rb b/generated/google/apis/cloudresourcemanager_v1/classes.rb index 1178a458a..753a8eb1b 100644 --- a/generated/google/apis/cloudresourcemanager_v1/classes.rb +++ b/generated/google/apis/cloudresourcemanager_v1/classes.rb @@ -171,7 +171,7 @@ module Google # * `allAuthenticatedUsers`: A special identifier that represents anyone # who is authenticated with a Google account or a service account. # * `user:`emailid``: An email address that represents a specific Google - # account. For example, `alice@gmail.com` or `joe@example.com`. + # account. For example, `alice@gmail.com` . # * `serviceAccount:`emailid``: An email address that represents a service # account. For example, `my-other-app@appspot.gserviceaccount.com`. # * `group:`emailid``: An email address that represents a Google group. diff --git a/generated/google/apis/cloudresourcemanager_v1beta1.rb b/generated/google/apis/cloudresourcemanager_v1beta1.rb index 7ce8b35b3..3019036f0 100644 --- a/generated/google/apis/cloudresourcemanager_v1beta1.rb +++ b/generated/google/apis/cloudresourcemanager_v1beta1.rb @@ -26,7 +26,7 @@ module Google # @see https://cloud.google.com/resource-manager module CloudresourcemanagerV1beta1 VERSION = 'V1beta1' - REVISION = '20180416' + REVISION = '20180418' # 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/cloudresourcemanager_v1beta1/classes.rb b/generated/google/apis/cloudresourcemanager_v1beta1/classes.rb index 7291980b3..af7c9f970 100644 --- a/generated/google/apis/cloudresourcemanager_v1beta1/classes.rb +++ b/generated/google/apis/cloudresourcemanager_v1beta1/classes.rb @@ -171,7 +171,7 @@ module Google # * `allAuthenticatedUsers`: A special identifier that represents anyone # who is authenticated with a Google account or a service account. # * `user:`emailid``: An email address that represents a specific Google - # account. For example, `alice@gmail.com` or `joe@example.com`. + # account. For example, `alice@gmail.com` . # * `serviceAccount:`emailid``: An email address that represents a service # account. For example, `my-other-app@appspot.gserviceaccount.com`. # * `group:`emailid``: An email address that represents a Google group. diff --git a/generated/google/apis/cloudresourcemanager_v2.rb b/generated/google/apis/cloudresourcemanager_v2.rb index f5f37be58..da34c7eec 100644 --- a/generated/google/apis/cloudresourcemanager_v2.rb +++ b/generated/google/apis/cloudresourcemanager_v2.rb @@ -26,7 +26,7 @@ module Google # @see https://cloud.google.com/resource-manager module CloudresourcemanagerV2 VERSION = 'V2' - REVISION = '20180416' + REVISION = '20180418' # 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/cloudresourcemanager_v2/classes.rb b/generated/google/apis/cloudresourcemanager_v2/classes.rb index 64a0fc704..21128f74e 100644 --- a/generated/google/apis/cloudresourcemanager_v2/classes.rb +++ b/generated/google/apis/cloudresourcemanager_v2/classes.rb @@ -149,7 +149,7 @@ module Google # * `allAuthenticatedUsers`: A special identifier that represents anyone # who is authenticated with a Google account or a service account. # * `user:`emailid``: An email address that represents a specific Google - # account. For example, `alice@gmail.com` or `joe@example.com`. + # account. For example, `alice@gmail.com` . # * `serviceAccount:`emailid``: An email address that represents a service # account. For example, `my-other-app@appspot.gserviceaccount.com`. # * `group:`emailid``: An email address that represents a Google group. diff --git a/generated/google/apis/cloudresourcemanager_v2beta1.rb b/generated/google/apis/cloudresourcemanager_v2beta1.rb index f29c9f511..2887bdfff 100644 --- a/generated/google/apis/cloudresourcemanager_v2beta1.rb +++ b/generated/google/apis/cloudresourcemanager_v2beta1.rb @@ -26,7 +26,7 @@ module Google # @see https://cloud.google.com/resource-manager module CloudresourcemanagerV2beta1 VERSION = 'V2beta1' - REVISION = '20180416' + REVISION = '20180418' # 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/cloudresourcemanager_v2beta1/classes.rb b/generated/google/apis/cloudresourcemanager_v2beta1/classes.rb index 4be7d9aa4..ea37bbfbc 100644 --- a/generated/google/apis/cloudresourcemanager_v2beta1/classes.rb +++ b/generated/google/apis/cloudresourcemanager_v2beta1/classes.rb @@ -149,7 +149,7 @@ module Google # * `allAuthenticatedUsers`: A special identifier that represents anyone # who is authenticated with a Google account or a service account. # * `user:`emailid``: An email address that represents a specific Google - # account. For example, `alice@gmail.com` or `joe@example.com`. + # account. For example, `alice@gmail.com` . # * `serviceAccount:`emailid``: An email address that represents a service # account. For example, `my-other-app@appspot.gserviceaccount.com`. # * `group:`emailid``: An email address that represents a Google group. diff --git a/generated/google/apis/datastore_v1.rb b/generated/google/apis/datastore_v1.rb index 852a89d10..5303c35c6 100644 --- a/generated/google/apis/datastore_v1.rb +++ b/generated/google/apis/datastore_v1.rb @@ -18,7 +18,7 @@ require 'google/apis/datastore_v1/representations.rb' module Google module Apis - # Google Cloud Datastore API + # Cloud Datastore API # # Accesses the schemaless NoSQL database to provide fully managed, robust, # scalable storage for your application. @@ -26,7 +26,7 @@ module Google # @see https://cloud.google.com/datastore/ module DatastoreV1 VERSION = 'V1' - REVISION = '20180321' + REVISION = '20180417' # 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/datastore_v1/service.rb b/generated/google/apis/datastore_v1/service.rb index 6a4b66a7b..c2475e9be 100644 --- a/generated/google/apis/datastore_v1/service.rb +++ b/generated/google/apis/datastore_v1/service.rb @@ -20,7 +20,7 @@ require 'google/apis/errors' module Google module Apis module DatastoreV1 - # Google Cloud Datastore API + # Cloud Datastore API # # Accesses the schemaless NoSQL database to provide fully managed, robust, # scalable storage for your application. diff --git a/generated/google/apis/datastore_v1beta1.rb b/generated/google/apis/datastore_v1beta1.rb index f73f7e975..d175c110c 100644 --- a/generated/google/apis/datastore_v1beta1.rb +++ b/generated/google/apis/datastore_v1beta1.rb @@ -18,7 +18,7 @@ require 'google/apis/datastore_v1beta1/representations.rb' module Google module Apis - # Google Cloud Datastore API + # Cloud Datastore API # # Accesses the schemaless NoSQL database to provide fully managed, robust, # scalable storage for your application. @@ -26,7 +26,7 @@ module Google # @see https://cloud.google.com/datastore/ module DatastoreV1beta1 VERSION = 'V1beta1' - REVISION = '20180321' + REVISION = '20180417' # 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/datastore_v1beta1/service.rb b/generated/google/apis/datastore_v1beta1/service.rb index 7de5ace36..dec50730f 100644 --- a/generated/google/apis/datastore_v1beta1/service.rb +++ b/generated/google/apis/datastore_v1beta1/service.rb @@ -20,7 +20,7 @@ require 'google/apis/errors' module Google module Apis module DatastoreV1beta1 - # Google Cloud Datastore API + # Cloud Datastore API # # Accesses the schemaless NoSQL database to provide fully managed, robust, # scalable storage for your application. diff --git a/generated/google/apis/datastore_v1beta3.rb b/generated/google/apis/datastore_v1beta3.rb index a262c3d4b..0f3bd3d8a 100644 --- a/generated/google/apis/datastore_v1beta3.rb +++ b/generated/google/apis/datastore_v1beta3.rb @@ -18,7 +18,7 @@ require 'google/apis/datastore_v1beta3/representations.rb' module Google module Apis - # Google Cloud Datastore API + # Cloud Datastore API # # Accesses the schemaless NoSQL database to provide fully managed, robust, # scalable storage for your application. @@ -26,7 +26,7 @@ module Google # @see https://cloud.google.com/datastore/ module DatastoreV1beta3 VERSION = 'V1beta3' - REVISION = '20180321' + REVISION = '20180417' # 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/datastore_v1beta3/service.rb b/generated/google/apis/datastore_v1beta3/service.rb index d84f71fe3..ebc69f4e8 100644 --- a/generated/google/apis/datastore_v1beta3/service.rb +++ b/generated/google/apis/datastore_v1beta3/service.rb @@ -20,7 +20,7 @@ require 'google/apis/errors' module Google module Apis module DatastoreV1beta3 - # Google Cloud Datastore API + # Cloud Datastore API # # Accesses the schemaless NoSQL database to provide fully managed, robust, # scalable storage for your application. diff --git a/generated/google/apis/firestore_v1beta1.rb b/generated/google/apis/firestore_v1beta1.rb index 78aec634c..ff79c39fd 100644 --- a/generated/google/apis/firestore_v1beta1.rb +++ b/generated/google/apis/firestore_v1beta1.rb @@ -18,14 +18,14 @@ require 'google/apis/firestore_v1beta1/representations.rb' module Google module Apis - # Google Cloud Firestore API + # Cloud Firestore API # # # # @see https://cloud.google.com/firestore module FirestoreV1beta1 VERSION = 'V1beta1' - REVISION = '20180403' + REVISION = '20180418' # 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/firestore_v1beta1/service.rb b/generated/google/apis/firestore_v1beta1/service.rb index d416b5e38..e87380570 100644 --- a/generated/google/apis/firestore_v1beta1/service.rb +++ b/generated/google/apis/firestore_v1beta1/service.rb @@ -20,7 +20,7 @@ require 'google/apis/errors' module Google module Apis module FirestoreV1beta1 - # Google Cloud Firestore API + # Cloud Firestore API # # #