google-apis-chromemanagement_v1 0.70.0 → 0.72.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 +8 -0
- data/lib/google/apis/chromemanagement_v1/classes.rb +473 -11
- data/lib/google/apis/chromemanagement_v1/gem_version.rb +2 -2
- data/lib/google/apis/chromemanagement_v1/representations.rb +223 -0
- data/lib/google/apis/chromemanagement_v1/service.rb +472 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: acc817d4c0afdee3e101fb7729c01dce54cccf80e6c497e567a056113000e4b3
|
|
4
|
+
data.tar.gz: 942769cd95f29a743ff0f454c7c1dac4de245d39522ac57bf7e982d33bedb74b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 3d37fc18cdfc641dc06dc10bed7b5f4b076e70aa98f826ed65db48176cff5e64f7288bbd63b2d49f7f9c3cd842b29f0eae078a42ce1f66e2ee5f762d4b8fc07a
|
|
7
|
+
data.tar.gz: 2dbb2835a68bf065b4ee4c44b0d8c50dc31669cab40607c78fe469ebb74c5867437276b062aacec9433b95bae2f5d5852591739888203c63a7d24fd4ae92a18b
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Release history for google-apis-chromemanagement_v1
|
|
2
2
|
|
|
3
|
+
### v0.72.0 (2025-11-09)
|
|
4
|
+
|
|
5
|
+
* Regenerated from discovery document revision 20251105
|
|
6
|
+
|
|
7
|
+
### v0.71.0 (2025-10-19)
|
|
8
|
+
|
|
9
|
+
* Regenerated from discovery document revision 20251014
|
|
10
|
+
|
|
3
11
|
### v0.70.0 (2025-08-24)
|
|
4
12
|
|
|
5
13
|
* Regenerated from discovery document revision 20250820
|
|
@@ -826,6 +826,33 @@ module Google
|
|
|
826
826
|
end
|
|
827
827
|
end
|
|
828
828
|
|
|
829
|
+
# Response containing the number of active devices.
|
|
830
|
+
class GoogleChromeManagementV1CountActiveDevicesResponse
|
|
831
|
+
include Google::Apis::Core::Hashable
|
|
832
|
+
|
|
833
|
+
# Number of active devices in the 7 days leading up to the date specified in the
|
|
834
|
+
# request.
|
|
835
|
+
# Corresponds to the JSON property `sevenDaysCount`
|
|
836
|
+
# @return [Fixnum]
|
|
837
|
+
attr_accessor :seven_days_count
|
|
838
|
+
|
|
839
|
+
# Number of active devices in the 30 days leading up to the date specified in
|
|
840
|
+
# the request.
|
|
841
|
+
# Corresponds to the JSON property `thirtyDaysCount`
|
|
842
|
+
# @return [Fixnum]
|
|
843
|
+
attr_accessor :thirty_days_count
|
|
844
|
+
|
|
845
|
+
def initialize(**args)
|
|
846
|
+
update!(**args)
|
|
847
|
+
end
|
|
848
|
+
|
|
849
|
+
# Update properties of this object
|
|
850
|
+
def update!(**args)
|
|
851
|
+
@seven_days_count = args[:seven_days_count] if args.key?(:seven_days_count)
|
|
852
|
+
@thirty_days_count = args[:thirty_days_count] if args.key?(:thirty_days_count)
|
|
853
|
+
end
|
|
854
|
+
end
|
|
855
|
+
|
|
829
856
|
# Response containing summary of requested app installations.
|
|
830
857
|
class GoogleChromeManagementV1CountChromeAppRequestsResponse
|
|
831
858
|
include Google::Apis::Core::Hashable
|
|
@@ -1084,6 +1111,98 @@ module Google
|
|
|
1084
1111
|
end
|
|
1085
1112
|
end
|
|
1086
1113
|
|
|
1114
|
+
# Response containing the number of devices with the given boot type.
|
|
1115
|
+
class GoogleChromeManagementV1CountDevicesPerBootTypeResponse
|
|
1116
|
+
include Google::Apis::Core::Hashable
|
|
1117
|
+
|
|
1118
|
+
# Number of devices with dev boot type.
|
|
1119
|
+
# Corresponds to the JSON property `devBootTypeCount`
|
|
1120
|
+
# @return [Fixnum]
|
|
1121
|
+
attr_accessor :dev_boot_type_count
|
|
1122
|
+
|
|
1123
|
+
# Number of devices with unreported boot type.
|
|
1124
|
+
# Corresponds to the JSON property `unreportedBootTypeCount`
|
|
1125
|
+
# @return [Fixnum]
|
|
1126
|
+
attr_accessor :unreported_boot_type_count
|
|
1127
|
+
|
|
1128
|
+
# Number of devices with verified boot type.
|
|
1129
|
+
# Corresponds to the JSON property `verifiedBootTypeCount`
|
|
1130
|
+
# @return [Fixnum]
|
|
1131
|
+
attr_accessor :verified_boot_type_count
|
|
1132
|
+
|
|
1133
|
+
def initialize(**args)
|
|
1134
|
+
update!(**args)
|
|
1135
|
+
end
|
|
1136
|
+
|
|
1137
|
+
# Update properties of this object
|
|
1138
|
+
def update!(**args)
|
|
1139
|
+
@dev_boot_type_count = args[:dev_boot_type_count] if args.key?(:dev_boot_type_count)
|
|
1140
|
+
@unreported_boot_type_count = args[:unreported_boot_type_count] if args.key?(:unreported_boot_type_count)
|
|
1141
|
+
@verified_boot_type_count = args[:verified_boot_type_count] if args.key?(:verified_boot_type_count)
|
|
1142
|
+
end
|
|
1143
|
+
end
|
|
1144
|
+
|
|
1145
|
+
# Response containing the number of devices with the given channel.
|
|
1146
|
+
class GoogleChromeManagementV1CountDevicesPerReleaseChannelResponse
|
|
1147
|
+
include Google::Apis::Core::Hashable
|
|
1148
|
+
|
|
1149
|
+
# Number of devices with beta release channel.
|
|
1150
|
+
# Corresponds to the JSON property `betaChannelCount`
|
|
1151
|
+
# @return [Fixnum]
|
|
1152
|
+
attr_accessor :beta_channel_count
|
|
1153
|
+
|
|
1154
|
+
# Number of devices with canary release channel.
|
|
1155
|
+
# Corresponds to the JSON property `canaryChannelCount`
|
|
1156
|
+
# @return [Fixnum]
|
|
1157
|
+
attr_accessor :canary_channel_count
|
|
1158
|
+
|
|
1159
|
+
# Number of devices with dev release channel.
|
|
1160
|
+
# Corresponds to the JSON property `devChannelCount`
|
|
1161
|
+
# @return [Fixnum]
|
|
1162
|
+
attr_accessor :dev_channel_count
|
|
1163
|
+
|
|
1164
|
+
# Number of devices with ltc release channel.
|
|
1165
|
+
# Corresponds to the JSON property `ltcChannelCount`
|
|
1166
|
+
# @return [Fixnum]
|
|
1167
|
+
attr_accessor :ltc_channel_count
|
|
1168
|
+
|
|
1169
|
+
# Number of devices with lts release channel.
|
|
1170
|
+
# Corresponds to the JSON property `ltsChannelCount`
|
|
1171
|
+
# @return [Fixnum]
|
|
1172
|
+
attr_accessor :lts_channel_count
|
|
1173
|
+
|
|
1174
|
+
# Number of devices with stable release channel.
|
|
1175
|
+
# Corresponds to the JSON property `stableChannelCount`
|
|
1176
|
+
# @return [Fixnum]
|
|
1177
|
+
attr_accessor :stable_channel_count
|
|
1178
|
+
|
|
1179
|
+
# Number of devices with an unreported release channel.
|
|
1180
|
+
# Corresponds to the JSON property `unreportedChannelCount`
|
|
1181
|
+
# @return [Fixnum]
|
|
1182
|
+
attr_accessor :unreported_channel_count
|
|
1183
|
+
|
|
1184
|
+
# Number of devices with unsupported release channel.
|
|
1185
|
+
# Corresponds to the JSON property `unsupportedChannelCount`
|
|
1186
|
+
# @return [Fixnum]
|
|
1187
|
+
attr_accessor :unsupported_channel_count
|
|
1188
|
+
|
|
1189
|
+
def initialize(**args)
|
|
1190
|
+
update!(**args)
|
|
1191
|
+
end
|
|
1192
|
+
|
|
1193
|
+
# Update properties of this object
|
|
1194
|
+
def update!(**args)
|
|
1195
|
+
@beta_channel_count = args[:beta_channel_count] if args.key?(:beta_channel_count)
|
|
1196
|
+
@canary_channel_count = args[:canary_channel_count] if args.key?(:canary_channel_count)
|
|
1197
|
+
@dev_channel_count = args[:dev_channel_count] if args.key?(:dev_channel_count)
|
|
1198
|
+
@ltc_channel_count = args[:ltc_channel_count] if args.key?(:ltc_channel_count)
|
|
1199
|
+
@lts_channel_count = args[:lts_channel_count] if args.key?(:lts_channel_count)
|
|
1200
|
+
@stable_channel_count = args[:stable_channel_count] if args.key?(:stable_channel_count)
|
|
1201
|
+
@unreported_channel_count = args[:unreported_channel_count] if args.key?(:unreported_channel_count)
|
|
1202
|
+
@unsupported_channel_count = args[:unsupported_channel_count] if args.key?(:unsupported_channel_count)
|
|
1203
|
+
end
|
|
1204
|
+
end
|
|
1205
|
+
|
|
1087
1206
|
# Response containing details of queried installed apps.
|
|
1088
1207
|
class GoogleChromeManagementV1CountInstalledAppsResponse
|
|
1089
1208
|
include Google::Apis::Core::Hashable
|
|
@@ -2489,16 +2608,39 @@ module Google
|
|
|
2489
2608
|
# @return [String]
|
|
2490
2609
|
attr_accessor :gateway_ip_address
|
|
2491
2610
|
|
|
2611
|
+
# Output only. The gateway IPv6 for this interface, if detected
|
|
2612
|
+
# Corresponds to the JSON property `gatewayIpv6Address`
|
|
2613
|
+
# @return [String]
|
|
2614
|
+
attr_accessor :gateway_ipv6_address
|
|
2615
|
+
|
|
2492
2616
|
# Output only. Network connection guid.
|
|
2493
2617
|
# Corresponds to the JSON property `guid`
|
|
2494
2618
|
# @return [String]
|
|
2495
2619
|
attr_accessor :guid
|
|
2496
2620
|
|
|
2621
|
+
# Output only. IPv6 addresses assigned to this network, if any. Each address is
|
|
2622
|
+
# a string in standard IPv6 text representation (e.g., "2001:db8::1").
|
|
2623
|
+
# Corresponds to the JSON property `ipv6Address`
|
|
2624
|
+
# @return [Array<String>]
|
|
2625
|
+
attr_accessor :ipv6_address
|
|
2626
|
+
|
|
2497
2627
|
# Output only. LAN IP address.
|
|
2498
2628
|
# Corresponds to the JSON property `lanIpAddress`
|
|
2499
2629
|
# @return [String]
|
|
2500
2630
|
attr_accessor :lan_ip_address
|
|
2501
2631
|
|
|
2632
|
+
# Output only. The maximum downstream bandwidth in Kilobits per second (Kbps),
|
|
2633
|
+
# if reported by the network interface or connection.
|
|
2634
|
+
# Corresponds to the JSON property `linkDownSpeedKbps`
|
|
2635
|
+
# @return [Fixnum]
|
|
2636
|
+
attr_accessor :link_down_speed_kbps
|
|
2637
|
+
|
|
2638
|
+
# Output only. Whether the network was detected as metered.
|
|
2639
|
+
# Corresponds to the JSON property `metered`
|
|
2640
|
+
# @return [Boolean]
|
|
2641
|
+
attr_accessor :metered
|
|
2642
|
+
alias_method :metered?, :metered
|
|
2643
|
+
|
|
2502
2644
|
# Output only. Receiving bit rate measured in Megabits per second.
|
|
2503
2645
|
# Corresponds to the JSON property `receivingBitRateMbps`
|
|
2504
2646
|
# @return [Fixnum]
|
|
@@ -2551,8 +2693,12 @@ module Google
|
|
|
2551
2693
|
@connection_type = args[:connection_type] if args.key?(:connection_type)
|
|
2552
2694
|
@encryption_on = args[:encryption_on] if args.key?(:encryption_on)
|
|
2553
2695
|
@gateway_ip_address = args[:gateway_ip_address] if args.key?(:gateway_ip_address)
|
|
2696
|
+
@gateway_ipv6_address = args[:gateway_ipv6_address] if args.key?(:gateway_ipv6_address)
|
|
2554
2697
|
@guid = args[:guid] if args.key?(:guid)
|
|
2698
|
+
@ipv6_address = args[:ipv6_address] if args.key?(:ipv6_address)
|
|
2555
2699
|
@lan_ip_address = args[:lan_ip_address] if args.key?(:lan_ip_address)
|
|
2700
|
+
@link_down_speed_kbps = args[:link_down_speed_kbps] if args.key?(:link_down_speed_kbps)
|
|
2701
|
+
@metered = args[:metered] if args.key?(:metered)
|
|
2556
2702
|
@receiving_bit_rate_mbps = args[:receiving_bit_rate_mbps] if args.key?(:receiving_bit_rate_mbps)
|
|
2557
2703
|
@report_time = args[:report_time] if args.key?(:report_time)
|
|
2558
2704
|
@sample_frequency = args[:sample_frequency] if args.key?(:sample_frequency)
|
|
@@ -3448,6 +3594,11 @@ module Google
|
|
|
3448
3594
|
# @return [String]
|
|
3449
3595
|
attr_accessor :event_type
|
|
3450
3596
|
|
|
3597
|
+
# External display connected/disconnected event payload.
|
|
3598
|
+
# Corresponds to the JSON property `externalDisplaysEvent`
|
|
3599
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryExternalDisplayEvent]
|
|
3600
|
+
attr_accessor :external_displays_event
|
|
3601
|
+
|
|
3451
3602
|
# Https latency routine is run periodically and `
|
|
3452
3603
|
# TelemetryHttpsLatencyChangeEvent` is triggered if a latency problem was
|
|
3453
3604
|
# detected or if the device has recovered from a latency problem. * Granular
|
|
@@ -3515,6 +3666,7 @@ module Google
|
|
|
3515
3666
|
@audio_severe_underrun_event = args[:audio_severe_underrun_event] if args.key?(:audio_severe_underrun_event)
|
|
3516
3667
|
@device = args[:device] if args.key?(:device)
|
|
3517
3668
|
@event_type = args[:event_type] if args.key?(:event_type)
|
|
3669
|
+
@external_displays_event = args[:external_displays_event] if args.key?(:external_displays_event)
|
|
3518
3670
|
@https_latency_change_event = args[:https_latency_change_event] if args.key?(:https_latency_change_event)
|
|
3519
3671
|
@name = args[:name] if args.key?(:name)
|
|
3520
3672
|
@network_state_change_event = args[:network_state_change_event] if args.key?(:network_state_change_event)
|
|
@@ -3546,6 +3698,74 @@ module Google
|
|
|
3546
3698
|
end
|
|
3547
3699
|
end
|
|
3548
3700
|
|
|
3701
|
+
# External display data.
|
|
3702
|
+
class GoogleChromeManagementV1TelemetryExternalDisplayData
|
|
3703
|
+
include Google::Apis::Core::Hashable
|
|
3704
|
+
|
|
3705
|
+
# The display name.
|
|
3706
|
+
# Corresponds to the JSON property `displayName`
|
|
3707
|
+
# @return [String]
|
|
3708
|
+
attr_accessor :display_name
|
|
3709
|
+
|
|
3710
|
+
# The EDID version.
|
|
3711
|
+
# Corresponds to the JSON property `edidVersion`
|
|
3712
|
+
# @return [String]
|
|
3713
|
+
attr_accessor :edid_version
|
|
3714
|
+
|
|
3715
|
+
# The refresh rate.
|
|
3716
|
+
# Corresponds to the JSON property `refreshRate`
|
|
3717
|
+
# @return [Fixnum]
|
|
3718
|
+
attr_accessor :refresh_rate
|
|
3719
|
+
|
|
3720
|
+
# The horizontal resolution.
|
|
3721
|
+
# Corresponds to the JSON property `resolutionHorizontal`
|
|
3722
|
+
# @return [Fixnum]
|
|
3723
|
+
attr_accessor :resolution_horizontal
|
|
3724
|
+
|
|
3725
|
+
# The vertical resolution.
|
|
3726
|
+
# Corresponds to the JSON property `resolutionVertical`
|
|
3727
|
+
# @return [Fixnum]
|
|
3728
|
+
attr_accessor :resolution_vertical
|
|
3729
|
+
|
|
3730
|
+
# The serial number.
|
|
3731
|
+
# Corresponds to the JSON property `serialNumber`
|
|
3732
|
+
# @return [Fixnum]
|
|
3733
|
+
attr_accessor :serial_number
|
|
3734
|
+
|
|
3735
|
+
def initialize(**args)
|
|
3736
|
+
update!(**args)
|
|
3737
|
+
end
|
|
3738
|
+
|
|
3739
|
+
# Update properties of this object
|
|
3740
|
+
def update!(**args)
|
|
3741
|
+
@display_name = args[:display_name] if args.key?(:display_name)
|
|
3742
|
+
@edid_version = args[:edid_version] if args.key?(:edid_version)
|
|
3743
|
+
@refresh_rate = args[:refresh_rate] if args.key?(:refresh_rate)
|
|
3744
|
+
@resolution_horizontal = args[:resolution_horizontal] if args.key?(:resolution_horizontal)
|
|
3745
|
+
@resolution_vertical = args[:resolution_vertical] if args.key?(:resolution_vertical)
|
|
3746
|
+
@serial_number = args[:serial_number] if args.key?(:serial_number)
|
|
3747
|
+
end
|
|
3748
|
+
end
|
|
3749
|
+
|
|
3750
|
+
# External display connected/disconnected event payload.
|
|
3751
|
+
class GoogleChromeManagementV1TelemetryExternalDisplayEvent
|
|
3752
|
+
include Google::Apis::Core::Hashable
|
|
3753
|
+
|
|
3754
|
+
# List of external displays that were connected/disconnected.
|
|
3755
|
+
# Corresponds to the JSON property `externalDisplayData`
|
|
3756
|
+
# @return [Array<Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryExternalDisplayData>]
|
|
3757
|
+
attr_accessor :external_display_data
|
|
3758
|
+
|
|
3759
|
+
def initialize(**args)
|
|
3760
|
+
update!(**args)
|
|
3761
|
+
end
|
|
3762
|
+
|
|
3763
|
+
# Update properties of this object
|
|
3764
|
+
def update!(**args)
|
|
3765
|
+
@external_display_data = args[:external_display_data] if args.key?(:external_display_data)
|
|
3766
|
+
end
|
|
3767
|
+
end
|
|
3768
|
+
|
|
3549
3769
|
# Https latency routine is run periodically and `
|
|
3550
3770
|
# TelemetryHttpsLatencyChangeEvent` is triggered if a latency problem was
|
|
3551
3771
|
# detected or if the device has recovered from a latency problem. * Granular
|
|
@@ -4271,9 +4491,10 @@ module Google
|
|
|
4271
4491
|
# @return [String]
|
|
4272
4492
|
attr_accessor :signature
|
|
4273
4493
|
|
|
4274
|
-
# Output only. The signature algorithm that the
|
|
4275
|
-
#
|
|
4276
|
-
# present after the `SignData` operation
|
|
4494
|
+
# Output only. The signature algorithm that the client and backend components
|
|
4495
|
+
# use when processing `sign_data`. If the `profile_type` is a `GenericProfile`,
|
|
4496
|
+
# this field will only be present after the `SignData` operation was initiated.
|
|
4497
|
+
# If the `profile_type` is a `ScepProfile`, the field will always be present.
|
|
4277
4498
|
# Corresponds to the JSON property `signatureAlgorithm`
|
|
4278
4499
|
# @return [String]
|
|
4279
4500
|
attr_accessor :signature_algorithm
|
|
@@ -4442,6 +4663,12 @@ module Google
|
|
|
4442
4663
|
# @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementVersionsV1ReportingData]
|
|
4443
4664
|
attr_accessor :reporting_data
|
|
4444
4665
|
|
|
4666
|
+
# Output only. Whether the profile supports FCM notifications.
|
|
4667
|
+
# Corresponds to the JSON property `supportsFcmNotifications`
|
|
4668
|
+
# @return [Boolean]
|
|
4669
|
+
attr_accessor :supports_fcm_notifications
|
|
4670
|
+
alias_method :supports_fcm_notifications?, :supports_fcm_notifications
|
|
4671
|
+
|
|
4445
4672
|
# Output only. Email address of the user to which the profile belongs.
|
|
4446
4673
|
# Corresponds to the JSON property `userEmail`
|
|
4447
4674
|
# @return [String]
|
|
@@ -4483,6 +4710,7 @@ module Google
|
|
|
4483
4710
|
@profile_id = args[:profile_id] if args.key?(:profile_id)
|
|
4484
4711
|
@profile_permanent_id = args[:profile_permanent_id] if args.key?(:profile_permanent_id)
|
|
4485
4712
|
@reporting_data = args[:reporting_data] if args.key?(:reporting_data)
|
|
4713
|
+
@supports_fcm_notifications = args[:supports_fcm_notifications] if args.key?(:supports_fcm_notifications)
|
|
4486
4714
|
@user_email = args[:user_email] if args.key?(:user_email)
|
|
4487
4715
|
@user_id = args[:user_id] if args.key?(:user_id)
|
|
4488
4716
|
end
|
|
@@ -4640,6 +4868,38 @@ module Google
|
|
|
4640
4868
|
end
|
|
4641
4869
|
end
|
|
4642
4870
|
|
|
4871
|
+
# Request message for claiming a certificate provisioning process.
|
|
4872
|
+
class GoogleChromeManagementVersionsV1ClaimCertificateProvisioningProcessRequest
|
|
4873
|
+
include Google::Apis::Core::Hashable
|
|
4874
|
+
|
|
4875
|
+
# Required. The instance id of the caller.
|
|
4876
|
+
# Corresponds to the JSON property `callerInstanceId`
|
|
4877
|
+
# @return [String]
|
|
4878
|
+
attr_accessor :caller_instance_id
|
|
4879
|
+
|
|
4880
|
+
def initialize(**args)
|
|
4881
|
+
update!(**args)
|
|
4882
|
+
end
|
|
4883
|
+
|
|
4884
|
+
# Update properties of this object
|
|
4885
|
+
def update!(**args)
|
|
4886
|
+
@caller_instance_id = args[:caller_instance_id] if args.key?(:caller_instance_id)
|
|
4887
|
+
end
|
|
4888
|
+
end
|
|
4889
|
+
|
|
4890
|
+
# Response message for claiming a certificate provisioning process.
|
|
4891
|
+
class GoogleChromeManagementVersionsV1ClaimCertificateProvisioningProcessResponse
|
|
4892
|
+
include Google::Apis::Core::Hashable
|
|
4893
|
+
|
|
4894
|
+
def initialize(**args)
|
|
4895
|
+
update!(**args)
|
|
4896
|
+
end
|
|
4897
|
+
|
|
4898
|
+
# Update properties of this object
|
|
4899
|
+
def update!(**args)
|
|
4900
|
+
end
|
|
4901
|
+
end
|
|
4902
|
+
|
|
4643
4903
|
# Information of a device that runs a Chrome browser profile.
|
|
4644
4904
|
class GoogleChromeManagementVersionsV1DeviceInfo
|
|
4645
4905
|
include Google::Apis::Core::Hashable
|
|
@@ -4688,8 +4948,7 @@ module Google
|
|
|
4688
4948
|
include Google::Apis::Core::Hashable
|
|
4689
4949
|
|
|
4690
4950
|
# Output only. A string that references the administrator-provided configuration
|
|
4691
|
-
# for the certification authority service.
|
|
4692
|
-
# configuration was given.
|
|
4951
|
+
# for the certification authority service.
|
|
4693
4952
|
# Corresponds to the JSON property `caConnectionAdapterConfigReference`
|
|
4694
4953
|
# @return [String]
|
|
4695
4954
|
attr_accessor :ca_connection_adapter_config_reference
|
|
@@ -4709,8 +4968,7 @@ module Google
|
|
|
4709
4968
|
include Google::Apis::Core::Hashable
|
|
4710
4969
|
|
|
4711
4970
|
# Output only. A string that references the administrator-provided configuration
|
|
4712
|
-
# for the certificate provisioning profile.
|
|
4713
|
-
# configuration was given.
|
|
4971
|
+
# for the certificate provisioning profile.
|
|
4714
4972
|
# Corresponds to the JSON property `profileAdapterConfigReference`
|
|
4715
4973
|
# @return [String]
|
|
4716
4974
|
attr_accessor :profile_adapter_config_reference
|
|
@@ -5059,8 +5317,7 @@ module Google
|
|
|
5059
5317
|
include Google::Apis::Core::Hashable
|
|
5060
5318
|
|
|
5061
5319
|
# Output only. A string that references the administrator-provided configuration
|
|
5062
|
-
# for the certification authority service.
|
|
5063
|
-
# configuration was given.
|
|
5320
|
+
# for the certification authority service.
|
|
5064
5321
|
# Corresponds to the JSON property `caConnectionAdapterConfigReference`
|
|
5065
5322
|
# @return [String]
|
|
5066
5323
|
attr_accessor :ca_connection_adapter_config_reference
|
|
@@ -5080,7 +5337,8 @@ module Google
|
|
|
5080
5337
|
include Google::Apis::Core::Hashable
|
|
5081
5338
|
|
|
5082
5339
|
# Output only. The certificate template name as defined by the admin on their on-
|
|
5083
|
-
# prem infrastructure.
|
|
5340
|
+
# prem infrastructure. The Certificate Authority uses this name to identify the
|
|
5341
|
+
# certificate template.
|
|
5084
5342
|
# Corresponds to the JSON property `certificateTemplateName`
|
|
5085
5343
|
# @return [String]
|
|
5086
5344
|
attr_accessor :certificate_template_name
|
|
@@ -5143,6 +5401,40 @@ module Google
|
|
|
5143
5401
|
end
|
|
5144
5402
|
end
|
|
5145
5403
|
|
|
5404
|
+
# Request message for marking a certificate provisioning process as failed.
|
|
5405
|
+
class GoogleChromeManagementVersionsV1SetFailureRequest
|
|
5406
|
+
include Google::Apis::Core::Hashable
|
|
5407
|
+
|
|
5408
|
+
# Required. A message describing the failure details. It is displayed on the
|
|
5409
|
+
# ChromeOS client device.
|
|
5410
|
+
# Corresponds to the JSON property `errorMessage`
|
|
5411
|
+
# @return [String]
|
|
5412
|
+
attr_accessor :error_message
|
|
5413
|
+
|
|
5414
|
+
def initialize(**args)
|
|
5415
|
+
update!(**args)
|
|
5416
|
+
end
|
|
5417
|
+
|
|
5418
|
+
# Update properties of this object
|
|
5419
|
+
def update!(**args)
|
|
5420
|
+
@error_message = args[:error_message] if args.key?(:error_message)
|
|
5421
|
+
end
|
|
5422
|
+
end
|
|
5423
|
+
|
|
5424
|
+
# Response message for publishing a failure for a certificate provisioning
|
|
5425
|
+
# process.
|
|
5426
|
+
class GoogleChromeManagementVersionsV1SetFailureResponse
|
|
5427
|
+
include Google::Apis::Core::Hashable
|
|
5428
|
+
|
|
5429
|
+
def initialize(**args)
|
|
5430
|
+
update!(**args)
|
|
5431
|
+
end
|
|
5432
|
+
|
|
5433
|
+
# Update properties of this object
|
|
5434
|
+
def update!(**args)
|
|
5435
|
+
end
|
|
5436
|
+
end
|
|
5437
|
+
|
|
5146
5438
|
# Metadata for the long-running operation returned by signData.
|
|
5147
5439
|
class GoogleChromeManagementVersionsV1SignDataMetadata
|
|
5148
5440
|
include Google::Apis::Core::Hashable
|
|
@@ -5162,6 +5454,34 @@ module Google
|
|
|
5162
5454
|
end
|
|
5163
5455
|
end
|
|
5164
5456
|
|
|
5457
|
+
# Request message for requesting a signature from the client that initated a
|
|
5458
|
+
# certificate provisioning process.
|
|
5459
|
+
class GoogleChromeManagementVersionsV1SignDataRequest
|
|
5460
|
+
include Google::Apis::Core::Hashable
|
|
5461
|
+
|
|
5462
|
+
# Required. The data that the client was asked to sign.
|
|
5463
|
+
# Corresponds to the JSON property `signData`
|
|
5464
|
+
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
|
5465
|
+
# @return [String]
|
|
5466
|
+
attr_accessor :sign_data
|
|
5467
|
+
|
|
5468
|
+
# Required. The signature algorithm that the adapter expects the client and
|
|
5469
|
+
# backend components to use when processing `sign_data`.
|
|
5470
|
+
# Corresponds to the JSON property `signatureAlgorithm`
|
|
5471
|
+
# @return [String]
|
|
5472
|
+
attr_accessor :signature_algorithm
|
|
5473
|
+
|
|
5474
|
+
def initialize(**args)
|
|
5475
|
+
update!(**args)
|
|
5476
|
+
end
|
|
5477
|
+
|
|
5478
|
+
# Update properties of this object
|
|
5479
|
+
def update!(**args)
|
|
5480
|
+
@sign_data = args[:sign_data] if args.key?(:sign_data)
|
|
5481
|
+
@signature_algorithm = args[:signature_algorithm] if args.key?(:signature_algorithm)
|
|
5482
|
+
end
|
|
5483
|
+
end
|
|
5484
|
+
|
|
5165
5485
|
# Response message for requesting a signature from the client that initated a
|
|
5166
5486
|
# certificate provisioning process.
|
|
5167
5487
|
class GoogleChromeManagementVersionsV1SignDataResponse
|
|
@@ -5191,7 +5511,7 @@ module Google
|
|
|
5191
5511
|
# @return [String]
|
|
5192
5512
|
attr_accessor :type
|
|
5193
5513
|
|
|
5194
|
-
# Output only. The value of the subject alternative name with
|
|
5514
|
+
# Output only. The value of the subject alternative name with respect to the `
|
|
5195
5515
|
# type`.
|
|
5196
5516
|
# Corresponds to the JSON property `value`
|
|
5197
5517
|
# @return [String]
|
|
@@ -5235,6 +5555,148 @@ module Google
|
|
|
5235
5555
|
end
|
|
5236
5556
|
end
|
|
5237
5557
|
|
|
5558
|
+
# Request message for uploading an issued certificate for a certificate
|
|
5559
|
+
# provisioning process.
|
|
5560
|
+
class GoogleChromeManagementVersionsV1UploadCertificateRequest
|
|
5561
|
+
include Google::Apis::Core::Hashable
|
|
5562
|
+
|
|
5563
|
+
# Required. The issued certificate in PEM format.
|
|
5564
|
+
# Corresponds to the JSON property `certificatePem`
|
|
5565
|
+
# @return [String]
|
|
5566
|
+
attr_accessor :certificate_pem
|
|
5567
|
+
|
|
5568
|
+
def initialize(**args)
|
|
5569
|
+
update!(**args)
|
|
5570
|
+
end
|
|
5571
|
+
|
|
5572
|
+
# Update properties of this object
|
|
5573
|
+
def update!(**args)
|
|
5574
|
+
@certificate_pem = args[:certificate_pem] if args.key?(:certificate_pem)
|
|
5575
|
+
end
|
|
5576
|
+
end
|
|
5577
|
+
|
|
5578
|
+
# Response message for publishing an issued certificate for a certificate
|
|
5579
|
+
# provisioning process.
|
|
5580
|
+
class GoogleChromeManagementVersionsV1UploadCertificateResponse
|
|
5581
|
+
include Google::Apis::Core::Hashable
|
|
5582
|
+
|
|
5583
|
+
def initialize(**args)
|
|
5584
|
+
update!(**args)
|
|
5585
|
+
end
|
|
5586
|
+
|
|
5587
|
+
# Update properties of this object
|
|
5588
|
+
def update!(**args)
|
|
5589
|
+
end
|
|
5590
|
+
end
|
|
5591
|
+
|
|
5592
|
+
# The request message for Operations.CancelOperation.
|
|
5593
|
+
class GoogleLongrunningCancelOperationRequest
|
|
5594
|
+
include Google::Apis::Core::Hashable
|
|
5595
|
+
|
|
5596
|
+
def initialize(**args)
|
|
5597
|
+
update!(**args)
|
|
5598
|
+
end
|
|
5599
|
+
|
|
5600
|
+
# Update properties of this object
|
|
5601
|
+
def update!(**args)
|
|
5602
|
+
end
|
|
5603
|
+
end
|
|
5604
|
+
|
|
5605
|
+
# The response message for Operations.ListOperations.
|
|
5606
|
+
class GoogleLongrunningListOperationsResponse
|
|
5607
|
+
include Google::Apis::Core::Hashable
|
|
5608
|
+
|
|
5609
|
+
# The standard List next-page token.
|
|
5610
|
+
# Corresponds to the JSON property `nextPageToken`
|
|
5611
|
+
# @return [String]
|
|
5612
|
+
attr_accessor :next_page_token
|
|
5613
|
+
|
|
5614
|
+
# A list of operations that matches the specified filter in the request.
|
|
5615
|
+
# Corresponds to the JSON property `operations`
|
|
5616
|
+
# @return [Array<Google::Apis::ChromemanagementV1::GoogleLongrunningOperation>]
|
|
5617
|
+
attr_accessor :operations
|
|
5618
|
+
|
|
5619
|
+
# Unordered list. Unreachable resources. Populated when the request sets `
|
|
5620
|
+
# ListOperationsRequest.return_partial_success` and reads across collections e.g.
|
|
5621
|
+
# when attempting to list all resources across all supported locations.
|
|
5622
|
+
# Corresponds to the JSON property `unreachable`
|
|
5623
|
+
# @return [Array<String>]
|
|
5624
|
+
attr_accessor :unreachable
|
|
5625
|
+
|
|
5626
|
+
def initialize(**args)
|
|
5627
|
+
update!(**args)
|
|
5628
|
+
end
|
|
5629
|
+
|
|
5630
|
+
# Update properties of this object
|
|
5631
|
+
def update!(**args)
|
|
5632
|
+
@next_page_token = args[:next_page_token] if args.key?(:next_page_token)
|
|
5633
|
+
@operations = args[:operations] if args.key?(:operations)
|
|
5634
|
+
@unreachable = args[:unreachable] if args.key?(:unreachable)
|
|
5635
|
+
end
|
|
5636
|
+
end
|
|
5637
|
+
|
|
5638
|
+
# This resource represents a long-running operation that is the result of a
|
|
5639
|
+
# network API call.
|
|
5640
|
+
class GoogleLongrunningOperation
|
|
5641
|
+
include Google::Apis::Core::Hashable
|
|
5642
|
+
|
|
5643
|
+
# If the value is `false`, it means the operation is still in progress. If `true`
|
|
5644
|
+
# , the operation is completed, and either `error` or `response` is available.
|
|
5645
|
+
# Corresponds to the JSON property `done`
|
|
5646
|
+
# @return [Boolean]
|
|
5647
|
+
attr_accessor :done
|
|
5648
|
+
alias_method :done?, :done
|
|
5649
|
+
|
|
5650
|
+
# The `Status` type defines a logical error model that is suitable for different
|
|
5651
|
+
# programming environments, including REST APIs and RPC APIs. It is used by [
|
|
5652
|
+
# gRPC](https://github.com/grpc). Each `Status` message contains three pieces of
|
|
5653
|
+
# data: error code, error message, and error details. You can find out more
|
|
5654
|
+
# about this error model and how to work with it in the [API Design Guide](https:
|
|
5655
|
+
# //cloud.google.com/apis/design/errors).
|
|
5656
|
+
# Corresponds to the JSON property `error`
|
|
5657
|
+
# @return [Google::Apis::ChromemanagementV1::GoogleRpcStatus]
|
|
5658
|
+
attr_accessor :error
|
|
5659
|
+
|
|
5660
|
+
# Service-specific metadata associated with the operation. It typically contains
|
|
5661
|
+
# progress information and common metadata such as create time. Some services
|
|
5662
|
+
# might not provide such metadata. Any method that returns a long-running
|
|
5663
|
+
# operation should document the metadata type, if any.
|
|
5664
|
+
# Corresponds to the JSON property `metadata`
|
|
5665
|
+
# @return [Hash<String,Object>]
|
|
5666
|
+
attr_accessor :metadata
|
|
5667
|
+
|
|
5668
|
+
# The server-assigned name, which is only unique within the same service that
|
|
5669
|
+
# originally returns it. If you use the default HTTP mapping, the `name` should
|
|
5670
|
+
# be a resource name ending with `operations/`unique_id``.
|
|
5671
|
+
# Corresponds to the JSON property `name`
|
|
5672
|
+
# @return [String]
|
|
5673
|
+
attr_accessor :name
|
|
5674
|
+
|
|
5675
|
+
# The normal, successful response of the operation. If the original method
|
|
5676
|
+
# returns no data on success, such as `Delete`, the response is `google.protobuf.
|
|
5677
|
+
# Empty`. If the original method is standard `Get`/`Create`/`Update`, the
|
|
5678
|
+
# response should be the resource. For other methods, the response should have
|
|
5679
|
+
# the type `XxxResponse`, where `Xxx` is the original method name. For example,
|
|
5680
|
+
# if the original method name is `TakeSnapshot()`, the inferred response type is
|
|
5681
|
+
# `TakeSnapshotResponse`.
|
|
5682
|
+
# Corresponds to the JSON property `response`
|
|
5683
|
+
# @return [Hash<String,Object>]
|
|
5684
|
+
attr_accessor :response
|
|
5685
|
+
|
|
5686
|
+
def initialize(**args)
|
|
5687
|
+
update!(**args)
|
|
5688
|
+
end
|
|
5689
|
+
|
|
5690
|
+
# Update properties of this object
|
|
5691
|
+
def update!(**args)
|
|
5692
|
+
@done = args[:done] if args.key?(:done)
|
|
5693
|
+
@error = args[:error] if args.key?(:error)
|
|
5694
|
+
@metadata = args[:metadata] if args.key?(:metadata)
|
|
5695
|
+
@name = args[:name] if args.key?(:name)
|
|
5696
|
+
@response = args[:response] if args.key?(:response)
|
|
5697
|
+
end
|
|
5698
|
+
end
|
|
5699
|
+
|
|
5238
5700
|
# A generic empty message that you can re-use to avoid defining duplicated empty
|
|
5239
5701
|
# messages in your APIs. A typical example is to use it as the request or the
|
|
5240
5702
|
# response type of an API method. For instance: service Foo ` rpc Bar(google.
|
|
@@ -16,13 +16,13 @@ module Google
|
|
|
16
16
|
module Apis
|
|
17
17
|
module ChromemanagementV1
|
|
18
18
|
# Version of the google-apis-chromemanagement_v1 gem
|
|
19
|
-
GEM_VERSION = "0.
|
|
19
|
+
GEM_VERSION = "0.72.0"
|
|
20
20
|
|
|
21
21
|
# Version of the code generator used to generate this client
|
|
22
22
|
GENERATOR_VERSION = "0.18.0"
|
|
23
23
|
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
|
25
|
-
REVISION = "
|
|
25
|
+
REVISION = "20251105"
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|