Skip to content

Commit 5272515

Browse files
Merge branch 'googleapis:main' into main
2 parents 4cd5aa0 + a589e00 commit 5272515

File tree

981 files changed

+230249
-107779
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

981 files changed

+230249
-107779
lines changed

api_names_out.yaml

Lines changed: 7062 additions & 0 deletions
Large diffs are not rendered by default.

generated/google-apis-accesscontextmanager_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-accesscontextmanager_v1
22

3+
### v0.60.0 (2025-10-12)
4+
5+
* Regenerated from discovery document revision 20251005
6+
37
### v0.59.0 (2025-07-27)
48

59
* Regenerated from discovery document revision 20250723

generated/google-apis-accesscontextmanager_v1/lib/google/apis/accesscontextmanager_v1/classes.rb

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1457,6 +1457,13 @@ class ListOperationsResponse
14571457
# @return [Array<Google::Apis::AccesscontextmanagerV1::Operation>]
14581458
attr_accessor :operations
14591459

1460+
# Unordered list. Unreachable resources. Populated when the request sets `
1461+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
1462+
# when attempting to list all resources across all supported locations.
1463+
# Corresponds to the JSON property `unreachable`
1464+
# @return [Array<String>]
1465+
attr_accessor :unreachable
1466+
14601467
def initialize(**args)
14611468
update!(**args)
14621469
end
@@ -1465,6 +1472,7 @@ def initialize(**args)
14651472
def update!(**args)
14661473
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
14671474
@operations = args[:operations] if args.key?(:operations)
1475+
@unreachable = args[:unreachable] if args.key?(:unreachable)
14681476
end
14691477
end
14701478

generated/google-apis-accesscontextmanager_v1/lib/google/apis/accesscontextmanager_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module AccesscontextmanagerV1
1818
# Version of the google-apis-accesscontextmanager_v1 gem
19-
GEM_VERSION = "0.59.0"
19+
GEM_VERSION = "0.60.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250723"
25+
REVISION = "20251005"
2626
end
2727
end
2828
end

generated/google-apis-accesscontextmanager_v1/lib/google/apis/accesscontextmanager_v1/representations.rb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -733,6 +733,7 @@ class Representation < Google::Apis::Core::JsonRepresentation
733733
property :next_page_token, as: 'nextPageToken'
734734
collection :operations, as: 'operations', class: Google::Apis::AccesscontextmanagerV1::Operation, decorator: Google::Apis::AccesscontextmanagerV1::Operation::Representation
735735

736+
collection :unreachable, as: 'unreachable'
736737
end
737738
end
738739

generated/google-apis-accesscontextmanager_v1/lib/google/apis/accesscontextmanager_v1/service.rb

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1218,6 +1218,13 @@ def get_operation(name, fields: nil, quota_user: nil, options: nil, &block)
12181218
# The standard list page size.
12191219
# @param [String] page_token
12201220
# The standard list page token.
1221+
# @param [Boolean] return_partial_success
1222+
# When set to `true`, operations that are reachable are returned as normal, and
1223+
# those that are unreachable are returned in the [ListOperationsResponse.
1224+
# unreachable] field. This can only be `true` when reading across collections e.
1225+
# g. when `parent` is set to `"projects/example/locations/-"`. This field is not
1226+
# by default supported and will result in an `UNIMPLEMENTED` error if set unless
1227+
# explicitly documented otherwise in service or product specific documentation.
12211228
# @param [String] fields
12221229
# Selector specifying which fields to include in a partial response.
12231230
# @param [String] quota_user
@@ -1235,14 +1242,15 @@ def get_operation(name, fields: nil, quota_user: nil, options: nil, &block)
12351242
# @raise [Google::Apis::ServerError] An error occurred on the server and the request can be retried
12361243
# @raise [Google::Apis::ClientError] The request is invalid and should not be retried without modification
12371244
# @raise [Google::Apis::AuthorizationError] Authorization is required
1238-
def list_operations(name, filter: nil, page_size: nil, page_token: nil, fields: nil, quota_user: nil, options: nil, &block)
1245+
def list_operations(name, filter: nil, page_size: nil, page_token: nil, return_partial_success: nil, fields: nil, quota_user: nil, options: nil, &block)
12391246
command = make_simple_command(:get, 'v1/{+name}', options)
12401247
command.response_representation = Google::Apis::AccesscontextmanagerV1::ListOperationsResponse::Representation
12411248
command.response_class = Google::Apis::AccesscontextmanagerV1::ListOperationsResponse
12421249
command.params['name'] = name unless name.nil?
12431250
command.query['filter'] = filter unless filter.nil?
12441251
command.query['pageSize'] = page_size unless page_size.nil?
12451252
command.query['pageToken'] = page_token unless page_token.nil?
1253+
command.query['returnPartialSuccess'] = return_partial_success unless return_partial_success.nil?
12461254
command.query['fields'] = fields unless fields.nil?
12471255
command.query['quotaUser'] = quota_user unless quota_user.nil?
12481256
execute_or_queue_command(command, &block)

generated/google-apis-admin_directory_v1/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Release history for google-apis-admin_directory_v1
22

3+
### v0.71.0 (2025-10-26)
4+
5+
* Regenerated from discovery document revision 20251021
6+
37
### v0.70.0 (2025-10-05)
48

59
* Regenerated from discovery document revision 20250930

