google-apis-androiddeviceprovisioning_v1 0.3.0 → 0.4.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: af3902dea7a251072ed8fdafd708255d5f6ec7ef802c3643a2606922032554ca
4
- data.tar.gz: 26b170dc59d796c2f6e2e10e11095d07ed6fcc1f8328c307ade00e49fe1e59d8
3
+ metadata.gz: b6d494600858acfe5500f0cdd5d1115cd0555d6024a301dc09c3970a356ce75b
4
+ data.tar.gz: 209ac90b31a6108d5a1e6b418bd9c76e0d243ea81ed16098564b24fe224e0b53
5
5
  SHA512:
6
- metadata.gz: fa2585d6f700a2a35c8f0df8657db379bc2299af4c20e5cebccebe147759272554b76c2bdf129ab6c3aa6975af66a4a7c6548e2a4a47b0376fec2169a7bbc348
7
- data.tar.gz: 7efaa06da5a352862334da32f719fa0facfddf6c23b21481371c6b7957b4cf3c60904fdad9ba0cdf1e7988b44039859d7fe2ed99719f9db3d2434b0aeb7ce720
6
+ metadata.gz: e92ca48fee4ae5133b908c184c88e447afd56c02cc89727a70a2b151f41f6f53cd82c5abb4f16f4924da11295937dc30d6bfed0ae3227682485c864dc2df23ac
7
+ data.tar.gz: 3d48c08f7ae31943e7062394018e9981e67ec2bd6499c963db61ad74274d59702aa53f377755c640da7072c8fdde4559fe90494c9af4feafd409660057ec549a
data/CHANGELOG.md CHANGED
@@ -1,5 +1,10 @@
1
1
  # Release history for google-apis-androiddeviceprovisioning_v1
2
2
 
3
+ ### v0.4.0 (2021-06-26)
4
+
5
+ * Regenerated from discovery document revision 20210624
6
+ * Regenerated using generator version 0.3.0
7
+
3
8
  ### v0.3.0 (2021-05-19)
4
9
 
5
10
  * Regenerated using generator version 0.2.0
@@ -130,6 +130,21 @@ module Google
130
130
  # @return [String]
131
131
  attr_accessor :company_name
132
132
 
133
+ # Input only. The preferred locale of the customer represented as a BCP47
134
+ # language code. This field is validated on input and requests containing
135
+ # unsupported language codes will be rejected. Supported language codes: Arabic (
136
+ # ar) Chinese (Hong Kong) (zh-HK) Chinese (Simplified) (zh-CN) Chinese (
137
+ # Traditional) (zh-TW) Czech (cs) Danish (da) Dutch (nl) English (UK) (en-GB)
138
+ # English (US) (en-US) Filipino (fil) Finnish (fi) French (fr) German (de)
139
+ # Hebrew (iw) Hindi (hi) Hungarian (hu) Indonesian (id) Italian (it) Japanese (
140
+ # ja) Korean (ko) Norwegian (Bokmal) (no) Polish (pl) Portuguese (Brazil) (pt-BR)
141
+ # Portuguese (Portugal) (pt-PT) Russian (ru) Spanish (es) Spanish (Latin
142
+ # America) (es-419) Swedish (sv) Thai (th) Turkish (tr) Ukrainian (uk)
143
+ # Vietnamese (vi)
144
+ # Corresponds to the JSON property `languageCode`
145
+ # @return [String]
146
+ attr_accessor :language_code
147
+
133
148
  # Output only. The API resource name of the company. The resource name is one of
134
149
  # the following formats: * `partners/[PARTNER_ID]/customers/[CUSTOMER_ID]` * `
135
150
  # partners/[PARTNER_ID]/vendors/[VENDOR_ID]` * `partners/[PARTNER_ID]/vendors/[
@@ -139,13 +154,22 @@ module Google
139
154
  attr_accessor :name
140
155
 
141
156
  # Required. Input only. Email address of customer's users in the owner role. At
142
- # least one `owner_email` is required. Each email address must be associated
143
- # with a Google Account. Owners share the same access as admins but can also add,
144
- # delete, and edit your organization's portal users.
157
+ # least one `owner_email` is required. Owners share the same access as admins
158
+ # but can also add, delete, and edit your organization's portal users.
145
159
  # Corresponds to the JSON property `ownerEmails`
146
160
  # @return [Array<String>]
147
161
  attr_accessor :owner_emails
148
162
 
