google-apis-apigee_v1 0.109.0 → 0.111.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 39fb08ed6df9b231ff60807103df572863d78bd79f4239d4a8caa3d9d9b0e8d4
4
- data.tar.gz: 3e783629887c793edd55601f99c8d39fddf884da09b83a82ced48c832643bf2a
3
+ metadata.gz: 0efc1e79a7d369ea0b60648cf26d3c9b07a969117c8e367dbc53fb0fe1dfa87b
4
+ data.tar.gz: 1312991e813bc294629643a14317d56f7ac9ffe36a12da3d57479a8bb954a201
5
5
  SHA512:
6
- metadata.gz: 62fc671684d84604dc1b591e008f2047b0c80235a3497317f15cd268443d9c318603b2c8a5c30ccb6d18be3aef2186b80907ed6e78f470fc8edc57ee9b31486a
7
- data.tar.gz: 8d494484fd58516bea494f55b0938d26d14eeee9d345390a06e0f1bf0d9f51be8acf58e02c0fdff5dc8dc7c28e4b6353da8336699ebd267654a3802d76b3c9ed
6
+ metadata.gz: df14fc2a2e0f2082aa421a3344eeafb4bba56c4700ea3f664ac13dad76d3ac2c942ca62fcb1e5dd65c5562bce71c70c8adfeae89fb7c15612f8cac2996e47567
7
+ data.tar.gz: c908b286c486fc70f89f6c638872d9f8228fc00859ef94521fb81255d0239c50688d95d74f717301a5e724e674e24688c3a5aed83306915d8a0219a53b243635
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-apigee_v1
2
2
 
3
+ ### v0.111.0 (2025-08-10)
4
+
5
+ * Regenerated from discovery document revision 20250731
6
+
7
+ ### v0.110.0 (2025-07-27)
8
+
9
+ * Regenerated from discovery document revision 20250722
10
+
3
11
  ### v0.109.0 (2025-06-29)
4
12
 
5
13
  * Regenerated from discovery document revision 20250622
@@ -5885,6 +5885,13 @@ module Google
5885
5885
  attr_accessor :encrypted
5886
5886
  alias_method :encrypted?, :encrypted
5887
5887
 
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
+
5888
5895
  # Required. ID of the key value map.
5889
5896
  # Corresponds to the JSON property `name`
5890
5897
  # @return [String]
@@ -5897,6 +5904,7 @@ module Google
5897
5904
  # Update properties of this object
5898
5905
  def update!(**args)
5899
5906
  @encrypted = args[:encrypted] if args.key?(:encrypted)
5907
+ @masked_values = args[:masked_values] if args.key?(:masked_values)
5900
5908
  @name = args[:name] if args.key?(:name)
5901
5909
  end
5902
5910
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ApigeeV1
18
18
  # Version of the google-apis-apigee_v1 gem
19
- GEM_VERSION = "0.109.0"
19
+ GEM_VERSION = "0.111.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250622"
25
+ REVISION = "20250731"
26
26
  end
27
27
  end
28
28
  end
@@ -3396,6 +3396,7 @@ module Google
3396
3396
  # @private
3397
3397
  class Representation < Google::Apis::Core::JsonRepresentation
3398
3398
  property :encrypted, as: 'encrypted'
3399
+ property :masked_values, as: 'maskedValues'
3399
3400
  property :name, as: 'name'
3400
3401
  end
3401
3402
  end
@@ -2960,13 +2960,16 @@ module Google
2960
2960
  # Defaults to `approved`.
2961
2961
  # @param [Fixnum] page_size
2962
2962
  # 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.
2965
2966
  # @param [String] page_token
2966
2967
  # Optional. The starting index record for listing the developers. "page_token"
2967
2968
  # is supported from ver 1.10.0 and above.
2968
2969
  # @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.
2970
2973
  # @param [String] start_key
2971
2974
  # Returns the list of apps starting from the specified app ID.
2972
2975
  # @param [String] status
@@ -6527,10 +6530,10 @@ module Google
6527
6530
  # @param [String] name
6528
6531
  # Required. The name of the debug session to retrieve. Must be of the form: `
6529
6532
  # organizations/`organization`/environments/`environment`/apis/`api`/revisions/`
6530
- # revision`/debugsessions/`session``. If the API proxy resource has the `space`
6531
- # attribute set, IAM permissions are checked differently . To learn more, read
6532
- # the [Apigee Spaces Overview](https://cloud.google.com/apigee/docs/api-platform/
6533
- # system-administration/spaces/apigee-spaces-overview).
6533
+ # revision`/debugsessions/`debug_session``. If the API proxy resource has the `
6534
+ # space` attribute set, IAM permissions are checked differently . To learn more,
6535
+ # read the [Apigee Spaces Overview](https://cloud.google.com/apigee/docs/api-
6536
+ # platform/system-administration/spaces/apigee-spaces-overview).
6534
6537
  # @param [String] fields
6535
6538
  # Selector specifying which fields to include in a partial response.
6536
6539
  # @param [String] quota_user
@@ -6568,10 +6571,11 @@ module Google
6568
6571
  # google.com/apigee/docs/api-platform/system-administration/spaces/apigee-spaces-
6569
6572
  # overview).
6570
6573
  # @param [Fixnum] page_size
6571
- # Maximum number of debug sessions to return. The page size defaults to 25.
6574
+ # Optional. Maximum number of debug sessions to return. The page size defaults
6575
+ # to 25.
6572
6576
  # @param [String] page_token
6573
- # Page token, returned from a previous ListDebugSessions call, that you can use
6574
- # to retrieve the next page.
6577
+ # Optional. Page token, returned from a previous ListDebugSessions call, that
6578
+ # you can use to retrieve the next page.
6575
6579
  # @param [String] fields
6576
6580
  # Selector specifying which fields to include in a partial response.
6577
6581
  # @param [String] quota_user
@@ -6605,7 +6609,7 @@ module Google
6605
6609
  # @param [String] name
6606
6610
  # Required. The name of the debug session transaction. Must be of the form: `
6607
6611
  # organizations/`organization`/environments/`environment`/apis/`api`/revisions/`
6608
- # revision`/debugsessions/`session`/data/`transaction``. If the API proxy
6612
+ # revision`/debugsessions/`debug_session`/data/`transaction``. If the API proxy
6609
6613
  # resource has the `space` attribute set, IAM permissions are checked
6610
6614
  # differently . To learn more, read the [Apigee Spaces Overview](https://cloud.
6611
6615
  # google.com/apigee/docs/api-platform/system-administration/spaces/apigee-spaces-
@@ -11688,8 +11692,8 @@ module Google
11688
11692
  # security_monitoring_condition`
11689
11693
  # @param [Google::Apis::ApigeeV1::GoogleCloudApigeeV1SecurityMonitoringCondition] google_cloud_apigee_v1_security_monitoring_condition_object
11690
11694
  # @param [String] update_mask
11691
- # Optional. The list of fields to update. Valid fields to update are `profile`, `
11692
- # scope`, `include_all_resources`, `include`, and `exclude`.
11695
+ # Optional. The list of fields to update. Valid fields to update are `
11696
+ # include_all_resources` and `include`.
11693
11697
  # @param [String] fields
11694
11698
  # Selector specifying which fields to include in a partial response.
11695
11699
  # @param [String] quota_user
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-apigee_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.109.0
4
+ version: 0.111.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -57,7 +57,7 @@ licenses:
57
57
  metadata:
58
58
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
59
59
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.109.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-apigee_v1/v0.111.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-apigee_v1
62
62
  rdoc_options: []
63
63
  require_paths: