google-apis-verifiedaccess_v2 0.5.0 → 0.7.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: f2fae8d89d339a44e3a98febdfc6f25db6b46604eabf0620339798da9e680658
4
- data.tar.gz: ecb457f68a31d82cf951ae1cdb6a8ee2287453923961bb1cb45d89818e7cc25c
3
+ metadata.gz: 515b3706273b29196375a900557beda59942491f2ef2dddff30fa128ea6cbd8d
4
+ data.tar.gz: cb37199f2b7642536ec03c5b89fd210ffa84844e17c70d8c7040f7f03dc5e62a
5
5
  SHA512:
6
- metadata.gz: 2c651e21efeb644d8634c6f24e9252d82721923a1380be513d1599b7f817f99eef9c807129128dfd1559c5f1e48dc6d2b67e14ae75486f13ccbcb5414f68f848
7
- data.tar.gz: 808d302239ff4e0bc41eea52711f40174029523a237c3cca00b45864711f7e9d1b3e6096d7125ecf27c5f2090990d902311baeefded43ab49c2aad6291cbd553
6
+ metadata.gz: ec0b4260c51fdffa69260dc48426875f9e192a0ae7929f302453d420f0d0e7497bd9f9b64f16cb30c805887a4b5674647f02adbeba3801747b9469df2cf34a55
7
+ data.tar.gz: b03cb8d918997a3384f9da00993e5adeab0c32efa9ef223fc14c39e7ca1a081d1fd7c53d6536b0cdb59bbc9d00d770d36fd8478708710ca01fd1359ac7eea555
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Release history for google-apis-verifiedaccess_v2
2
2
 
3
+ ### v0.7.0 (2022-10-28)
4
+
5
+ * Regenerated using generator version 0.11.0
6
+
7
+ ### v0.6.0 (2022-10-15)
8
+
9
+ * Regenerated from discovery document revision 20221004
10
+
3
11
  ### v0.5.0 (2022-09-22)
4
12
 
5
13
  * 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.7.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.10.0"
22
+ GENERATOR_VERSION = "0.11.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.7.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-31 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
@@ -16,7 +16,7 @@ dependencies:
16
16
  requirements:
17
17
  - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: 0.9.0
19
+ version: 0.9.1
20
20
  - - "<"
21
21
  - !ruby/object:Gem::Version
22
22
  version: 2.a
@@ -26,7 +26,7 @@ dependencies:
26
26
  requirements:
27
27
  - - ">="
28
28
  - !ruby/object:Gem::Version
29
- version: 0.9.0
29
+ version: 0.9.1
30
30
  - - "<"
31
31
  - !ruby/object:Gem::Version
32
32
  version: 2.a
@@ -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.7.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: []