163
+ # Input only. If set to true, welcome email will not be sent to the customer. It
164
+ # is recommended to skip the welcome email if devices will be claimed with
165
+ # additional DEVICE_PROTECTION service, as the customer will receive separate
166
+ # emails at device claim time. This field is ignored if this is not a Zero-touch
167
+ # customer.
168
+ # Corresponds to the JSON property `skipWelcomeEmail`
169
+ # @return [Boolean]
170
+ attr_accessor :skip_welcome_email
171
+ alias_method :skip_welcome_email?, :skip_welcome_email
172
+
149
173
  # Output only. Whether any user from the company has accepted the latest Terms
150
174
  # of Service (ToS). See TermsStatus.
151
175
  # Corresponds to the JSON property `termsStatus`
@@ -161,8 +185,10 @@ module Google
161
185
  @admin_emails = args[:admin_emails] if args.key?(:admin_emails)
162
186
  @company_id = args[:company_id] if args.key?(:company_id)
163
187
  @company_name = args[:company_name] if args.key?(:company_name)
188
+ @language_code = args[:language_code] if args.key?(:language_code)
164
189
  @name = args[:name] if args.key?(:name)
165
190
  @owner_emails = args[:owner_emails] if args.key?(:owner_emails)
191
+ @skip_welcome_email = args[:skip_welcome_email] if args.key?(:skip_welcome_email)
166
192
  @terms_status = args[:terms_status] if args.key?(:terms_status)
167
193
  end
168
194
  end
@@ -16,13 +16,13 @@ module Google
16
16
  module Apis
17
17
  module AndroiddeviceprovisioningV1
18
18
  # Version of the google-apis-androiddeviceprovisioning_v1 gem
19
- GEM_VERSION = "0.3.0"
19
+ GEM_VERSION = "0.4.0"
20
20
 
21
21
  # Version of the code generator used to generate this client
22
- GENERATOR_VERSION = "0.2.0"
22
+ GENERATOR_VERSION = "0.3.0"
23
23
 
24
24
  # Revision of the discovery document this client was generated from
25
- REVISION = "20200801"
25
+ REVISION = "20210624"
26
26
  end
27
27
  end
28
28
  end
@@ -296,8 +296,10 @@ module Google
296
296
  collection :admin_emails, as: 'adminEmails'
297
297
  property :company_id, :numeric_string => true, as: 'companyId'
298
298
  property :company_name, as: 'companyName'
299
+ property :language_code, as: 'languageCode'
299
300
  property :name, as: 'name'
300
301
  collection :owner_emails, as: 'ownerEmails'
302
+ property :skip_welcome_email, as: 'skipWelcomeEmail'
301
303
  property :terms_status, as: 'termsStatus'
302
304
  end
303
305
  end
metadata CHANGED
@@ -1,29 +1,35 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: google-apis-androiddeviceprovisioning_v1
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.0
4
+ version: 0.4.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: 2021-05-24 00:00:00.000000000 Z
11
+ date: 2021-06-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: google-apis-core
15
15
  requirement: !ruby/object:Gem::Requirement
16
16
  requirements:
17
- - - "~>"
17
+ - - ">="
18
18
  - !ruby/object:Gem::Version
19
- version: '0.1'
19
+ version: '0.3'
20
+ - - "<"
21
+ - !ruby/object:Gem::Version
22
+ version: 2.a
20
23
  type: :runtime
21
24
  prerelease: false
22
25
  version_requirements: !ruby/object:Gem::Requirement
23
26
  requirements:
24
- - - "~>"
27
+ - - ">="
28
+ - !ruby/object:Gem::Version
29
+ version: '0.3'
30
+ - - "<"
25
31
  - !ruby/object:Gem::Version
26
- version: '0.1'
32
+ version: 2.a
27
33
  description: This is the simple REST client for Android Device Provisioning Partner
28
34
  API V1. Simple REST clients are Ruby client libraries that provide access to Google
29
35
  services via their HTTP REST API endpoints. These libraries are generated and updated
@@ -52,7 +58,7 @@ licenses:
52
58
  metadata:
53
59
  bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
54
60
  changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-androiddeviceprovisioning_v1/CHANGELOG.md
55
- documentation_uri: https://googleapis.dev/ruby/google-apis-androiddeviceprovisioning_v1/v0.3.0
61
+ documentation_uri: https://googleapis.dev/ruby/google-apis-androiddeviceprovisioning_v1/v0.4.0
56
62
  source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/master/generated/google-apis-androiddeviceprovisioning_v1
57
63
  post_install_message:
58
64
  rdoc_options: []