Skip to content

Commit 11c44ff

Browse files
feat: Automated regeneration of apigee v1 client (googleapis#23914)
Auto-created at 2025-08-10 10:31:51 +0000 using the toys pull request generator.
1 parent c741f08 commit 11c44ff

File tree

6 files changed

+22
-5
lines changed

6 files changed

+22
-5
lines changed

api_names_out.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37066,6 +37066,7 @@
3706637066
"/apigee:v1/GoogleCloudApigeeV1KeyValueEntry/value": value
3706737067
"/apigee:v1/GoogleCloudApigeeV1KeyValueMap": google_cloud_apigee_v1_key_value_map
3706837068
"/apigee:v1/GoogleCloudApigeeV1KeyValueMap/encrypted": encrypted
37069+
"/apigee:v1/GoogleCloudApigeeV1KeyValueMap/maskedValues": masked_values
3706937070
"/apigee:v1/GoogleCloudApigeeV1KeyValueMap/name": name
3707037071
"/apigee:v1/GoogleCloudApigeeV1Keystore": google_cloud_apigee_v1_keystore
3707137072
"/apigee:v1/GoogleCloudApigeeV1Keystore/aliases": aliases

generated/google-apis-apigee_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-apigee_v1
22

3+
### v0.111.0 (2025-08-10)
4+
5+
* Regenerated from discovery document revision 20250731
6+
37
### v0.110.0 (2025-07-27)
48

59
* Regenerated from discovery document revision 20250722

generated/google-apis-apigee_v1/lib/google/apis/apigee_v1/classes.rb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5885,6 +5885,13 @@ class GoogleCloudApigeeV1KeyValueMap
58855885
attr_accessor :encrypted
58865886
alias_method :encrypted?, :encrypted
58875887

5888+
# Required. Flag that specifies whether entry values will be masked when
5889+
# returned.
5890+
# Corresponds to the JSON property `maskedValues`
5891+
# @return [Boolean]
5892+
attr_accessor :masked_values
5893+
alias_method :masked_values?, :masked_values
5894+
58885895
# Required. ID of the key value map.
58895896
# Corresponds to the JSON property `name`
58905897
# @return [String]
@@ -5897,6 +5904,7 @@ def initialize(**args)
58975904
# Update properties of this object
58985905
def update!(**args)
58995906
@encrypted = args[:encrypted] if args.key?(:encrypted)
5907+
@masked_values = args[:masked_values] if args.key?(:masked_values)
59005908
@name = args[:name] if args.key?(:name)
59015909
end
59025910
end

generated/google-apis-apigee_v1/lib/google/apis/apigee_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module ApigeeV1
1818
# Version of the google-apis-apigee_v1 gem
19-
GEM_VERSION = "0.110.0"
19+
GEM_VERSION = "0.111.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250722"
25+
REVISION = "20250731"
2626
end
2727
end
2828
end

generated/google-apis-apigee_v1/lib/google/apis/apigee_v1/representations.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3396,6 +3396,7 @@ class GoogleCloudApigeeV1KeyValueMap
33963396
# @private
33973397
class Representation < Google::Apis::Core::JsonRepresentation
33983398
property :encrypted, as: 'encrypted'
3399+
property :masked_values, as: 'maskedValues'
33993400
property :name, as: 'name'
34003401
end
34013402
end

generated/google-apis-apigee_v1/lib/google/apis/apigee_v1/service.rb

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2960,13 +2960,16 @@ def get_organization_app(name, fields: nil, quota_user: nil, options: nil, &bloc
29602960
# Defaults to `approved`.
29612961
# @param [Fixnum] page_size
29622962
# Optional. Count of apps a single page can have in the response. If unspecified,
2963-
# at most 100 apps will be returned. The maximum value is 100; values above 100
2964-
# will be coerced to 100. "page_size" is supported from ver 1.10.0 and above.
2963+
# at most 1000 apps will be returned. The maximum value is 1000; values above
2964+
# 1000 will be coerced to 1000. "page_size" is supported from ver 1.10.0 and
2965+
# above.
29652966
# @param [String] page_token
29662967
# Optional. The starting index record for listing the developers. "page_token"
29672968
# is supported from ver 1.10.0 and above.
29682969
# @param [Fixnum] rows
2969-
# Optional. Maximum number of app IDs to return. Defaults to 1000.
2970+
# Optional. Maximum number of app IDs to return. Defaults to 1000, which is also
2971+
# the upper limit. To get more than 1000, use pagination with 'pageSize' and '
2972+
# pageToken' parameters.
29702973
# @param [String] start_key
29712974
# Returns the list of apps starting from the specified app ID.
29722975
# @param [String] status

0 commit comments

Comments
 (0)