google-apis-chromemanagement_v1 0.44.0 → 0.45.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5d77cf9b7c8a10133315105c3bc4b81bcf2d1ba17048264d8b7097a716b833e8
4
- data.tar.gz: e600c0f3ebb939411b80b3beba13287a6f14d8cbe3a312fb19f115e16469e487
3
+ metadata.gz: 6cb756b1a2bdfe10f9210f92254f4ab43da8d2fbdb01b158ab49a52f0d051e2b
4
+ data.tar.gz: ec74085e1f37e8e007663b93964d3d198ce6d9b8e6c1917cf853a61bebabe619
5
5
  SHA512:
6
- metadata.gz: 5c781c3afb854c5c381965a146b74590766fe17aae7b20fe10ec5f37ad0a147c60f68b7d9c87e77560b7f670a52c8a130105662d552d54dd980ca3db8b35a08b
7
- data.tar.gz: 77adca8ee72ed4d42061ace70d7ee4be0da37a917645bac2130ba77a3255e6f6b7a62a2f29b6c79434d0c9fc51c29b22604b4c019c3a9ae93e4e05113e4d660c
6
+ metadata.gz: d48c2d467c9327351f00ee59a857738b0a3c58487768dcd7d26d887cd14ff277fe631c83a7871c5f8ae52071b58b2ee5af69058fb591afd945a443c2060877ca
7
+ data.tar.gz: 8105fa5878910d582719bc070f11224ce4aca515b429814f10ece930a98b34818aacd113dec99099d7ba31060aae900342a87c40e5d0b7161e22e91740905d5a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-chromemanagement_v1
2
2
 
3
+ ### v0.45.0 (2023-09-17)
4
+
5
+ * Regenerated from discovery document revision 20230913
6
+
3
7
  ### v0.44.0 (2023-09-10)
4
8
 
5
9
  * Regenerated from discovery document revision 20230905
@@ -2907,6 +2907,13 @@ module Google
2907
2907
  # @return [String]
2908
2908
  attr_accessor :name
2909
2909
 
2910
+ # `TelemetryNetworkConnectionStateChangeEvent` is triggered on network
2911
+ # connection state changes. * Granular permission needed:
2912
+ # TELEMETRY_API_NETWORK_REPORT
2913
+ # Corresponds to the JSON property `networkStateChangeEvent`
2914
+ # @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent]
2915
+ attr_accessor :network_state_change_event
2916
+
2910
2917
  # Timestamp that represents when the event was reported.
2911
2918
  # Corresponds to the JSON property `reportTime`
2912
2919
  # @return [String]
@@ -2924,6 +2931,19 @@ module Google
2924
2931
  # @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUserInfo]
2925
2932
  attr_accessor :user
2926
2933
 
2934
+ # `TelemetryNetworkConnectionStateChangeEvent` is triggered on network
2935
+ # connection state changes. * Granular permission needed:
2936
+ # TELEMETRY_API_NETWORK_REPORT
2937
+ # Corresponds to the JSON property `vpnConnectionStateChangeEvent`
2938
+ # @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent]
2939
+ attr_accessor :vpn_connection_state_change_event
2940
+
2941
+ # `TelemetryNetworkSignalStrengthEvent` is triggered on WiFi signal strength
2942
+ # events. * Granular permission needed: TELEMETRY_API_NETWORK_REPORT
2943
+ # Corresponds to the JSON property `wifiSignalStrengthEvent`
2944
+ # @return [Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryNetworkSignalStrengthEvent]
2945
+ attr_accessor :wifi_signal_strength_event
2946
+
2927
2947
  def initialize(**args)
2928
2948
  update!(**args)
2929
2949
  end
@@ -2935,9 +2955,12 @@ module Google
2935
2955
  @event_type = args[:event_type] if args.key?(:event_type)
2936
2956
  @https_latency_change_event = args[:https_latency_change_event] if args.key?(:https_latency_change_event)
2937
2957
  @name = args[:name] if args.key?(:name)
2958
+ @network_state_change_event = args[:network_state_change_event] if args.key?(:network_state_change_event)
2938
2959
  @report_time = args[:report_time] if args.key?(:report_time)
2939
2960
  @usb_peripherals_event = args[:usb_peripherals_event] if args.key?(:usb_peripherals_event)
2940
2961
  @user = args[:user] if args.key?(:user)
2962
+ @vpn_connection_state_change_event = args[:vpn_connection_state_change_event] if args.key?(:vpn_connection_state_change_event)
2963
+ @wifi_signal_strength_event = args[:wifi_signal_strength_event] if args.key?(:wifi_signal_strength_event)
2941
2964
  end
2942
2965
  end
2943
2966
 
@@ -2989,6 +3012,59 @@ module Google
2989
3012
  end
2990
3013
  end
2991
3014
 
