google-apis-managedidentities_v1alpha1 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: 6119f696959aa044985a9b5d056365d1a833315c2b36418afe5e42dbf33b4cd0
4
- data.tar.gz: 92957d65dac19ff91eac469ad0b114e356ad194298a239659cde34268d09e0e0
3
+ metadata.gz: e441de1271208996269621acef5b2c8c7e0750b19995120dfe3bd0b096e681e1
4
+ data.tar.gz: 9abac09fc42429dcf8f6b6ea13ba5cec53019b77c978653b2dc2306d3ce1f949
5
5
  SHA512:
6
- metadata.gz: 88625486002cf2ec6a81628f024b1b42a0d14fc14004d740512dc24b2143e4278c35766010542f1dce3f4b78b780d6313f54033e09ddd5823b4e8da5f28a7e80
7
- data.tar.gz: c4ea1a8ac24921589613e35f7d2a8dbabee5e7604078336da34aeb879fdd3657099beec2846b3225d04e7450751e337b348658cdb06d577ceece74d524959231
6
+ metadata.gz: b0527c84fdbc2bb7471d23de27a1c0956df0f1e7c193b638882b2cede8731135e26a4e49cb37a4854778e39ce254f3562e3867250d5ccb05a18fe7979af21fc4
7
+ data.tar.gz: dca4b7b949054c42311c9b98da7a210408787d745657a903540e820329ccee14ea193eeae9c155184295bd30b2a1a50f096f3caf9d3a66d9440a8ad6ba4f8c91
data/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Release history for google-apis-managedidentities_v1alpha1
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
@@ -941,6 +941,17 @@ module Google
941
941
  # @return [String]
942
942
  attr_accessor :consumer_defined_name
943
943
 
944
+ # Optional. The consumer_project_number associated with this Apigee instance.
945
+ # This field is added specifically to support Apigee integration with SLM
946
+ # Rollout and UMM. It represents the numerical project ID of the GCP project
947
+ # that consumes this Apigee instance. It is used for SLM rollout notifications
948
+ # and UMM integration, enabling proper mapping to customer projects and log
949
+ # delivery for Apigee instances. This field complements consumer_project_id and
950
+ # may be used for specific Apigee scenarios where the numerical ID is required.
951
+ # Corresponds to the JSON property `consumerProjectNumber`
952
+ # @return [String]
953
+ attr_accessor :consumer_project_number
954
+
944
955
  # Output only. Timestamp when the resource was created.
945
956
  # Corresponds to the JSON property `createTime`
946
957
  # @return [String]
@@ -1057,6 +1068,7 @@ module Google
1057
1068
  # Update properties of this object
1058
1069
  def update!(**args)
1059
1070
  @consumer_defined_name = args[:consumer_defined_name] if args.key?(:consumer_defined_name)
1071
+ @consumer_project_number = args[:consumer_project_number] if args.key?(:consumer_project_number)
1060
1072
  @create_time = args[:create_time] if args.key?(:create_time)
1061
1073
  @instance_type = args[:instance_type] if args.key?(:instance_type)
1062
1074
  @labels = args[:labels] if args.key?(:labels)
@@ -1520,6 +1532,14 @@ module Google
1520
1532
  # @return [Array<Google::Apis::ManagedidentitiesV1alpha1::Operation>]
1521
1533
  attr_accessor :operations
1522
1534
 
1535
+ # Unordered list. Unreachable resources. Populated when the request sets `
1536
+ # ListOperationsRequest.return_partial_success` and reads across collections.
1537
+ # For example, when attempting to list all resources across all supported
1538
+ # locations.
1539
+ # Corresponds to the JSON property `unreachable`
1540
+ # @return [Array<String>]
1541
+ attr_accessor :unreachable
1542
+
1523
1543
  def initialize(**args)
1524
1544
  update!(**args)
1525
1545
  end
@@ -1528,6 +1548,7 @@ module Google
1528
1548
  def update!(**args)
1529
1549
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
1530
1550
  @operations = args[:operations] if args.key?(:operations)
1551
+ @unreachable = args[:unreachable] if args.key?(:unreachable)
1531
1552
  end
1532
1553
  end
1533
1554
 
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module ManagedidentitiesV1alpha1
18
18
  # Version of the google-apis-managedidentities_v1alpha1 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::ManagedidentitiesV1alpha1::Operation, decorator: Google::Apis::ManagedidentitiesV1alpha1::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, 'v1alpha1/{+name}/locations', options)
117
129
  command.response_representation = Google::Apis::ManagedidentitiesV1alpha1::ListLocationsResponse::Representation
118
130
  command.response_class = Google::Apis::ManagedidentitiesV1alpha1::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, 'v1alpha1/{+name}/operations', options)
1411
1432
  command.response_representation = Google::Apis::ManagedidentitiesV1alpha1::ListOperationsResponse::Representation
1412
1433
  command.response_class = Google::Apis::ManagedidentitiesV1alpha1::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_v1alpha1
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_v1alpha1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1alpha1/v0.40.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1alpha1/v0.42.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-managedidentities_v1alpha1
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
  V1alpha1