Autogenerated update (2018-05-15)
Update: - androiddeviceprovisioning_v1 - people_v1 - texttospeech_v1beta1
This commit is contained in:
parent
6e3719a4bf
commit
34c8b8d99c
|
@ -5283,6 +5283,7 @@
|
|||
"/androiddeviceprovisioning:v1/Company/name": name
|
||||
"/androiddeviceprovisioning:v1/Company/ownerEmails": owner_emails
|
||||
"/androiddeviceprovisioning:v1/Company/ownerEmails/owner_email": owner_email
|
||||
"/androiddeviceprovisioning:v1/Company/termsStatus": terms_status
|
||||
"/androiddeviceprovisioning:v1/Configuration": configuration
|
||||
"/androiddeviceprovisioning:v1/Configuration/companyName": company_name
|
||||
"/androiddeviceprovisioning:v1/Configuration/configurationId": configuration_id
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://developers.google.com/zero-touch/
|
||||
module AndroiddeviceprovisioningV1
|
||||
VERSION = 'V1'
|
||||
REVISION = '20180413'
|
||||
REVISION = '20180511'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -137,6 +137,13 @@ module Google
|
|||
# @return [Array<String>]
|
||||
attr_accessor :owner_emails
|
||||
|
||||
# Output only. Whether any user from the company has accepted the latest
|
||||
# Terms of Service (ToS). See
|
||||
# TermsStatus.
|
||||
# Corresponds to the JSON property `termsStatus`
|
||||
# @return [String]
|
||||
attr_accessor :terms_status
|
||||
|
||||
def initialize(**args)
|
||||
update!(**args)
|
||||
end
|
||||
|
@ -148,6 +155,7 @@ module Google
|
|||
@company_name = args[:company_name] if args.key?(:company_name)
|
||||
@name = args[:name] if args.key?(:name)
|
||||
@owner_emails = args[:owner_emails] if args.key?(:owner_emails)
|
||||
@terms_status = args[:terms_status] if args.key?(:terms_status)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -284,6 +284,7 @@ module Google
|
|||
property :company_name, as: 'companyName'
|
||||
property :name, as: 'name'
|
||||
collection :owner_emails, as: 'ownerEmails'
|
||||
property :terms_status, as: 'termsStatus'
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
|||
# @see https://developers.google.com/people/
|
||||
module PeopleV1
|
||||
VERSION = 'V1'
|
||||
REVISION = '20180404'
|
||||
REVISION = '20180512'
|
||||
|
||||
# Manage your contacts
|
||||
AUTH_CONTACTS = 'https://www.googleapis.com/auth/contacts'
|
||||
|
|
|
@ -393,6 +393,7 @@ module Google
|
|||
# * skills
|
||||
# * taglines
|
||||
# * urls
|
||||
# * userDefined
|
||||
# @param [String] request_mask_include_field
|
||||
# **Required.** Comma-separated list of person fields to be included in the
|
||||
# response. Each path should start with `person.`: for example,
|
||||
|
@ -462,6 +463,7 @@ module Google
|
|||
# * skills
|
||||
# * taglines
|
||||
# * urls
|
||||
# * userDefined
|
||||
# @param [String] request_mask_include_field
|
||||
# **Required.** Comma-separated list of person fields to be included in the
|
||||
# response. Each path should start with `person.`: for example,
|
||||
|
@ -541,6 +543,7 @@ module Google
|
|||
# * relations
|
||||
# * residences
|
||||
# * urls
|
||||
# * userDefined
|
||||
# @param [String] fields
|
||||
# Selector specifying which fields to include in a partial response.
|
||||
# @param [String] quota_user
|
||||
|
@ -613,6 +616,7 @@ module Google
|
|||
# * skills
|
||||
# * taglines
|
||||
# * urls
|
||||
# * userDefined
|
||||
# @param [String] request_mask_include_field
|
||||
# **Required.** Comma-separated list of person fields to be included in the
|
||||
# response. Each path should start with `person.`: for example,
|
||||
|
|
|
@ -22,10 +22,10 @@ module Google
|
|||
#
|
||||
# Synthesizes natural-sounding speech by applying powerful neural network models.
|
||||
#
|
||||
# @see http://cloud.google.com/text-to-speech/
|
||||
# @see https://cloud.google.com/text-to-speech/
|
||||
module TexttospeechV1beta1
|
||||
VERSION = 'V1beta1'
|
||||
REVISION = '20180425'
|
||||
REVISION = '20180512'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
|
@ -30,7 +30,7 @@ module Google
|
|||
# Texttospeech = Google::Apis::TexttospeechV1beta1 # Alias the module
|
||||
# service = Texttospeech::TexttospeechService.new
|
||||
#
|
||||
# @see http://cloud.google.com/text-to-speech/
|
||||
# @see https://cloud.google.com/text-to-speech/
|
||||
class TexttospeechService < Google::Apis::Core::BaseService
|
||||
# @return [String]
|
||||
# API key. Your API key identifies your project and provides you with API access,
|
||||
|
|
Loading…
Reference in New Issue