Skip to content

Commit

Permalink
Regen APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
sqrrrl committed Apr 3, 2017
1 parent c645e7d commit e3b8c80
Show file tree
Hide file tree
Showing 360 changed files with 59,499 additions and 59,711 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# 0.11.0
* *Breaking change* - Fix handling of large numbers during code generation. Previously the
uint64/int64 formats were passed through as strings. They are now coerced to/from Fixnum/Bignum types
uint64/int64 formats were passed through as strings. They are now coerced to/from Fixnum/Bignum types.
Affected APIs:
* *Breaking change* - No longer normalize unicode strings in URI templates. Mostly affects
Cloud Storage, but other APIs with unicode strings in paths may be affected. Old behavior
can be restored using the `normalize_unicode` request option.
Expand All @@ -14,6 +15,8 @@
* Treat 429 status codes as rate limit errors
* Fix a potential download corruption if download interrupted and retried against a URL
that does not return partial content.
* Updated dependencies
* Regen APIs, add appsmarketplace:v2

# 0.10.3
* Regenerate APIs
Expand Down
8,522 changes: 4,246 additions & 4,276 deletions api_names_out.yaml

Large diffs are not rendered by default.

12 changes: 6 additions & 6 deletions generated/google/apis/acceleratedmobilepageurl_v1/classes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -86,11 +86,6 @@ def update!(**args)
class AmpUrlError
include Google::Apis::Core::Hashable

# An optional descriptive error message.
# Corresponds to the JSON property `errorMessage`
# @return [String]
attr_accessor :error_message

# The error code of an API call.
# Corresponds to the JSON property `errorCode`
# @return [String]
Expand All @@ -101,15 +96,20 @@ class AmpUrlError
# @return [String]
attr_accessor :original_url

# An optional descriptive error message.
# Corresponds to the JSON property `errorMessage`
# @return [String]
attr_accessor :error_message

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

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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ class Representation < Google::Apis::Core::JsonRepresentation
class AmpUrlError
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :error_message, as: 'errorMessage'
property :error_code, as: 'errorCode'
property :original_url, as: 'originalUrl'
property :error_message, as: 'errorMessage'
end
end

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ class AcceleratedmobilepageurlService < Google::Apis::Core::BaseService

def initialize
super('https://acceleratedmobilepageurl.googleapis.com/', '')
@batch_path = 'batch'
end

# Returns AMP URL(s) and equivalent
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 = '20170330'
REVISION = '20170331'

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

0 comments on commit e3b8c80

Please sign in to comment.