google-apis-managedidentities_v1beta1 0.40.0 → 0.42.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: 5e90f2e1ae5266b2ec9c48b4a1395a65314a245318932e094e2dd82b81534799
4
- data.tar.gz: 14abb2be2d2c4eebb821ba9d7c2e822143c402e9b84fda9171b0822ffc2ca55f
3
+ metadata.gz: 97a85f337abc9f14a2cd5e6356afe98a61641375047f4e625f6ab5360529c4ca
4
+ data.tar.gz: 0c2e0a53e3474db931d28a118f754ec520cfdaf4bde5f0ab64b3a42422271dff
5
5
  SHA512:
6
- metadata.gz: 1fd5718018242aca151c9f69b0361ac6a27fc28aa674ce3708acb97e05885150f8203d3f93d0deea888ce636627ea42e7f37a002923adab05f93a6146d547a93
7
- data.tar.gz: 114602f9d93a809b343b9474f04aa46b1f44ed4361a54022aea34c0fb5c28fb4b346ca9cc9a6a6b5eae4a6793f9e5c6681167e276112252380234ff98866c341
6
+ metadata.gz: 149590ed314db83ccf1e1d791a5928f40fd6b2796656ef72c0e60fcd9360c3f9d2ad72b8e969da09824b3875c3e9fca691ca9944c57bc1632a99cdb4f4202ff6
7
+ data.tar.gz: b88b9f708c1d92f20574e1c9d44797ea272300ad0af7040644b385cb7e5f3691ef7abba4c836df6734718f75ea13f12a1bb3373230cf99cdb7a5ef60e80d93cc
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-managedidentities_v1beta1
2
2
 
3
+ ### v0.42.0 (2026-05-03)
4
+
5
+ * Regenerated from discovery document revision 20260414
6
+
7
+ ### v0.41.0 (2026-02-15)
8
+
9
+ * Regenerated from discovery document revision 20260202
10
+ * Regenerated using generator version 0.18.0
11
+
3
12
  ### v0.40.0 (2025-05-04)
4
13
 
5
14
  * Regenerated using generator version 0.17.0
@@ -940,6 +940,17 @@ module Google
940
940
  # @return [String]
941
941
  attr_accessor :consumer_defined_name
942
942
 
943
+ # Optional. The consumer_project_number associated with this Apigee instance.
944
+ # This field is added specifically to support Apigee integration with SLM
945
+ # Rollout and UMM. It represents the numerical project ID of the GCP project
946
+ # that consumes this Apigee instance. It is used for SLM rollout notifications
947
+ # and UMM integration, enabling proper mapping to customer projects and log
948
+ # delivery for Apigee instances. This field complements consumer_project_id and
949
+ # may be used for specific Apigee scenarios where the numerical ID is required.
950
+ # Corresponds to the JSON property `consumerProjectNumber`
951
+ # @return [String]
952
+ attr_accessor :consumer_project_number
953
+
943
954
  # Output only. Timestamp when the resource was created.
944
955
  # Corresponds to the JSON property `createTime`
945
956
  # @return [String]
@@ -1056,6 +1067,7 @@ module Google
1056
1067
  # Update properties of this object
1057
1068
  def update!(**args)
1058
1069
  @consumer_defined_name = args[:consumer_defined_name] if args.key?(:consumer_defined_name)
1070
+ @consumer_project_number = args[:consumer_project_number] if args.key?(:consumer_project_number)
1059
1071
  @create_time = args[:create_time] if args.key?(:create_time)
1060
1072
  @instance_type = args[:instance_type] if args.key?(:instance_type)
1061
1073
  @labels = args[:labels] if args.key?(:labels)
@@ -1519,6 +1531,14 @@ module Google
1519
1531
  # @return [Array<Google::Apis::ManagedidentitiesV1beta1::Operation>]
1520
1532
  attr_accessor :operations
1521
1533
 
1534
+ # Unordered list. Unreachable resources. Populated when the request sets `
1535
+ # ListOperationsRequest.return_partial_success` and reads across collections.
1536
+ # For example, when attempting to list all resources across all supported
1537
+ # locations.
1538
+ # Corresponds to the JSON property `unreachable`
1539
+ # @return [Array<String>]
1540
+ attr_accessor :unreachable
1541
+
1522
1542
  def initialize(**args)
1523
1543
  update!(**args)
1524
1544
  end
@@ -1527,6 +1547,7 @@ module Google
1527
1547
  def update!(**args)
1528
1548
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1529
1549
  @operations = args[:operations] if args.key?(:operations)
1550
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1530
1551
  end
1531
1552
  end
1532
1553
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ManagedidentitiesV1beta1
18
18
  # Version of the google-apis-managedidentities_v1beta1 gem
19
- GEM_VERSION = "0.40.0"
19
+ GEM_VERSION = "0.42.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.17.0"
22
+ GENERATOR_VERSION = "0.18.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20250116"
25
+ REVISION = "20260414"
26
26
  end
27
27
  end
28
28
  end
@@ -613,6 +613,7 @@ module Google
613
613
  # @private
614
614
  class Representation < Google::Apis::Core::JsonRepresentation
615
615
  property :consumer_defined_name, as: 'consumerDefinedName'
616
+ property :consumer_project_number, as: 'consumerProjectNumber'
616
617
  property :create_time, as: 'createTime'
