google-apis-androidmanagement_v1 0.56.0 → 0.57.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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bdc8700470ba4d2f1d8cc8ee0d6f64eea3cddfbc95074be3cda91d9577c8cd16
|
4
|
+
data.tar.gz: 46afc5dec59c19d56db2a0554247353925231e573e888479e24ff6b175cf14bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: efa25e8862b8e1a2a4ab340cadd4df3b6a94ea3c989b11aadf58db537dd3a2bdfc3eb93f5f47b5de0935a04e4653274105c5181f77538097c4797da3809055c2
|
7
|
+
data.tar.gz: 5cea90089db24ee92882c85ee824e46d5c5256c25231a7dda0fa826304d7b2b078576cf494093ea5772ed9699b76898f744e22057a8f1c3f9280bf38932968ca
|
data/CHANGELOG.md
CHANGED
@@ -1089,6 +1089,29 @@ module Google
|
|
1089
1089
|
# @return [Array<String>]
|
1090
1090
|
attr_accessor :reset_password_flags
|
1091
1091
|
|
1092
|
+
# Parameters associated with the START_LOST_MODE command to put the device into
|
1093
|
+
# lost mode. At least one of the parameters, not including the organization name,
|
1094
|
+
# must be provided in order for the device to be put into lost mode.
|
1095
|
+
# Corresponds to the JSON property `startLostModeParams`
|
1096
|
+
# @return [Google::Apis::AndroidmanagementV1::StartLostModeParams]
|
1097
|
+
attr_accessor :start_lost_mode_params
|
1098
|
+
|
1099
|
+
# Status of the START_LOST_MODE command to put the device into lost mode.
|
1100
|
+
# Corresponds to the JSON property `startLostModeStatus`
|
1101
|
+
# @return [Google::Apis::AndroidmanagementV1::StartLostModeStatus]
|
1102
|
+
attr_accessor :start_lost_mode_status
|
1103
|
+
|
1104
|
+
# Parameters associated with the STOP_LOST_MODE command to take the device out
|
1105
|
+
# of lost mode.
|
1106
|
+
# Corresponds to the JSON property `stopLostModeParams`
|
1107
|
+
# @return [Google::Apis::AndroidmanagementV1::StopLostModeParams]
|
1108
|
+
attr_accessor :stop_lost_mode_params
|
1109
|
+
|
1110
|
+
# Status of the STOP_LOST_MODE command to take the device out of lost mode.
|
1111
|
+
# Corresponds to the JSON property `stopLostModeStatus`
|
1112
|
+
# @return [Google::Apis::AndroidmanagementV1::StopLostModeStatus]
|
1113
|
+
attr_accessor :stop_lost_mode_status
|
1114
|
+
|
1092
1115
|
# The type of the command.
|
1093
1116
|
# Corresponds to the JSON property `type`
|
1094
1117
|
# @return [String]
|
@@ -1114,6 +1137,10 @@ module Google
|
|
1114
1137
|
@error_code = args[:error_code] if args.key?(:error_code)
|
1115
1138
|
@new_password = args[:new_password] if args.key?(:new_password)
|
1116
1139
|
@reset_password_flags = args[:reset_password_flags] if args.key?(:reset_password_flags)
|
1140
|
+
@start_lost_mode_params = args[:start_lost_mode_params] if args.key?(:start_lost_mode_params)
|
1141
|
+
@start_lost_mode_status = args[:start_lost_mode_status] if args.key?(:start_lost_mode_status)
|
1142
|
+
@stop_lost_mode_params = args[:stop_lost_mode_params] if args.key?(:stop_lost_mode_params)
|
1143
|
+
@stop_lost_mode_status = args[:stop_lost_mode_status] if args.key?(:stop_lost_mode_status)
|
1117
1144
|
@type = args[:type] if args.key?(:type)
|
1118
1145
|
@user_name = args[:user_name] if args.key?(:user_name)
|
1119
1146
|
end
|
@@ -1730,6 +1757,11 @@ module Google
|
|
1730
1757
|
class DeviceRadioState
|
1731
1758
|
include Google::Apis::Core::Hashable
|
1732
1759
|
|
1760
|
+
# Controls whether airplane mode can be toggled by the user or not
|
1761
|
+
# Corresponds to the JSON property `airplaneModeState`
|
1762
|
+
# @return [String]
|
1763
|
+
attr_accessor :airplane_mode_state
|
1764
|
+
|
1733
1765
|
# Controls current state of Wi-Fi and if user can change its state.
|
1734
1766
|
# Corresponds to the JSON property `wifiState`
|
1735
1767
|
# @return [String]
|
@@ -1741,6 +1773,7 @@ module Google
|
|
1741
1773
|
|
1742
1774
|
# Update properties of this object
|
1743
1775
|
def update!(**args)
|
1776
|
+
@airplane_mode_state = args[:airplane_mode_state] if args.key?(:airplane_mode_state)
|
1744
1777
|
@wifi_state = args[:wifi_state] if args.key?(:wifi_state)
|
1745
1778
|
end
|
1746
1779
|
end
|
@@ -2909,6 +2942,31 @@ module Google
|
|
2909
2942
|
end
|
2910
2943
|
end
|
2911
2944
|
|
2945
|
+
# The device location containing the latitude and longitude.
|
2946
|
+
class Location
|
2947
|
+
include Google::Apis::Core::Hashable
|
2948
|
+
|
2949
|
+
# The latitude position of the location
|
2950
|
+
# Corresponds to the JSON property `latitude`
|
2951
|
+
# @return [Float]
|
2952
|
+
attr_accessor :latitude
|
2953
|
+
|
2954
|
+
# The longitude position of the location
|
2955
|
+
# Corresponds to the JSON property `longitude`
|
2956
|
+
# @return [Float]
|
2957
|
+
attr_accessor :longitude
|
2958
|
+
|
2959
|
+
def initialize(**args)
|
2960
|
+
update!(**args)
|
2961
|
+
end
|
2962
|
+
|
2963
|
+
# Update properties of this object
|
2964
|
+
def update!(**args)
|
2965
|
+
@latitude = args[:latitude] if args.key?(:latitude)
|
2966
|
+
@longitude = args[:longitude] if args.key?(:longitude)
|
2967
|
+
end
|
2968
|
+
end
|
2969
|
+
|
2912
2970
|
# The usageLog buffer on the device has reached 90% of its capacity, therefore
|
2913
2971
|
# older events may be dropped. Intentionally empty.
|
2914
2972
|
class LogBufferSizeCriticalEvent
|
@@ -2949,6 +3007,46 @@ module Google
|
|
2949
3007
|
end
|
2950
3008
|
end
|
2951
3009
|
|
3010
|
+
# A lost mode event containing the device location and battery level as a
|
3011
|
+
# percentage.
|
3012
|
+
class LostModeLocationEvent
|
3013
|
+
include Google::Apis::Core::Hashable
|
3014
|
+
|
3015
|
+
# The battery level as a number between 0 and 100 inclusive
|
3016
|
+
# Corresponds to the JSON property `batteryLevel`
|
3017
|
+
# @return [Fixnum]
|
3018
|
+
attr_accessor :battery_level
|
3019
|
+
|
3020
|
+
# The device location containing the latitude and longitude.
|
3021
|
+
# Corresponds to the JSON property `location`
|
3022
|
+
# @return [Google::Apis::AndroidmanagementV1::Location]
|
3023
|
+
attr_accessor :location
|
3024
|
+
|
3025
|
+
def initialize(**args)
|
3026
|
+
update!(**args)
|
3027
|
+
end
|
3028
|
+
|
3029
|
+
# Update properties of this object
|
3030
|
+
def update!(**args)
|
3031
|
+
@battery_level = args[:battery_level] if args.key?(:battery_level)
|
3032
|
+
@location = args[:location] if args.key?(:location)
|
3033
|
+
end
|
3034
|
+
end
|
3035
|
+
|
3036
|
+
# An event indicating an outgoing phone call has been made when a device is in
|
3037
|
+
# lost mode. Intentionally empty.
|
3038
|
+
class LostModeOutgoingPhoneCallEvent
|
3039
|
+
include Google::Apis::Core::Hashable
|
3040
|
+
|
3041
|
+
def initialize(**args)
|
3042
|
+
update!(**args)
|
3043
|
+
end
|
3044
|
+
|
3045
|
+
# Update properties of this object
|
3046
|
+
def update!(**args)
|
3047
|
+
end
|
3048
|
+
end
|
3049
|
+
|
2952
3050
|
# The managed configurations template for the app, saved from the managed
|
2953
3051
|
# configurations iframe.
|
2954
3052
|
class ManagedConfigurationTemplate
|
@@ -4590,12 +4688,6 @@ module Google
|
|
4590
4688
|
# @return [Fixnum]
|
4591
4689
|
attr_accessor :api_level
|
4592
4690
|
|
4593
|
-
# The email address of the authenticated user (only present for Google Account
|
4594
|
-
# provisioning method).
|
4595
|
-
# Corresponds to the JSON property `authenticatedUserEmail`
|
4596
|
-
# @return [String]
|
4597
|
-
attr_accessor :authenticated_user_email
|
4598
|
-
|
4599
4691
|
# Brand of the device. For example, Google.
|
4600
4692
|
# Corresponds to the JSON property `brand`
|
4601
4693
|
# @return [String]
|
@@ -4633,7 +4725,6 @@ module Google
|
|
4633
4725
|
# Update properties of this object
|
4634
4726
|
def update!(**args)
|
4635
4727
|
@api_level = args[:api_level] if args.key?(:api_level)
|
4636
|
-
@authenticated_user_email = args[:authenticated_user_email] if args.key?(:authenticated_user_email)
|
4637
4728
|
@brand = args[:brand] if args.key?(:brand)
|
4638
4729
|
@enterprise = args[:enterprise] if args.key?(:enterprise)
|
4639
4730
|
@management_mode = args[:management_mode] if args.key?(:management_mode)
|
@@ -4958,6 +5049,74 @@ module Google
|
|
4958
5049
|
end
|
4959
5050
|
end
|
4960
5051
|
|
5052
|
+
# Parameters associated with the START_LOST_MODE command to put the device into
|
5053
|
+
# lost mode. At least one of the parameters, not including the organization name,
|
5054
|
+
# must be provided in order for the device to be put into lost mode.
|
5055
|
+
class StartLostModeParams
|
5056
|
+
include Google::Apis::Core::Hashable
|
5057
|
+
|
5058
|
+
# The email address displayed to the user when the device is in lost mode.
|
5059
|
+
# Corresponds to the JSON property `lostEmailAddress`
|
5060
|
+
# @return [String]
|
5061
|
+
attr_accessor :lost_email_address
|
5062
|
+
|
5063
|
+
# Provides a user-facing message with locale info. The maximum message length is
|
5064
|
+
# 4096 characters.
|
5065
|
+
# Corresponds to the JSON property `lostMessage`
|
5066
|
+
# @return [Google::Apis::AndroidmanagementV1::UserFacingMessage]
|
5067
|
+
attr_accessor :lost_message
|
5068
|
+
|
5069
|
+
# Provides a user-facing message with locale info. The maximum message length is
|
5070
|
+
# 4096 characters.
|
5071
|
+
# Corresponds to the JSON property `lostOrganization`
|
5072
|
+
# @return [Google::Apis::AndroidmanagementV1::UserFacingMessage]
|
5073
|
+
attr_accessor :lost_organization
|
5074
|
+
|
5075
|
+
# Provides a user-facing message with locale info. The maximum message length is
|
5076
|
+
# 4096 characters.
|
5077
|
+
# Corresponds to the JSON property `lostPhoneNumber`
|
5078
|
+
# @return [Google::Apis::AndroidmanagementV1::UserFacingMessage]
|
5079
|
+
attr_accessor :lost_phone_number
|
5080
|
+
|
5081
|
+
# Provides a user-facing message with locale info. The maximum message length is
|
5082
|
+
# 4096 characters.
|
5083
|
+
# Corresponds to the JSON property `lostStreetAddress`
|
5084
|
+
# @return [Google::Apis::AndroidmanagementV1::UserFacingMessage]
|
5085
|
+
attr_accessor :lost_street_address
|
5086
|
+
|
5087
|
+
def initialize(**args)
|
5088
|
+
update!(**args)
|
5089
|
+
end
|
5090
|
+
|
5091
|
+
# Update properties of this object
|
5092
|
+
def update!(**args)
|
5093
|
+
@lost_email_address = args[:lost_email_address] if args.key?(:lost_email_address)
|
5094
|
+
@lost_message = args[:lost_message] if args.key?(:lost_message)
|
5095
|
+
@lost_organization = args[:lost_organization] if args.key?(:lost_organization)
|
5096
|
+
@lost_phone_number = args[:lost_phone_number] if args.key?(:lost_phone_number)
|
5097
|
+
@lost_street_address = args[:lost_street_address] if args.key?(:lost_street_address)
|
5098
|
+
end
|
5099
|
+
end
|
5100
|
+
|
5101
|
+
# Status of the START_LOST_MODE command to put the device into lost mode.
|
5102
|
+
class StartLostModeStatus
|
5103
|
+
include Google::Apis::Core::Hashable
|
5104
|
+
|
5105
|
+
# The status. See StartLostModeStatus.
|
5106
|
+
# Corresponds to the JSON property `status`
|
5107
|
+
# @return [String]
|
5108
|
+
attr_accessor :status
|
5109
|
+
|
5110
|
+
def initialize(**args)
|
5111
|
+
update!(**args)
|
5112
|
+
end
|
5113
|
+
|
5114
|
+
# Update properties of this object
|
5115
|
+
def update!(**args)
|
5116
|
+
@status = args[:status] if args.key?(:status)
|
5117
|
+
end
|
5118
|
+
end
|
5119
|
+
|
4961
5120
|
# The Status type defines a logical error model that is suitable for different
|
4962
5121
|
# programming environments, including REST APIs and RPC APIs. It is used by gRPC
|
4963
5122
|
# (https://github.com/grpc). Each Status message contains three pieces of data:
|
@@ -5089,6 +5248,58 @@ module Google
|
|
5089
5248
|
end
|
5090
5249
|
end
|
5091
5250
|
|
5251
|
+
# Parameters associated with the STOP_LOST_MODE command to take the device out
|
5252
|
+
# of lost mode.
|
5253
|
+
class StopLostModeParams
|
5254
|
+
include Google::Apis::Core::Hashable
|
5255
|
+
|
5256
|
+
def initialize(**args)
|
5257
|
+
update!(**args)
|
5258
|
+
end
|
5259
|
+
|
5260
|
+
# Update properties of this object
|
5261
|
+
def update!(**args)
|
5262
|
+
end
|
5263
|
+
end
|
5264
|
+
|
5265
|
+
# Status of the STOP_LOST_MODE command to take the device out of lost mode.
|
5266
|
+
class StopLostModeStatus
|
5267
|
+
include Google::Apis::Core::Hashable
|
5268
|
+
|
5269
|
+
# The status. See StopLostModeStatus.
|
5270
|
+
# Corresponds to the JSON property `status`
|
5271
|
+
# @return [String]
|
5272
|
+
attr_accessor :status
|
5273
|
+
|
5274
|
+
def initialize(**args)
|
5275
|
+
update!(**args)
|
5276
|
+
end
|
5277
|
+
|
5278
|
+
# Update properties of this object
|
5279
|
+
def update!(**args)
|
5280
|
+
@status = args[:status] if args.key?(:status)
|
5281
|
+
end
|
5282
|
+
end
|
5283
|
+
|
5284
|
+
# A lost mode event indicating the user has attempted to stop lost mode.
|
5285
|
+
class StopLostModeUserAttemptEvent
|
5286
|
+
include Google::Apis::Core::Hashable
|
5287
|
+
|
5288
|
+
# The status of the attempt to stop lost mode.
|
5289
|
+
# Corresponds to the JSON property `status`
|
5290
|
+
# @return [String]
|
5291
|
+
attr_accessor :status
|
5292
|
+
|
5293
|
+
def initialize(**args)
|
5294
|
+
update!(**args)
|
5295
|
+
end
|
5296
|
+
|
5297
|
+
# Update properties of this object
|
5298
|
+
def update!(**args)
|
5299
|
+
@status = args[:status] if args.key?(:status)
|
5300
|
+
end
|
5301
|
+
end
|
5302
|
+
|
5092
5303
|
# Configuration for managing system updates
|
5093
5304
|
class SystemUpdate
|
5094
5305
|
include Google::Apis::Core::Hashable
|
@@ -5395,6 +5606,18 @@ module Google
|
|
5395
5606
|
# @return [Google::Apis::AndroidmanagementV1::LoggingStoppedEvent]
|
5396
5607
|
attr_accessor :logging_stopped_event
|
5397
5608
|
|
5609
|
+
# A lost mode event containing the device location and battery level as a
|
5610
|
+
# percentage.
|
5611
|
+
# Corresponds to the JSON property `lostModeLocationEvent`
|
5612
|
+
# @return [Google::Apis::AndroidmanagementV1::LostModeLocationEvent]
|
5613
|
+
attr_accessor :lost_mode_location_event
|
5614
|
+
|
5615
|
+
# An event indicating an outgoing phone call has been made when a device is in
|
5616
|
+
# lost mode. Intentionally empty.
|
5617
|
+
# Corresponds to the JSON property `lostModeOutgoingPhoneCallEvent`
|
5618
|
+
# @return [Google::Apis::AndroidmanagementV1::LostModeOutgoingPhoneCallEvent]
|
5619
|
+
attr_accessor :lost_mode_outgoing_phone_call_event
|
5620
|
+
|
5398
5621
|
# Removable media was mounted.
|
5399
5622
|
# Corresponds to the JSON property `mediaMountEvent`
|
5400
5623
|
# @return [Google::Apis::AndroidmanagementV1::MediaMountEvent]
|
@@ -5420,6 +5643,11 @@ module Google
|
|
5420
5643
|
# @return [Google::Apis::AndroidmanagementV1::RemoteLockEvent]
|
5421
5644
|
attr_accessor :remote_lock_event
|
5422
5645
|
|
5646
|
+
# A lost mode event indicating the user has attempted to stop lost mode.
|
5647
|
+
# Corresponds to the JSON property `stopLostModeUserAttemptEvent`
|
5648
|
+
# @return [Google::Apis::AndroidmanagementV1::StopLostModeUserAttemptEvent]
|
5649
|
+
attr_accessor :stop_lost_mode_user_attempt_event
|
5650
|
+
|
5423
5651
|
# The work profile or company-owned device failed to wipe when requested. This
|
5424
5652
|
# could be user initiated or admin initiated e.g. delete was received.
|
5425
5653
|
# Intentionally empty.
|
@@ -5457,11 +5685,14 @@ module Google
|
|
5457
5685
|
@log_buffer_size_critical_event = args[:log_buffer_size_critical_event] if args.key?(:log_buffer_size_critical_event)
|
5458
5686
|
@logging_started_event = args[:logging_started_event] if args.key?(:logging_started_event)
|
5459
5687
|
@logging_stopped_event = args[:logging_stopped_event] if args.key?(:logging_stopped_event)
|
5688
|
+
@lost_mode_location_event = args[:lost_mode_location_event] if args.key?(:lost_mode_location_event)
|
5689
|
+
@lost_mode_outgoing_phone_call_event = args[:lost_mode_outgoing_phone_call_event] if args.key?(:lost_mode_outgoing_phone_call_event)
|
5460
5690
|
@media_mount_event = args[:media_mount_event] if args.key?(:media_mount_event)
|
5461
5691
|
@media_unmount_event = args[:media_unmount_event] if args.key?(:media_unmount_event)
|
5462
5692
|
@os_shutdown_event = args[:os_shutdown_event] if args.key?(:os_shutdown_event)
|
5463
5693
|
@os_startup_event = args[:os_startup_event] if args.key?(:os_startup_event)
|
5464
5694
|
@remote_lock_event = args[:remote_lock_event] if args.key?(:remote_lock_event)
|
5695
|
+
@stop_lost_mode_user_attempt_event = args[:stop_lost_mode_user_attempt_event] if args.key?(:stop_lost_mode_user_attempt_event)
|
5465
5696
|
@wipe_failure_event = args[:wipe_failure_event] if args.key?(:wipe_failure_event)
|
5466
5697
|
end
|
5467
5698
|
end
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module AndroidmanagementV1
|
18
18
|
# Version of the google-apis-androidmanagement_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.57.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
22
|
GENERATOR_VERSION = "0.12.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20230724"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -412,6 +412,12 @@ module Google
|
|
412
412
|
include Google::Apis::Core::JsonObjectSupport
|
413
413
|
end
|
414
414
|
|
415
|
+
class Location
|
416
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
|
+
|
418
|
+
include Google::Apis::Core::JsonObjectSupport
|
419
|
+
end
|
420
|
+
|
415
421
|
class LogBufferSizeCriticalEvent
|
416
422
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
417
423
|
|
@@ -430,6 +436,18 @@ module Google
|
|
430
436
|
include Google::Apis::Core::JsonObjectSupport
|
431
437
|
end
|
432
438
|
|
439
|
+
class LostModeLocationEvent
|
440
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
441
|
+
|
442
|
+
include Google::Apis::Core::JsonObjectSupport
|
443
|
+
end
|
444
|
+
|
445
|
+
class LostModeOutgoingPhoneCallEvent
|
446
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
447
|
+
|
448
|
+
include Google::Apis::Core::JsonObjectSupport
|
449
|
+
end
|
450
|
+
|
433
451
|
class ManagedConfigurationTemplate
|
434
452
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
435
453
|
|
@@ -646,6 +664,18 @@ module Google
|
|
646
664
|
include Google::Apis::Core::JsonObjectSupport
|
647
665
|
end
|
648
666
|
|
667
|
+
class StartLostModeParams
|
668
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
669
|
+
|
670
|
+
include Google::Apis::Core::JsonObjectSupport
|
671
|
+
end
|
672
|
+
|
673
|
+
class StartLostModeStatus
|
674
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
675
|
+
|
676
|
+
include Google::Apis::Core::JsonObjectSupport
|
677
|
+
end
|
678
|
+
|
649
679
|
class Status
|
650
680
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
651
681
|
|
@@ -658,6 +688,24 @@ module Google
|
|
658
688
|
include Google::Apis::Core::JsonObjectSupport
|
659
689
|
end
|
660
690
|
|
691
|
+
class StopLostModeParams
|
692
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
693
|
+
|
694
|
+
include Google::Apis::Core::JsonObjectSupport
|
695
|
+
end
|
696
|
+
|
697
|
+
class StopLostModeStatus
|
698
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
699
|
+
|
700
|
+
include Google::Apis::Core::JsonObjectSupport
|
701
|
+
end
|
702
|
+
|
703
|
+
class StopLostModeUserAttemptEvent
|
704
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
705
|
+
|
706
|
+
include Google::Apis::Core::JsonObjectSupport
|
707
|
+
end
|
708
|
+
|
661
709
|
class SystemUpdate
|
662
710
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
663
711
|
|
@@ -995,6 +1043,14 @@ module Google
|
|
995
1043
|
property :error_code, as: 'errorCode'
|
996
1044
|
property :new_password, as: 'newPassword'
|
997
1045
|
collection :reset_password_flags, as: 'resetPasswordFlags'
|
1046
|
+
property :start_lost_mode_params, as: 'startLostModeParams', class: Google::Apis::AndroidmanagementV1::StartLostModeParams, decorator: Google::Apis::AndroidmanagementV1::StartLostModeParams::Representation
|
1047
|
+
|
1048
|
+
property :start_lost_mode_status, as: 'startLostModeStatus', class: Google::Apis::AndroidmanagementV1::StartLostModeStatus, decorator: Google::Apis::AndroidmanagementV1::StartLostModeStatus::Representation
|
1049
|
+
|
1050
|
+
property :stop_lost_mode_params, as: 'stopLostModeParams', class: Google::Apis::AndroidmanagementV1::StopLostModeParams, decorator: Google::Apis::AndroidmanagementV1::StopLostModeParams::Representation
|
1051
|
+
|
1052
|
+
property :stop_lost_mode_status, as: 'stopLostModeStatus', class: Google::Apis::AndroidmanagementV1::StopLostModeStatus, decorator: Google::Apis::AndroidmanagementV1::StopLostModeStatus::Representation
|
1053
|
+
|
998
1054
|
property :type, as: 'type'
|
999
1055
|
property :user_name, as: 'userName'
|
1000
1056
|
end
|
@@ -1146,6 +1202,7 @@ module Google
|
|
1146
1202
|
class DeviceRadioState
|
1147
1203
|
# @private
|
1148
1204
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1205
|
+
property :airplane_mode_state, as: 'airplaneModeState'
|
1149
1206
|
property :wifi_state, as: 'wifiState'
|
1150
1207
|
end
|
1151
1208
|
end
|
@@ -1448,6 +1505,14 @@ module Google
|
|
1448
1505
|
end
|
1449
1506
|
end
|
1450
1507
|
|
1508
|
+
class Location
|
1509
|
+
# @private
|
1510
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1511
|
+
property :latitude, as: 'latitude'
|
1512
|
+
property :longitude, as: 'longitude'
|
1513
|
+
end
|
1514
|
+
end
|
1515
|
+
|
1451
1516
|
class LogBufferSizeCriticalEvent
|
1452
1517
|
# @private
|
1453
1518
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1466,6 +1531,21 @@ module Google
|
|
1466
1531
|
end
|
1467
1532
|
end
|
1468
1533
|
|
1534
|
+
class LostModeLocationEvent
|
1535
|
+
# @private
|
1536
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1537
|
+
property :battery_level, as: 'batteryLevel'
|
1538
|
+
property :location, as: 'location', class: Google::Apis::AndroidmanagementV1::Location, decorator: Google::Apis::AndroidmanagementV1::Location::Representation
|
1539
|
+
|
1540
|
+
end
|
1541
|
+
end
|
1542
|
+
|
1543
|
+
class LostModeOutgoingPhoneCallEvent
|
1544
|
+
# @private
|
1545
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1546
|
+
end
|
1547
|
+
end
|
1548
|
+
|
1469
1549
|
class ManagedConfigurationTemplate
|
1470
1550
|
# @private
|
1471
1551
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1842,7 +1922,6 @@ module Google
|
|
1842
1922
|
# @private
|
1843
1923
|
class Representation < Google::Apis::Core::JsonRepresentation
|
1844
1924
|
property :api_level, as: 'apiLevel'
|
1845
|
-
property :authenticated_user_email, as: 'authenticatedUserEmail'
|
1846
1925
|
property :brand, as: 'brand'
|
1847
1926
|
property :enterprise, as: 'enterprise'
|
1848
1927
|
property :management_mode, as: 'managementMode'
|
@@ -1938,6 +2017,28 @@ module Google
|
|
1938
2017
|
end
|
1939
2018
|
end
|
1940
2019
|
|
2020
|
+
class StartLostModeParams
|
2021
|
+
# @private
|
2022
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2023
|
+
property :lost_email_address, as: 'lostEmailAddress'
|
2024
|
+
property :lost_message, as: 'lostMessage', class: Google::Apis::AndroidmanagementV1::UserFacingMessage, decorator: Google::Apis::AndroidmanagementV1::UserFacingMessage::Representation
|
2025
|
+
|
2026
|
+
property :lost_organization, as: 'lostOrganization', class: Google::Apis::AndroidmanagementV1::UserFacingMessage, decorator: Google::Apis::AndroidmanagementV1::UserFacingMessage::Representation
|
2027
|
+
|
2028
|
+
property :lost_phone_number, as: 'lostPhoneNumber', class: Google::Apis::AndroidmanagementV1::UserFacingMessage, decorator: Google::Apis::AndroidmanagementV1::UserFacingMessage::Representation
|
2029
|
+
|
2030
|
+
property :lost_street_address, as: 'lostStreetAddress', class: Google::Apis::AndroidmanagementV1::UserFacingMessage, decorator: Google::Apis::AndroidmanagementV1::UserFacingMessage::Representation
|
2031
|
+
|
2032
|
+
end
|
2033
|
+
end
|
2034
|
+
|
2035
|
+
class StartLostModeStatus
|
2036
|
+
# @private
|
2037
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2038
|
+
property :status, as: 'status'
|
2039
|
+
end
|
2040
|
+
end
|
2041
|
+
|
1941
2042
|
class Status
|
1942
2043
|
# @private
|
1943
2044
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -1965,6 +2066,26 @@ module Google
|
|
1965
2066
|
end
|
1966
2067
|
end
|
1967
2068
|
|
2069
|
+
class StopLostModeParams
|
2070
|
+
# @private
|
2071
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2072
|
+
end
|
2073
|
+
end
|
2074
|
+
|
2075
|
+
class StopLostModeStatus
|
2076
|
+
# @private
|
2077
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2078
|
+
property :status, as: 'status'
|
2079
|
+
end
|
2080
|
+
end
|
2081
|
+
|
2082
|
+
class StopLostModeUserAttemptEvent
|
2083
|
+
# @private
|
2084
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
2085
|
+
property :status, as: 'status'
|
2086
|
+
end
|
2087
|
+
end
|
2088
|
+
|
1968
2089
|
class SystemUpdate
|
1969
2090
|
# @private
|
1970
2091
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -2058,6 +2179,10 @@ module Google
|
|
2058
2179
|
|
2059
2180
|
property :logging_stopped_event, as: 'loggingStoppedEvent', class: Google::Apis::AndroidmanagementV1::LoggingStoppedEvent, decorator: Google::Apis::AndroidmanagementV1::LoggingStoppedEvent::Representation
|
2060
2181
|
|
2182
|
+
property :lost_mode_location_event, as: 'lostModeLocationEvent', class: Google::Apis::AndroidmanagementV1::LostModeLocationEvent, decorator: Google::Apis::AndroidmanagementV1::LostModeLocationEvent::Representation
|
2183
|
+
|
2184
|
+
property :lost_mode_outgoing_phone_call_event, as: 'lostModeOutgoingPhoneCallEvent', class: Google::Apis::AndroidmanagementV1::LostModeOutgoingPhoneCallEvent, decorator: Google::Apis::AndroidmanagementV1::LostModeOutgoingPhoneCallEvent::Representation
|
2185
|
+
|
2061
2186
|
property :media_mount_event, as: 'mediaMountEvent', class: Google::Apis::AndroidmanagementV1::MediaMountEvent, decorator: Google::Apis::AndroidmanagementV1::MediaMountEvent::Representation
|
2062
2187
|
|
2063
2188
|
property :media_unmount_event, as: 'mediaUnmountEvent', class: Google::Apis::AndroidmanagementV1::MediaUnmountEvent, decorator: Google::Apis::AndroidmanagementV1::MediaUnmountEvent::Representation
|
@@ -2068,6 +2193,8 @@ module Google
|
|
2068
2193
|
|
2069
2194
|
property :remote_lock_event, as: 'remoteLockEvent', class: Google::Apis::AndroidmanagementV1::RemoteLockEvent, decorator: Google::Apis::AndroidmanagementV1::RemoteLockEvent::Representation
|
2070
2195
|
|
2196
|
+
property :stop_lost_mode_user_attempt_event, as: 'stopLostModeUserAttemptEvent', class: Google::Apis::AndroidmanagementV1::StopLostModeUserAttemptEvent, decorator: Google::Apis::AndroidmanagementV1::StopLostModeUserAttemptEvent::Representation
|
2197
|
+
|
2071
2198
|
property :wipe_failure_event, as: 'wipeFailureEvent', class: Google::Apis::AndroidmanagementV1::WipeFailureEvent, decorator: Google::Apis::AndroidmanagementV1::WipeFailureEvent::Representation
|
2072
2199
|
|
2073
2200
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-androidmanagement_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.57.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -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-androidmanagement_v1/CHANGELOG.md
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-androidmanagement_v1/v0.57.0
|
62
62
|
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-androidmanagement_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|