google-apis-memcache_v1beta2 0.43.0 → 0.44.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: 6c5b51ff987605a76c18ecf872eb72c22b1c46d84ee7254f07e4d830175da955
4
- data.tar.gz: dd073c56916677d81cb36097c7cd6cf4f3d9a3f251ece37b17ebc4b6f2c591bd
3
+ metadata.gz: 247fd57a7ee27f482c056801a2592b2dd9ffa03f0a9a786343ad37655b97aec9
4
+ data.tar.gz: '09979597f78ef9b627b6d68d561f0e7afad4b93f8ace4a9c28ff481db800bf05'
5
5
  SHA512:
6
- metadata.gz: 1447cd62378a412c65a5edbae74067be08744f089623bb437db268461adc96eb33c4b7dab8f5dad059267488c52f9070cd18b5686523c99291ace58d2fdbaa92
7
- data.tar.gz: 7abea2a5fc3dabc257814264ca5f8b74d99ab92c47a47034d960dddda93d1858f3743fe1d08c9ce9fd2770ea1879b85ba8ea9f9bd34ee8690bb4b4e966f88f2a
6
+ metadata.gz: e4ece636bb50cf172ee7e0dfe08460bb0f0d1f3427a2923228763fc2d641df48e479d3bc255acc5348dde6f55ac5b2b31484138b37fe4ce77fb0b702dbd31394
7
+ data.tar.gz: caa905109f565283f460ad08eb7fa194f6e766da98ba24e84bb665f9ded87599c2ca0a980dd4d2c78d6bcc5984d68070d9261ed0ba939e0d6af92e17209661a5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-memcache_v1beta2
2
2
 
3
+ ### v0.44.0 (2025-05-11)
4
+
5
+ * Regenerated from discovery document revision 20250505
6
+ * Regenerated using generator version 0.17.0
7
+
3
8
  ### v0.43.0 (2025-02-26)
4
9
 
5
10
  * Regenerated from discovery document revision 20250206
data/OVERVIEW.md CHANGED
@@ -83,7 +83,7 @@ The [product documentation](https://cloud.google.com/memorystore/) may provide g
83
83
 
84
84
  ## Supported Ruby versions
85
85
 
86
- This library is supported on Ruby 2.7+.
86
+ This library is supported on Ruby 3.1+.
87
87
 
88
88
  Google provides official support for Ruby versions that are actively supported by Ruby Core -- that is, Ruby versions that are either in normal maintenance or in security maintenance, and not end of life. Older versions of Ruby _may_ still work, but are unsupported and not recommended. See https://www.ruby-lang.org/en/downloads/branches/ for details about the Ruby support schedule.
89
89
 
@@ -404,6 +404,17 @@ module Google
404
404
  # @return [String]
405
405
  attr_accessor :consumer_defined_name
406
406
 
407
+ # Optional. The consumer_project_number associated with this Apigee instance.
408
+ # This field is added specifically to support Apigee integration with SLM
409
+ # Rollout and UMM. It represents the numerical project ID of the GCP project
410
+ # that consumes this Apigee instance. It is used for SLM rollout notifications
411
+ # and UMM integration, enabling proper mapping to customer projects and log
412
+ # delivery for Apigee instances. This field complements consumer_project_id and
413
+ # may be used for specific Apigee scenarios where the numerical ID is required.
414
+ # Corresponds to the JSON property `consumerProjectNumber`
415
+ # @return [String]
416
+ attr_accessor :consumer_project_number
417
+
407
418
  # Output only. Timestamp when the resource was created.
408
419
  # Corresponds to the JSON property `createTime`
409
420
  # @return [String]
@@ -520,6 +531,7 @@ module Google
520
531
  # Update properties of this object
521
532
  def update!(**args)
522
533
  @consumer_defined_name = args[:consumer_defined_name] if args.key?(:consumer_defined_name)
534
+ @consumer_project_number = args[:consumer_project_number] if args.key?(:consumer_project_number)
523
535
  @create_time = args[:create_time] if args.key?(:create_time)
524
536
  @instance_type = args[:instance_type] if args.key?(:instance_type)
525
537
  @labels = args[:labels] if args.key?(:labels)
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module MemcacheV1beta2
18
18
  # Version of the google-apis-memcache_v1beta2 gem
19
- GEM_VERSION = "0.43.0"
19
+ GEM_VERSION = "0.44.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.16.0"
22
+ GENERATOR_VERSION = "0.17.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250206"
25
+ REVISION = "20250505"
26
26
  end
27
27
  end
28
28
  end
@@ -399,6 +399,7 @@ module Google
399
399
  # @private
400
400
  class Representation < Google::Apis::Core::JsonRepresentation
401
401
  property :consumer_defined_name, as: 'consumerDefinedName'
402
+ property :consumer_project_number, as: 'consumerProjectNumber'
402
403
  property :create_time, as: 'createTime'
403
404
  property :instance_type, as: 'instanceType'
404
405
  hash :labels, as: 'labels'
@@ -85,6 +85,9 @@ module Google
85
85
  # Lists information about the supported locations for this service.
86
86
  # @param [String] name
87
87
  # The resource that owns the locations collection, if applicable.
88
+ # @param [Array<String>, String] extra_location_types
89
+ # Optional. A list of extra location types that should be used as conditions for
90
+ # controlling the visibility of the locations.
88
91
  # @param [String] filter
89
92
  # A filter to narrow down results to a preferred subset. The filtering language
90
93
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -112,11 +115,12 @@ module Google
112
115
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
113
116
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
114
117
  # @raise [Google::Apis::AuthorizationError] Authorization is required
115
- def list_project_locations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
118
+ def list_project_locations(name, extra_location_types: nil, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
116
119
  command = make_simple_command(:get, 'v1beta2/{+name}/locations', options)
117
120
  command.response_representation = Google::Apis::MemcacheV1beta2::ListLocationsResponse::Representation
118
121
  command.response_class = Google::Apis::MemcacheV1beta2::ListLocationsResponse
119
122
  command.params['name'] = name unless name.nil?
123
+ command.query['extraLocationTypes'] = extra_location_types unless extra_location_types.nil?
120
124
  command.query['filter'] = filter unless filter.nil?
121
125
  command.query['pageSize'] = page_size unless page_size.nil?
122
126
  command.query['pageToken'] = page_token unless page_token.nil?
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-memcache_v1beta2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.43.0
4
+ version: 0.44.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
8
8
  bindir: bin
9
9
  cert_chain: []
10
- date: 2025-03-02 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
11
11
  dependencies:
12
12
  - !ruby/object:Gem::Dependency
13
13
  name: google-apis-core
@@ -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-memcache_v1beta2/CHANGELOG.md
60
- documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1beta2/v0.43.0
60
+ documentation_uri: https://googleapis.dev/ruby/google-apis-memcache_v1beta2/v0.44.0
61
61
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-memcache_v1beta2
62
62
  rdoc_options: []
63
63
  require_paths:
@@ -66,14 +66,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
66
66
  requirements:
67
67
  - - ">="
68
68
  - !ruby/object:Gem::Version
69
- version: '2.7'
69
+ version: '3.1'
70
70
  required_rubygems_version: !ruby/object:Gem::Requirement
71
71
  requirements:
72
72
  - - ">="
73
73
  - !ruby/object:Gem::Version
74
74
  version: '0'
75
75
  requirements: []
76
- rubygems_version: 3.6.5
76
+ rubygems_version: 3.6.8
77
77
  specification_version: 4
78
78
  summary: Simple REST client for Cloud Memorystore for Memcached API V1beta2
79
79
  test_files: []