Skip to content

Commit

Permalink
feat: Automated regeneration of deploymentmanager v2 client (#21294)
Browse files Browse the repository at this point in the history
Auto-created at 2025-01-07 17:47:31 +0000 using the toys pull request generator.
  • Loading branch information
yoshi-code-bot authored Jan 7, 2025
1 parent bb7361c commit d77bb57
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 12 deletions.
4 changes: 4 additions & 0 deletions generated/google-apis-deploymentmanager_v2/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Release history for google-apis-deploymentmanager_v2

### v0.34.0 (2025-01-07)

* Regenerated from discovery document revision 20250102

### v0.33.0 (2024-12-02)

* Regenerated from discovery document revision 20241122
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -587,16 +587,16 @@ class ErrorInfo
# @return [String]
attr_accessor :domain

# Additional structured details about this error. Keys must match /a-z+/ but
# should ideally be lowerCamelCase. Also they must be limited to 64 characters
# in length. When identifying the current value of an exceeded limit, the units
# should be contained in the key, not the value. For example, rather than `"
# instanceLimit": "100/request"`, should be returned as, `"
# instanceLimitPerRequest": "100"`, if the client exceeds the number of
# Additional structured details about this error. Keys must match a regular
# expression of `a-z+` but should ideally be lowerCamelCase. Also, they must be
# limited to 64 characters in length. When identifying the current value of an
# exceeded limit, the units should be contained in the key, not the value. For
# example, rather than ``"instanceLimit": "100/request"``, should be returned as,
# ``"instanceLimitPerRequest": "100"``, if the client exceeds the number of
# instances that can be created in a single (batch) request.
# Corresponds to the JSON property `metadata`
# Corresponds to the JSON property `metadatas`
# @return [Hash<String,String>]
attr_accessor :metadata
attr_accessor :metadatas

# The reason of the error. This is a constant value that identifies the
# proximate cause of the error. Error reasons are unique within a particular
Expand All @@ -613,7 +613,7 @@ def initialize(**args)
# Update properties of this object
def update!(**args)
@domain = args[:domain] if args.key?(:domain)
@metadata = args[:metadata] if args.key?(:metadata)
@metadatas = args[:metadatas] if args.key?(:metadatas)
@reason = args[:reason] if args.key?(:reason)
end
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ module Google
module Apis
module DeploymentmanagerV2
# Version of the google-apis-deploymentmanager_v2 gem
GEM_VERSION = "0.33.0"
GEM_VERSION = "0.34.0"

# Version of the code generator used to generate this client
GENERATOR_VERSION = "0.15.1"

# Revision of the discovery document this client was generated from
REVISION = "20241122"
REVISION = "20250102"
end
end
end
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ class ErrorInfo
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :domain, as: 'domain'
hash :metadata, as: 'metadata'
hash :metadatas, as: 'metadatas'
property :reason, as: 'reason'
end
end
Expand Down

0 comments on commit d77bb57

Please sign in to comment.