617
618
  property :instance_type, as: 'instanceType'
618
619
  hash :labels, as: 'labels'
@@ -758,6 +759,7 @@ module Google
758
759
  property :next_page_token, as: 'nextPageToken'
759
760
  collection :operations, as: 'operations', class: Google::Apis::ManagedidentitiesV1beta1::Operation, decorator: Google::Apis::ManagedidentitiesV1beta1::Operation::Representation
760
761
 
762
+ collection :unreachable, as: 'unreachable'
761
763
  end
762
764
  end
763
765
 
@@ -82,9 +82,21 @@ module Google
82
82
  execute_or_queue_command(command, &block)
83
83
  end
84
84
 
85
- # Lists information about the supported locations for this service.
85
+ # Lists information about the supported locations for this service. This method
86
+ # lists locations based on the resource scope provided in the
87
+ # ListLocationsRequest.name field: * **Global locations**: If `name` is empty,
88
+ # the method lists the public locations available to all projects. * **Project-
89
+ # specific locations**: If `name` follows the format `projects/`project``, the
90
+ # method lists locations visible to that specific project. This includes public,
91
+ # private, or other project-specific locations enabled for the project. For gRPC
92
+ # and client library implementations, the resource name is passed as the `name`
93
+ # field. For direct service calls, the resource name is incorporated into the
94
+ # request path based on the specific service implementation and version.
86
95
  # @param [String] name
87
96
  # The resource that owns the locations collection, if applicable.
97
+ # @param [Array<String>, String] extra_location_types
98
+ # Optional. Do not use this field. It is unsupported and is ignored unless
99
+ # explicitly documented otherwise. This is primarily for internal usage.
88
100
  # @param [String] filter
89
101
  # A filter to narrow down results to a preferred subset. The filtering language
90
102
  # accepts strings like `"displayName=tokyo"`, and is documented in more detail
@@ -112,11 +124,12 @@ module Google
112
124
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
113
125
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
114
126
  # @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)
127
+ 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
128
  command = make_simple_command(:get, 'v1beta1/{+name}/locations', options)
117
129
  command.response_representation = Google::Apis::ManagedidentitiesV1beta1::ListLocationsResponse::Representation
118
130
  command.response_class = Google::Apis::ManagedidentitiesV1beta1::ListLocationsResponse
119
131
  command.params['name'] = name unless name.nil?
132
+ command.query['extraLocationTypes'] = extra_location_types unless extra_location_types.nil?
120
133
  command.query['filter'] = filter unless filter.nil?
121
134
  command.query['pageSize'] = page_size unless page_size.nil?
122
135
  command.query['pageToken'] = page_token unless page_token.nil?
@@ -1389,6 +1402,14 @@ module Google
1389
1402
  # The standard list page size.
1390
1403
  # @param [String] page_token
1391
1404
  # The standard list page token.
1405
+ # @param [Boolean] return_partial_success
1406
+ # When set to `true`, operations that are reachable are returned as normal, and
1407
+ # those that are unreachable are returned in the ListOperationsResponse.
1408
+ # unreachable field. This can only be `true` when reading across collections.
1409
+ # For example, when `parent` is set to `"projects/example/locations/-"`. This
1410
+ # field is not supported by default and will result in an `UNIMPLEMENTED` error
1411
+ # if set unless explicitly documented otherwise in service or product specific
1412
+ # documentation.
1392
1413
  # @param [String] fields
1393
1414
  # Selector specifying which fields to include in a partial response.
1394
1415
  # @param [String] quota_user
@@ -1406,7 +1427,7 @@ module Google
1406
1427
  # @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
1407
1428
  # @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
1408
1429
  # @raise [Google::Apis::AuthorizationError] Authorization is required
1409
- def list_project_location_global_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1430
+ def list_project_location_global_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
1410
1431
  command = make_simple_command(:get, 'v1beta1/{+name}', options)
1411
1432
  command.response_representation = Google::Apis::ManagedidentitiesV1beta1::ListOperationsResponse::Representation
1412
1433
  command.response_class = Google::Apis::ManagedidentitiesV1beta1::ListOperationsResponse
@@ -1414,6 +1435,7 @@ module Google
1414
1435
  command.query['filter'] = filter unless filter.nil?
1415
1436
  command.query['pageSize'] = page_size unless page_size.nil?
1416
1437
  command.query['pageToken'] = page_token unless page_token.nil?
1438
+ command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
1417
1439
  command.query['fields'] = fields unless fields.nil?
1418
1440
  command.query['quotaUser'] = quota_user unless quota_user.nil?
1419
1441
  execute_or_queue_command(command, &block)
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-managedidentities_v1beta1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.40.0
4
+ version: 0.42.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Google LLC
@@ -58,7 +58,7 @@ licenses:
58
58
  metadata:
59
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
60
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-managedidentities_v1beta1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1beta1/v0.40.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1beta1/v0.42.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-managedidentities_v1beta1
63
63
  rdoc_options: []
64
64
  require_paths:
@@ -74,7 +74,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
74
74
  - !ruby/object:Gem::Version
75
75
  version: '0'
76
76
  requirements: []
77
- rubygems_version: 3.6.8
77
+ rubygems_version: 3.6.9
78
78
  specification_version: 4
79
79
  summary: Simple REST client for Managed Service for Microsoft Active Directory API
80
80
  V1beta1