generated/google-apis-admin_directory_v1/lib/google/apis/admin_directory_v1/classes.rb

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -487,6 +487,31 @@ def update!(**args)
487487
end
488488
end
489489

490+
# Information about a device's Bluetooth adapter.
491+
class BluetoothAdapterInfo
492+
include Google::Apis::Core::Hashable
493+
494+
# Output only. The MAC address of the adapter.
495+
# Corresponds to the JSON property `address`
496+
# @return [String]
497+
attr_accessor :address
498+
499+
# Output only. The number of devices connected to this adapter.
500+
# Corresponds to the JSON property `numConnectedDevices`
501+
# @return [Fixnum]
502+
attr_accessor :num_connected_devices
503+
504+
def initialize(**args)
505+
update!(**args)
506+
end
507+
508+
# Update properties of this object
509+
def update!(**args)
510+
@address = args[:address] if args.key?(:address)
511+
@num_connected_devices = args[:num_connected_devices] if args.key?(:num_connected_devices)
512+
end
513+
end
514+
490515
# Public API: Resources.buildings
491516
class Building
492517
include Google::Apis::Core::Hashable
@@ -1022,6 +1047,11 @@ class ChromeOsDevice
10221047
# @return [Array<Google::Apis::AdminDirectoryV1::BacklightInfo>]
10231048
attr_accessor :backlight_info
10241049

1050+
# Output only. Information about bluetooth adapters of the device.
1051+
# Corresponds to the JSON property `bluetoothAdapterInfo`
1052+
# @return [Array<Google::Apis::AdminDirectoryV1::BluetoothAdapterInfo>]
1053+
attr_accessor :bluetooth_adapter_info
1054+
10251055
# The boot mode for the device. The possible values are: * `Verified`: The
10261056
# device is running a valid version of the Chrome OS. * `Dev`: The devices's
10271057
# developer hardware switch is enabled. When booted, the device has a command
@@ -1315,6 +1345,7 @@ def update!(**args)
13151345
@auto_update_expiration = args[:auto_update_expiration] if args.key?(:auto_update_expiration)
13161346
@auto_update_through = args[:auto_update_through] if args.key?(:auto_update_through)
13171347
@backlight_info = args[:backlight_info] if args.key?(:backlight_info)
1348+
@bluetooth_adapter_info = args[:bluetooth_adapter_info] if args.key?(:bluetooth_adapter_info)
13181349
@boot_mode = args[:boot_mode] if args.key?(:boot_mode)
13191350
@chrome_os_type = args[:chrome_os_type] if args.key?(:chrome_os_type)
13201351
@cpu_info = args[:cpu_info] if args.key?(:cpu_info)

generated/google-apis-admin_directory_v1/lib/google/apis/admin_directory_v1/gem_version.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ module Google
1616
module Apis
1717
module AdminDirectoryV1
1818
# Version of the google-apis-admin_directory_v1 gem
19-
GEM_VERSION = "0.70.0"
19+
GEM_VERSION = "0.71.0"
2020

2121
# Version of the code generator used to generate this client
2222
GENERATOR_VERSION = "0.18.0"
2323

2424
# Revision of the discovery document this client was generated from
25-
REVISION = "20250930"
25+
REVISION = "20251021"
2626
end
2727
end
2828
end

generated/google-apis-admin_directory_v1/lib/google/apis/admin_directory_v1/representations.rb

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,12 @@ class Representation < Google::Apis::Core::JsonRepresentation; end
118118
include Google::Apis::Core::JsonObjectSupport
119119
end
120120

121+
class BluetoothAdapterInfo
122+
class Representation < Google::Apis::Core::JsonRepresentation; end
123+
124+
include Google::Apis::Core::JsonObjectSupport
125+
end
126+
121127
class Building
122128
class Representation < Google::Apis::Core::JsonRepresentation; end
123129

@@ -900,6 +906,14 @@ class Representation < Google::Apis::Core::JsonRepresentation
900906
end
901907
end
902908

909+
class BluetoothAdapterInfo
910+
# @private
911+
class Representation < Google::Apis::Core::JsonRepresentation
912+
property :address, as: 'address'
913+
property :num_connected_devices, as: 'numConnectedDevices'
914+
end
915+
end
916+
903917
class Building
904918
# @private
905919
class Representation < Google::Apis::Core::JsonRepresentation
@@ -1033,6 +1047,8 @@ class Representation < Google::Apis::Core::JsonRepresentation
10331047
property :auto_update_through, as: 'autoUpdateThrough'
10341048
collection :backlight_info, as: 'backlightInfo', class: Google::Apis::AdminDirectoryV1::BacklightInfo, decorator: Google::Apis::AdminDirectoryV1::BacklightInfo::Representation
10351049

1050+
collection :bluetooth_adapter_info, as: 'bluetoothAdapterInfo', class: Google::Apis::AdminDirectoryV1::BluetoothAdapterInfo, decorator: Google::Apis::AdminDirectoryV1::BluetoothAdapterInfo::Representation
1051+
10361052
property :boot_mode, as: 'bootMode'
10371053
property :chrome_os_type, as: 'chromeOsType'
10381054
collection :cpu_info, as: 'cpuInfo', class: Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo, decorator: Google::Apis::AdminDirectoryV1::ChromeOsDevice::CpuInfo::Representation

0 commit comments

Comments
 (0)