google-apis-managedidentities_v1 0.39.0 → 0.41.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 +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/google/apis/managedidentities_v1/classes.rb +21 -0
- data/lib/google/apis/managedidentities_v1/gem_version.rb +3 -3
- data/lib/google/apis/managedidentities_v1/representations.rb +2 -0
- data/lib/google/apis/managedidentities_v1/service.rb +25 -3
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 87cadd1cf47fc553180c5dbe2db98ab7439780bbdb261d7004448cf79bdd184d
|
|
4
|
+
data.tar.gz: 8a3b3fc5672f6d1cf766d5c009ea533fba4dead3a90c7ff17b20104d4abe12be
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3cb912fba89f96f609cc86a9be22307c153e364e054749fd067d548c37bf6d6a12c26334879f17c64424f5ebdf2480d0f941ed0bd08820e7f5109785fb050d71
|
|
7
|
+
data.tar.gz: 3183fef934c73e22b70277bc929ef51aad0eebbb4d63f3111f55309434d7a89514a11d219d3d328443620a596f0f7ec9fc2176632a8c507262066eed5890274a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# Release history for google-apis-managedidentities_v1
|
|
2
2
|
|
|
3
|
+
### v0.41.0 (2026-05-03)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20260414
|
|
6
|
+
|
|
7
|
+
### v0.40.0 (2026-02-15)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20260202
|
|
10
|
+
* Regenerated using generator version 0.18.0
|
|
11
|
+
|
|
3
12
|
### v0.39.0 (2025-05-11)
|
|
4
13
|
|
|
5
14
|
* Regenerated using generator version 0.17.0
|
|
@@ -923,6 +923,17 @@ module Google
|
|
|
923
923
|
# @return [String]
|
|
924
924
|
attr_accessor :consumer_defined_name
|
|
925
925
|
|
|
926
|
+
# Optional. The consumer_project_number associated with this Apigee instance.
|
|
927
|
+
# This field is added specifically to support Apigee integration with SLM
|
|
928
|
+
# Rollout and UMM. It represents the numerical project ID of the GCP project
|
|
929
|
+
# that consumes this Apigee instance. It is used for SLM rollout notifications
|
|
930
|
+
# and UMM integration, enabling proper mapping to customer projects and log
|
|
931
|
+
# delivery for Apigee instances. This field complements consumer_project_id and
|
|
932
|
+
# may be used for specific Apigee scenarios where the numerical ID is required.
|
|
933
|
+
# Corresponds to the JSON property `consumerProjectNumber`
|
|
934
|
+
# @return [String]
|
|
935
|
+
attr_accessor :consumer_project_number
|
|
936
|
+
|
|
926
937
|
# Output only. Timestamp when the resource was created.
|
|
927
938
|
# Corresponds to the JSON property `createTime`
|
|
928
939
|
# @return [String]
|
|
@@ -1039,6 +1050,7 @@ module Google
|
|
|
1039
1050
|
# Update properties of this object
|
|
1040
1051
|
def update!(**args)
|
|
1041
1052
|
@consumer_defined_name = args[:consumer_defined_name] if args.key?(:consumer_defined_name)
|
|
1053
|
+
@consumer_project_number = args[:consumer_project_number] if args.key?(:consumer_project_number)
|
|
1042
1054
|
@create_time = args[:create_time] if args.key?(:create_time)
|
|
1043
1055
|
@instance_type = args[:instance_type] if args.key?(:instance_type)
|
|
1044
1056
|
@labels = args[:labels] if args.key?(:labels)
|
|
@@ -1502,6 +1514,14 @@ module Google
|
|
|
1502
1514
|
# @return [Array<Google::Apis::ManagedidentitiesV1::Operation>]
|
|
1503
1515
|
attr_accessor :operations
|
|
1504
1516
|
|
|
1517
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
1518
|
+
# ListOperationsRequest.return_partial_success` and reads across collections.
|
|
1519
|
+
# For example, when attempting to list all resources across all supported
|
|
1520
|
+
# locations.
|
|
1521
|
+
# Corresponds to the JSON property `unreachable`
|
|
1522
|
+
# @return [Array<String>]
|
|
1523
|
+
attr_accessor :unreachable
|
|
1524
|
+
|
|
1505
1525
|
def initialize(**args)
|
|
1506
1526
|
update!(**args)
|
|
1507
1527
|
end
|
|
@@ -1510,6 +1530,7 @@ module Google
|
|
|
1510
1530
|
def update!(**args)
|
|
1511
1531
|
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
1512
1532
|
@operations = args[:operations] if args.key?(:operations)
|
|
1533
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
1513
1534
|
end
|
|
1514
1535
|
end
|
|
1515
1536
|
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ManagedidentitiesV1
|
|
18
18
|
# Version of the google-apis-managedidentities_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.41.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
|
-
GENERATOR_VERSION = "0.
|
|
22
|
+
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20260414"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -611,6 +611,7 @@ module Google
|
|
|
611
611
|
# @private
|
|
612
612
|
class Representation < Google::Apis::Core::JsonRepresentation
|
|
613
613
|
property :consumer_defined_name, as: 'consumerDefinedName'
|
|
614
|
+
property :consumer_project_number, as: 'consumerProjectNumber'
|
|
614
615
|
property :create_time, as: 'createTime'
|
|
615
616
|
property :instance_type, as: 'instanceType'
|
|
616
617
|
hash :labels, as: 'labels'
|
|
@@ -756,6 +757,7 @@ module Google
|
|
|
756
757
|
property :next_page_token, as: 'nextPageToken'
|
|
757
758
|
collection :operations, as: 'operations', class: Google::Apis::ManagedidentitiesV1::Operation, decorator: Google::Apis::ManagedidentitiesV1::Operation::Representation
|
|
758
759
|
|
|
760
|
+
collection :unreachable, as: 'unreachable'
|
|
759
761
|
end
|
|
760
762
|
end
|
|
761
763
|
|
|
@@ -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, 'v1/{+name}/locations', options)
|
|
117
129
|
command.response_representation = Google::Apis::ManagedidentitiesV1::ListLocationsResponse::Representation
|
|
118
130
|
command.response_class = Google::Apis::ManagedidentitiesV1::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, 'v1/{+name}', options)
|
|
1411
1432
|
command.response_representation = Google::Apis::ManagedidentitiesV1::ListOperationsResponse::Representation
|
|
1412
1433
|
command.response_class = Google::Apis::ManagedidentitiesV1::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_v1
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.41.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_v1/CHANGELOG.md
|
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1/v0.
|
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-managedidentities_v1/v0.41.0
|
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-managedidentities_v1
|
|
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.
|
|
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
|
V1
|