diff --git a/api_names_out.yaml b/api_names_out.yaml index 1045a0e7f..3fb44184c 100644 --- a/api_names_out.yaml +++ b/api_names_out.yaml @@ -158173,6 +158173,7 @@ "/vectortile:v1/key": key "/vectortile:v1/quotaUser": quota_user "/vectortile:v1/vectortile.featuretiles.get": get_featuretile +"/vectortile:v1/vectortile.featuretiles.get/alwaysIncludeBuildingFootprints": always_include_building_footprints "/vectortile:v1/vectortile.featuretiles.get/clientInfo.apiClient": client_info_api_client "/vectortile:v1/vectortile.featuretiles.get/clientInfo.applicationId": client_info_application_id "/vectortile:v1/vectortile.featuretiles.get/clientInfo.applicationVersion": client_info_application_version diff --git a/generated/google-apis-vectortile_v1/CHANGELOG.md b/generated/google-apis-vectortile_v1/CHANGELOG.md index ea2c0c823..8d93bd388 100644 --- a/generated/google-apis-vectortile_v1/CHANGELOG.md +++ b/generated/google-apis-vectortile_v1/CHANGELOG.md @@ -1,5 +1,10 @@ # Release history for google-apis-vectortile_v1 +### v0.2.0 (2021-01-20) + +* Regenerated from discovery document revision 20210118 +* Regenerated using generator version 0.1.2 + ### v0.1.0 (2021-01-07) * Regenerated using generator version 0.1.1 diff --git a/generated/google-apis-vectortile_v1/lib/google/apis/vectortile_v1/classes.rb b/generated/google-apis-vectortile_v1/lib/google/apis/vectortile_v1/classes.rb index 93695014a..b2b98e1bf 100644 --- a/generated/google-apis-vectortile_v1/lib/google/apis/vectortile_v1/classes.rb +++ b/generated/google-apis-vectortile_v1/lib/google/apis/vectortile_v1/classes.rb @@ -368,7 +368,11 @@ module Google # @return [Array] attr_accessor :areas - # The extruded areas present in this geometry. + # The extruded areas present in this geometry. Not populated if modeled_volumes + # are included in this geometry unless always_include_building_footprints is set + # in GetFeatureTileRequest, in which case the client should decide which ( + # extruded areas or modeled volumes) should be used (they should not be rendered + # together). # Corresponds to the JSON property `extrudedAreas` # @return [Array] attr_accessor :extruded_areas @@ -378,7 +382,8 @@ module Google # @return [Array] attr_accessor :lines - # The modeled volumes present in this geometry. + # The modeled volumes present in this geometry. Not populated unless + # enable_modeled_volumes has been set in GetFeatureTileRequest. # Corresponds to the JSON property `modeledVolumes` # @return [Array] attr_accessor :modeled_volumes diff --git a/generated/google-apis-vectortile_v1/lib/google/apis/vectortile_v1/gem_version.rb b/generated/google-apis-vectortile_v1/lib/google/apis/vectortile_v1/gem_version.rb index 24a8a2728..623db8c09 100644 --- a/generated/google-apis-vectortile_v1/lib/google/apis/vectortile_v1/gem_version.rb +++ b/generated/google-apis-vectortile_v1/lib/google/apis/vectortile_v1/gem_version.rb @@ -16,13 +16,13 @@ module Google module Apis module VectortileV1 # Version of the google-apis-vectortile_v1 gem - GEM_VERSION = "0.1.0" + GEM_VERSION = "0.2.0" # Version of the code generator used to generate this client - GENERATOR_VERSION = "0.1.1" + GENERATOR_VERSION = "0.1.2" # Revision of the discovery document this client was generated from - REVISION = "20201202" + REVISION = "20210118" end end end diff --git a/generated/google-apis-vectortile_v1/lib/google/apis/vectortile_v1/service.rb b/generated/google-apis-vectortile_v1/lib/google/apis/vectortile_v1/service.rb index 1b696a2ee..780167912 100644 --- a/generated/google-apis-vectortile_v1/lib/google/apis/vectortile_v1/service.rb +++ b/generated/google-apis-vectortile_v1/lib/google/apis/vectortile_v1/service.rb @@ -55,6 +55,10 @@ module Google # collection ID `tiles/` followed by the resource ID, which encodes the tile's # global x and y coordinates and zoom level as `@,,z`. For example, `tiles/@1,2, # 3z`. + # @param [Boolean] always_include_building_footprints + # Flag indicating whether the returned tile will always contain 2.5D footprints + # for structures. If enabled_modeled_volumes is set, this will mean that + # structures will have both their 3D models and 2.5D footprints returned. # @param [String] client_info_api_client # API client name and version. For example, the SDK calling the API. The exact # format is up to the client. @@ -132,11 +136,12 @@ 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 get_featuretile(name, client_info_api_client: nil, client_info_application_id: nil, client_info_application_version: nil, client_info_device_model: nil, client_info_operating_system: nil, client_info_platform: nil, client_info_user_id: nil, client_tile_version_id: nil, enable_detailed_highway_types: nil, enable_feature_names: nil, enable_modeled_volumes: nil, enable_political_features: nil, enable_private_roads: nil, enable_unclipped_buildings: nil, language_code: nil, region_code: nil, fields: nil, quota_user: nil, options: nil, &block) + def get_featuretile(name, always_include_building_footprints: nil, client_info_api_client: nil, client_info_application_id: nil, client_info_application_version: nil, client_info_device_model: nil, client_info_operating_system: nil, client_info_platform: nil, client_info_user_id: nil, client_tile_version_id: nil, enable_detailed_highway_types: nil, enable_feature_names: nil, enable_modeled_volumes: nil, enable_political_features: nil, enable_private_roads: nil, enable_unclipped_buildings: nil, language_code: nil, region_code: nil, fields: nil, quota_user: nil, options: nil, &block) command = make_simple_command(:get, 'v1/{+name}', options) command.response_representation = Google::Apis::VectortileV1::FeatureTile::Representation command.response_class = Google::Apis::VectortileV1::FeatureTile command.params['name'] = name unless name.nil? + command.query['alwaysIncludeBuildingFootprints'] = always_include_building_footprints unless always_include_building_footprints.nil? command.query['clientInfo.apiClient'] = client_info_api_client unless client_info_api_client.nil? command.query['clientInfo.applicationId'] = client_info_application_id unless client_info_application_id.nil? command.query['clientInfo.applicationVersion'] = client_info_application_version unless client_info_application_version.nil? diff --git a/generated/google-apis-vectortile_v1/synth.metadata b/generated/google-apis-vectortile_v1/synth.metadata index b6a63dc38..30f7811d0 100644 --- a/generated/google-apis-vectortile_v1/synth.metadata +++ b/generated/google-apis-vectortile_v1/synth.metadata @@ -4,7 +4,7 @@ "git": { "name": ".", "remote": "https://github.com/googleapis/google-api-ruby-client.git", - "sha": "a292c4573b5fbe486f03f257d61ef902d46d167b" + "sha": "255c89f8250478221375004cc6bea2850175d166" } } ]