3015
+ # `TelemetryNetworkConnectionStateChangeEvent` is triggered on network
3016
+ # connection state changes. * Granular permission needed:
3017
+ # TELEMETRY_API_NETWORK_REPORT
3018
+ class GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent
3019
+ include Google::Apis::Core::Hashable
3020
+
3021
+ # Current connection state of the network.
3022
+ # Corresponds to the JSON property `connectionState`
3023
+ # @return [String]
3024
+ attr_accessor :connection_state
3025
+
3026
+ # Unique identifier of the network.
3027
+ # Corresponds to the JSON property `guid`
3028
+ # @return [String]
3029
+ attr_accessor :guid
3030
+
3031
+ def initialize(**args)
3032
+ update!(**args)
3033
+ end
3034
+
3035
+ # Update properties of this object
3036
+ def update!(**args)
3037
+ @connection_state = args[:connection_state] if args.key?(:connection_state)
3038
+ @guid = args[:guid] if args.key?(:guid)
3039
+ end
3040
+ end
3041
+
3042
+ # `TelemetryNetworkSignalStrengthEvent` is triggered on WiFi signal strength
3043
+ # events. * Granular permission needed: TELEMETRY_API_NETWORK_REPORT
3044
+ class GoogleChromeManagementV1TelemetryNetworkSignalStrengthEvent
3045
+ include Google::Apis::Core::Hashable
3046
+
3047
+ # Unique identifier of the network.
3048
+ # Corresponds to the JSON property `guid`
3049
+ # @return [String]
3050
+ attr_accessor :guid
3051
+
3052
+ # Signal strength RSSI value.
3053
+ # Corresponds to the JSON property `signalStrengthDbm`
3054
+ # @return [Fixnum]
3055
+ attr_accessor :signal_strength_dbm
3056
+
3057
+ def initialize(**args)
3058
+ update!(**args)
3059
+ end
3060
+
3061
+ # Update properties of this object
3062
+ def update!(**args)
3063
+ @guid = args[:guid] if args.key?(:guid)
3064
+ @signal_strength_dbm = args[:signal_strength_dbm] if args.key?(:signal_strength_dbm)
3065
+ end
3066
+ end
3067
+
2992
3068
  # Configuration to receive notifications of telemetry data.
2993
3069
  class GoogleChromeManagementV1TelemetryNotificationConfig
2994
3070
  include Google::Apis::Core::Hashable
@@ -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.44.0"
19
+ GEM_VERSION = "0.45.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 = "20230905"
25
+ REVISION = "20230913"
26
26
  end
27
27
  end
28
28
  end
@@ -406,6 +406,18 @@ module Google
406
406
  include Google::Apis::Core::JsonObjectSupport
407
407
  end
408
408
 
409
+ class GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent
410
+ class Representation < Google::Apis::Core::JsonRepresentation; end
411
+
412
+ include Google::Apis::Core::JsonObjectSupport
413
+ end
414
+
415
+ class GoogleChromeManagementV1TelemetryNetworkSignalStrengthEvent
416
+ class Representation < Google::Apis::Core::JsonRepresentation; end
417
+
418
+ include Google::Apis::Core::JsonObjectSupport
419
+ end
420
+
409
421
  class GoogleChromeManagementV1TelemetryNotificationConfig
410
422
  class Representation < Google::Apis::Core::JsonRepresentation; end
411
423
 
@@ -1218,11 +1230,17 @@ module Google
1218
1230
  property :https_latency_change_event, as: 'httpsLatencyChangeEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryHttpsLatencyChangeEvent::Representation
1219
1231
 
1220
1232
  property :name, as: 'name'
1233
+ property :network_state_change_event, as: 'networkStateChangeEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent::Representation
1234
+
1221
1235
  property :report_time, as: 'reportTime'
1222
1236
  property :usb_peripherals_event, as: 'usbPeripheralsEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUsbPeripheralsEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUsbPeripheralsEvent::Representation
1223
1237
 
1224
1238
  property :user, as: 'user', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUserInfo, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryUserInfo::Representation
1225
1239
 
1240
+ property :vpn_connection_state_change_event, as: 'vpnConnectionStateChangeEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent::Representation
1241
+
1242
+ property :wifi_signal_strength_event, as: 'wifiSignalStrengthEvent', class: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryNetworkSignalStrengthEvent, decorator: Google::Apis::ChromemanagementV1::GoogleChromeManagementV1TelemetryNetworkSignalStrengthEvent::Representation
1243
+
1226
1244
  end
1227
1245
  end
1228
1246
 
@@ -1242,6 +1260,22 @@ module Google
1242
1260
  end
1243
1261
  end
1244
1262
 
1263
+ class GoogleChromeManagementV1TelemetryNetworkConnectionStateChangeEvent
1264
+ # @private
1265
+ class Representation < Google::Apis::Core::JsonRepresentation
1266
+ property :connection_state, as: 'connectionState'
1267
+ property :guid, as: 'guid'
1268
+ end
1269
+ end
1270
+
1271
+ class GoogleChromeManagementV1TelemetryNetworkSignalStrengthEvent
1272
+ # @private
1273
+ class Representation < Google::Apis::Core::JsonRepresentation
1274
+ property :guid, as: 'guid'
1275
+ property :signal_strength_dbm, as: 'signalStrengthDbm'
1276
+ end
1277
+ end
1278
+
1245
1279
  class GoogleChromeManagementV1TelemetryNotificationConfig
1246
1280
  # @private
1247
1281
  class Representation < Google::Apis::Core::JsonRepresentation
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-chromemanagement_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.44.0
4
+ version: 0.45.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-09-10 00:00:00.000000000 Z
11
+ date: 2023-09-17 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-chromemanagement_v1/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-chromemanagement_v1/v0.44.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-chromemanagement_v1/v0.45.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-chromemanagement_v1
63
63
  post_install_message:
64
64
  rdoc_options: []