Skip to content

Commit

Permalink
Regen APIs & bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
sqrrrl committed Mar 31, 2017
1 parent 51b41ed commit 70236ac
Show file tree
Hide file tree
Showing 174 changed files with 48,509 additions and 49,014 deletions.
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,28 @@
# 0.10.3
* Regenerate APIs
* Enable additional API:
* `acceleratedmobilepageurl:v1``
* `appengine:v1`
* `clouderrorreporting:v1beta1`
* `cloudfunctions:v1`
* `firebasedynamiclinks:v1`
* `firebaserules:v1`
* `language:v1`
* `logging:v2`
* `ml:v1`
* `runtimeconfig:v1`
* `searchconsole:v1`
* `servicecontrol:v1`
* `servicemanagement:v1`
* `serviceuser:v1`
* `sourcerepo:v1`
* `spanner:v1`
* `surveys:v2`
* `tagmanager:v2`
* `toolresults:v1beta3`
* `tracing:v1`
* `webfonts:v1`

# 0.10.2
* Regenerate APIs

Expand Down
2 changes: 1 addition & 1 deletion api_names.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1429,7 +1429,7 @@
"/resourceviews:v1beta2/ZoneViewsRemoveResourcesRequest": remove_resources_request
"/resourceviews:v1beta2/ZoneViewsSetServiceRequest": set_service_request
"/script:v1/ExecutionResponse/status": status
"/servicemanagement:v1/servicemanagement.services.getConfig": get_service_configuration"
"/servicemanagement:v1/servicemanagement.services.getConfig": get_service_configuration
"/sheets:v4/sheets.spreadsheets.sheets.copyTo": copy_spreadsheet
"/sheets:v4/sheets.spreadsheets.values.batchGet": batch_get_spreadsheet_values
"/sheets:v4/sheets.spreadsheets.values.get": get_spreadsheet_values
Expand Down
7,442 changes: 3,698 additions & 3,744 deletions api_names_out.yaml

Large diffs are not rendered by default.

120 changes: 60 additions & 60 deletions generated/google/apis/acceleratedmobilepageurl_v1/classes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,66 @@ module Google
module Apis
module AcceleratedmobilepageurlV1

# Batch AMP URL response.
class BatchGetAmpUrlsResponse
include Google::Apis::Core::Hashable

# For each URL in BatchAmpUrlsRequest, the URL response. The response might
# not be in the same order as URLs in the batch request.
# If BatchAmpUrlsRequest contains duplicate URLs, AmpUrl is generated
# only once.
# Corresponds to the JSON property `ampUrls`
# @return [Array<Google::Apis::AcceleratedmobilepageurlV1::AmpUrl>]
attr_accessor :amp_urls

# The errors for requested URLs that have no AMP URL.
# Corresponds to the JSON property `urlErrors`
# @return [Array<Google::Apis::AcceleratedmobilepageurlV1::AmpUrlError>]
attr_accessor :url_errors

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
@amp_urls = args[:amp_urls] if args.key?(:amp_urls)
@url_errors = args[:url_errors] if args.key?(:url_errors)
end
end

# AMP URL response for a requested URL.
class AmpUrl
include Google::Apis::Core::Hashable

# The [AMP Cache URL](/amp/cache/overview#amp-cache-url-format) pointing to
# the cached document in the Google AMP Cache.
# Corresponds to the JSON property `cdnAmpUrl`
# @return [String]
attr_accessor :cdn_amp_url

# The original non-AMP URL.
# Corresponds to the JSON property `originalUrl`
# @return [String]
attr_accessor :original_url

# The AMP URL pointing to the publisher's web server.
# Corresponds to the JSON property `ampUrl`
# @return [String]
attr_accessor :amp_url

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
@cdn_amp_url = args[:cdn_amp_url] if args.key?(:cdn_amp_url)
@original_url = args[:original_url] if args.key?(:original_url)
@amp_url = args[:amp_url] if args.key?(:amp_url)
end
end

# AMP URL Error resource for a requested URL that couldn't be found.
class AmpUrlError
include Google::Apis::Core::Hashable
Expand Down Expand Up @@ -79,66 +139,6 @@ def update!(**args)
@lookup_strategy = args[:lookup_strategy] if args.key?(:lookup_strategy)
end
end

# Batch AMP URL response.
class BatchGetAmpUrlsResponse
include Google::Apis::Core::Hashable

# For each URL in BatchAmpUrlsRequest, the URL response. The response might
# not be in the same order as URLs in the batch request.
# If BatchAmpUrlsRequest contains duplicate URLs, AmpUrl is generated
# only once.
# Corresponds to the JSON property `ampUrls`
# @return [Array<Google::Apis::AcceleratedmobilepageurlV1::AmpUrl>]
attr_accessor :amp_urls

# The errors for requested URLs that have no AMP URL.
# Corresponds to the JSON property `urlErrors`
# @return [Array<Google::Apis::AcceleratedmobilepageurlV1::AmpUrlError>]
attr_accessor :url_errors

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
@amp_urls = args[:amp_urls] if args.key?(:amp_urls)
@url_errors = args[:url_errors] if args.key?(:url_errors)
end
end

# AMP URL response for a requested URL.
class AmpUrl
include Google::Apis::Core::Hashable

# The original non-AMP URL.
# Corresponds to the JSON property `originalUrl`
# @return [String]
attr_accessor :original_url

# The AMP URL pointing to the publisher's web server.
# Corresponds to the JSON property `ampUrl`
# @return [String]
attr_accessor :amp_url

# The [AMP Cache URL](/amp/cache/overview#amp-cache-url-format) pointing to
# the cached document in the Google AMP Cache.
# Corresponds to the JSON property `cdnAmpUrl`
# @return [String]
attr_accessor :cdn_amp_url

def initialize(**args)
update!(**args)
end

# Update properties of this object
def update!(**args)
@original_url = args[:original_url] if args.key?(:original_url)
@amp_url = args[:amp_url] if args.key?(:amp_url)
@cdn_amp_url = args[:cdn_amp_url] if args.key?(:cdn_amp_url)
end
end
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -22,63 +22,63 @@ module Google
module Apis
module AcceleratedmobilepageurlV1

class AmpUrlError
class BatchGetAmpUrlsResponse
class Representation < Google::Apis::Core::JsonRepresentation; end

include Google::Apis::Core::JsonObjectSupport
end

class BatchGetAmpUrlsRequest
class AmpUrl
class Representation < Google::Apis::Core::JsonRepresentation; end

include Google::Apis::Core::JsonObjectSupport
end

class BatchGetAmpUrlsResponse
class AmpUrlError
class Representation < Google::Apis::Core::JsonRepresentation; end

include Google::Apis::Core::JsonObjectSupport
end

class AmpUrl
class BatchGetAmpUrlsRequest
class Representation < Google::Apis::Core::JsonRepresentation; end

include Google::Apis::Core::JsonObjectSupport
end

class AmpUrlError
class BatchGetAmpUrlsResponse
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :error_message, as: 'errorMessage'
property :error_code, as: 'errorCode'
property :original_url, as: 'originalUrl'
collection :amp_urls, as: 'ampUrls', class: Google::Apis::AcceleratedmobilepageurlV1::AmpUrl, decorator: Google::Apis::AcceleratedmobilepageurlV1::AmpUrl::Representation

collection :url_errors, as: 'urlErrors', class: Google::Apis::AcceleratedmobilepageurlV1::AmpUrlError, decorator: Google::Apis::AcceleratedmobilepageurlV1::AmpUrlError::Representation

end
end

class BatchGetAmpUrlsRequest
class AmpUrl
# @private
class Representation < Google::Apis::Core::JsonRepresentation
collection :urls, as: 'urls'
property :lookup_strategy, as: 'lookupStrategy'
property :cdn_amp_url, as: 'cdnAmpUrl'
property :original_url, as: 'originalUrl'
property :amp_url, as: 'ampUrl'
end
end

class BatchGetAmpUrlsResponse
class AmpUrlError
# @private
class Representation < Google::Apis::Core::JsonRepresentation
collection :amp_urls, as: 'ampUrls', class: Google::Apis::AcceleratedmobilepageurlV1::AmpUrl, decorator: Google::Apis::AcceleratedmobilepageurlV1::AmpUrl::Representation

collection :url_errors, as: 'urlErrors', class: Google::Apis::AcceleratedmobilepageurlV1::AmpUrlError, decorator: Google::Apis::AcceleratedmobilepageurlV1::AmpUrlError::Representation

property :error_message, as: 'errorMessage'
property :error_code, as: 'errorCode'
property :original_url, as: 'originalUrl'
end
end

class AmpUrl
class BatchGetAmpUrlsRequest
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :original_url, as: 'originalUrl'
property :amp_url, as: 'ampUrl'
property :cdn_amp_url, as: 'cdnAmpUrl'
collection :urls, as: 'urls'
property :lookup_strategy, as: 'lookupStrategy'
end
end
end
Expand Down
2 changes: 1 addition & 1 deletion generated/google/apis/adexchangebuyer2_v2beta1.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ module Apis
# @see https://developers.google.com/ad-exchange/buyer-rest/guides/client-access/
module Adexchangebuyer2V2beta1
VERSION = 'V2beta1'
REVISION = '20170329'
REVISION = '20170330'

# Manage your Ad Exchange buyer account configuration
AUTH_ADEXCHANGE_BUYER = 'https://www.googleapis.com/auth/adexchange.buyer'
Expand Down
Loading

0 comments on commit 70236ac

Please sign in to comment.