google-apis-verifiedaccess_v2 0.5.0 → 0.6.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: f2fae8d89d339a44e3a98febdfc6f25db6b46604eabf0620339798da9e680658
4
- data.tar.gz: ecb457f68a31d82cf951ae1cdb6a8ee2287453923961bb1cb45d89818e7cc25c
3
+ metadata.gz: 6e64840b6cd2d0fbf2f1120a1946bd619a05c24be25da3d5a8339d65bacf8e17
4
+ data.tar.gz: a0cd2ea0783f1b42dafc82e8bfa6ab7cb9154b308b981a42cd2b0a070c839b46
5
5
  SHA512:
6
- metadata.gz: 2c651e21efeb644d8634c6f24e9252d82721923a1380be513d1599b7f817f99eef9c807129128dfd1559c5f1e48dc6d2b67e14ae75486f13ccbcb5414f68f848
7
- data.tar.gz: 808d302239ff4e0bc41eea52711f40174029523a237c3cca00b45864711f7e9d1b3e6096d7125ecf27c5f2090990d902311baeefded43ab49c2aad6291cbd553
6
+ metadata.gz: 7d084b07a10ae2b7f222f10ede791936fdf0e130dd67a586922fc216eb4bb795812981d3f72ba65c8840c3e890d086f68b9fb3030b9269a5ff09d1089b96d4fc
7
+ data.tar.gz: 39ce7ba02c01d4fdca9b318a10cb5401592872fed8116b2e7d9f892f09bae8a6d6413af91119ab320fea35087dd5490f8c2b93e6d3fc6df39b43707054ad0ac5
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release history for google-apis-verifiedaccess_v2
2
2
 
3
+ ### v0.6.0 (2022-10-15)
4
+
5
+ * Regenerated from discovery document revision 20221004
6
+
3
7
  ### v0.5.0 (2022-09-22)
4
8
 
5
9
  * Regenerated using generator version 0.10.0
@@ -22,7 +22,7 @@ module Google
22
22
  module Apis
23
23
  module VerifiedaccessV2
24
24
 
25
- # Result message for VerifiedAccess.CreateChallenge.
25
+ # Result message for VerifiedAccess.GenerateChallenge.
26
26
  class Challenge
27
27
  include Google::Apis::Core::Hashable
28
28
 
@@ -101,6 +101,13 @@ module Google
101
101
  class VerifyChallengeResponseResult
102
102
  include Google::Apis::Core::Hashable
103
103
 
104
+ # Unique customer id that this device belongs to, as defined by the Google Admin
105
+ # SDK at https://developers.google.com/admin-sdk/directory/v1/guides/manage-
106
+ # customers
107
+ # Corresponds to the JSON property `customerId`
108
+ # @return [String]
109
+ attr_accessor :customer_id
110
+
104
111
  # Device permanent id is returned in this field (for the machine response only).
105
112
  # Corresponds to the JSON property `devicePermanentId`
106
113
  # @return [String]
@@ -124,16 +131,24 @@ module Google
124
131
  # @return [String]
125
132
  attr_accessor :signed_public_key_and_challenge
126
133
 
134
+ # Virtual device id of the device. The definition of virtual device id is
135
+ # platform-specific.
136
+ # Corresponds to the JSON property `virtualDeviceId`
137
+ # @return [String]
138
+ attr_accessor :virtual_device_id
139
+
127
140
  def initialize(**args)
128
141
  update!(**args)
129
142
  end
130
143
 
131
144
  # Update properties of this object
132
145
  def update!(**args)
146
+ @customer_id = args[:customer_id] if args.key?(:customer_id)
133
147
  @device_permanent_id = args[:device_permanent_id] if args.key?(:device_permanent_id)
134
148
  @device_signal = args[:device_signal] if args.key?(:device_signal)
135
149
  @key_trust_level = args[:key_trust_level] if args.key?(:key_trust_level)
136
150
  @signed_public_key_and_challenge = args[:signed_public_key_and_challenge] if args.key?(:signed_public_key_and_challenge)
151
+ @virtual_device_id = args[:virtual_device_id] if args.key?(:virtual_device_id)
137
152
  end
138
153
  end
139
154
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module VerifiedaccessV2
18
18
  # Version of the google-apis-verifiedaccess_v2 gem
19
- GEM_VERSION = "0.5.0"
19
+ GEM_VERSION = "0.6.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
22
  GENERATOR_VERSION = "0.10.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20220519"
25
+ REVISION = "20221004"
26
26
  end
27
27
  end
28
28
  end
@@ -71,10 +71,12 @@ module Google
71
71
  class VerifyChallengeResponseResult
72
72
  # @private
73
73
  class Representation < Google::Apis::Core::JsonRepresentation
74
+ property :customer_id, as: 'customerId'
74
75
  property :device_permanent_id, as: 'devicePermanentId'
75
76
  property :device_signal, as: 'deviceSignal'
76
77
  property :key_trust_level, as: 'keyTrustLevel'
77
78
  property :signed_public_key_and_challenge, as: 'signedPublicKeyAndChallenge'
79
+ property :virtual_device_id, as: 'virtualDeviceId'
78
80
  end
79
81
  end
80
82
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-verifiedaccess_v2
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.5.0
4
+ version: 0.6.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: 2022-09-26 00:00:00.000000000 Z
11
+ date: 2022-10-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-verifiedaccess_v2/CHANGELOG.md
61
- documentation_uri: https://googleapis.dev/ruby/google-apis-verifiedaccess_v2/v0.5.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-verifiedaccess_v2/v0.6.0
62
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-verifiedaccess_v2
63
63
  post_install_message:
64
64
  rdoc_options: []