Autogenerated update (2018-02-07)

Update:
- androiddeviceprovisioning_v1
- androidenterprise_v1
- cloudiot_v1
- cloudkms_v1
- webmasters_v3
This commit is contained in:
Google APIs 2018-02-07 00:35:36 +00:00
parent 2edd4280c2
commit 879fd24d6c
13 changed files with 32 additions and 13 deletions

View File

@ -5579,6 +5579,7 @@
"/androidenterprise:v1/ManagedConfigurationsForUserListResponse/managedConfigurationForUser/managed_configuration_for_user": managed_configuration_for_user "/androidenterprise:v1/ManagedConfigurationsForUserListResponse/managedConfigurationForUser/managed_configuration_for_user": managed_configuration_for_user
"/androidenterprise:v1/ManagedConfigurationsSettings": managed_configurations_settings "/androidenterprise:v1/ManagedConfigurationsSettings": managed_configurations_settings
"/androidenterprise:v1/ManagedConfigurationsSettings/kind": kind "/androidenterprise:v1/ManagedConfigurationsSettings/kind": kind
"/androidenterprise:v1/ManagedConfigurationsSettings/lastUpdatedTimestampMillis": last_updated_timestamp_millis
"/androidenterprise:v1/ManagedConfigurationsSettings/managedProperty": managed_property "/androidenterprise:v1/ManagedConfigurationsSettings/managedProperty": managed_property
"/androidenterprise:v1/ManagedConfigurationsSettings/managedProperty/managed_property": managed_property "/androidenterprise:v1/ManagedConfigurationsSettings/managedProperty/managed_property": managed_property
"/androidenterprise:v1/ManagedConfigurationsSettings/mcmId": mcm_id "/androidenterprise:v1/ManagedConfigurationsSettings/mcmId": mcm_id
@ -13361,6 +13362,7 @@
"/cloudiot:v1/Empty": empty "/cloudiot:v1/Empty": empty
"/cloudiot:v1/EventNotificationConfig": event_notification_config "/cloudiot:v1/EventNotificationConfig": event_notification_config
"/cloudiot:v1/EventNotificationConfig/pubsubTopicName": pubsub_topic_name "/cloudiot:v1/EventNotificationConfig/pubsubTopicName": pubsub_topic_name
"/cloudiot:v1/EventNotificationConfig/subfolderMatches": subfolder_matches
"/cloudiot:v1/Expr": expr "/cloudiot:v1/Expr": expr
"/cloudiot:v1/Expr/description": description "/cloudiot:v1/Expr/description": description
"/cloudiot:v1/Expr/expression": expression "/cloudiot:v1/Expr/expression": expression

View File

@ -20,13 +20,13 @@ module Google
module Apis module Apis
# Android Device Provisioning Partner API # Android Device Provisioning Partner API
# #
# Automates reseller integration into zero-touch enrollment by assigning devices # Automates Android zero-touch enrollment for device resellers, customers, and
# to customers and creating device reports. # EMMs.
# #
# @see https://developers.google.com/zero-touch/ # @see https://developers.google.com/zero-touch/
module AndroiddeviceprovisioningV1 module AndroiddeviceprovisioningV1
VERSION = 'V1' VERSION = 'V1'
REVISION = '20180120' REVISION = '20180203'
end end
end end
end end

View File

@ -22,8 +22,8 @@ module Google
module AndroiddeviceprovisioningV1 module AndroiddeviceprovisioningV1
# Android Device Provisioning Partner API # Android Device Provisioning Partner API
# #
# Automates reseller integration into zero-touch enrollment by assigning devices # Automates Android zero-touch enrollment for device resellers, customers, and
# to customers and creating device reports. # EMMs.
# #
# @example # @example
# require 'google/apis/androiddeviceprovisioning_v1' # require 'google/apis/androiddeviceprovisioning_v1'
@ -51,7 +51,7 @@ module Google
# Lists the user's customer accounts. # Lists the user's customer accounts.
# @param [Fixnum] page_size # @param [Fixnum] page_size
# The maximum number of customers to show in a page of results. # The maximum number of customers to show in a page of results.
# A number between 1 and 1000 (inclusive). # A number between 1 and 100 (inclusive).
# @param [String] page_token # @param [String] page_token
# A token specifying which result page to return. # A token specifying which result page to return.
# @param [String] fields # @param [String] fields

View File

@ -25,7 +25,7 @@ module Google
# @see https://developers.google.com/android/work/play/emm-api # @see https://developers.google.com/android/work/play/emm-api
module AndroidenterpriseV1 module AndroidenterpriseV1
VERSION = 'V1' VERSION = 'V1'
REVISION = '20180111' REVISION = '20180131'
# Manage corporate Android devices # Manage corporate Android devices
AUTH_ANDROIDENTERPRISE = 'https://www.googleapis.com/auth/androidenterprise' AUTH_ANDROIDENTERPRISE = 'https://www.googleapis.com/auth/androidenterprise'

View File

@ -1175,6 +1175,12 @@ module Google
# @return [String] # @return [String]
attr_accessor :kind attr_accessor :kind
# The last updated time of the managed configuration settings in milliseconds
# since 1970-01-01T00:00:00Z.
# Corresponds to the JSON property `lastUpdatedTimestampMillis`
# @return [Fixnum]
attr_accessor :last_updated_timestamp_millis
# The set of managed properties for this configuration. # The set of managed properties for this configuration.
# Corresponds to the JSON property `managedProperty` # Corresponds to the JSON property `managedProperty`
# @return [Array<Google::Apis::AndroidenterpriseV1::ManagedProperty>] # @return [Array<Google::Apis::AndroidenterpriseV1::ManagedProperty>]
@ -1197,6 +1203,7 @@ module Google
# Update properties of this object # Update properties of this object
def update!(**args) def update!(**args)
@kind = args[:kind] if args.key?(:kind) @kind = args[:kind] if args.key?(:kind)
@last_updated_timestamp_millis = args[:last_updated_timestamp_millis] if args.key?(:last_updated_timestamp_millis)
@managed_property = args[:managed_property] if args.key?(:managed_property) @managed_property = args[:managed_property] if args.key?(:managed_property)
@mcm_id = args[:mcm_id] if args.key?(:mcm_id) @mcm_id = args[:mcm_id] if args.key?(:mcm_id)
@name = args[:name] if args.key?(:name) @name = args[:name] if args.key?(:name)

View File

@ -739,6 +739,7 @@ module Google
# @private # @private
class Representation < Google::Apis::Core::JsonRepresentation class Representation < Google::Apis::Core::JsonRepresentation
property :kind, as: 'kind' property :kind, as: 'kind'
property :last_updated_timestamp_millis, :numeric_string => true, as: 'lastUpdatedTimestampMillis'
collection :managed_property, as: 'managedProperty', class: Google::Apis::AndroidenterpriseV1::ManagedProperty, decorator: Google::Apis::AndroidenterpriseV1::ManagedProperty::Representation collection :managed_property, as: 'managedProperty', class: Google::Apis::AndroidenterpriseV1::ManagedProperty, decorator: Google::Apis::AndroidenterpriseV1::ManagedProperty::Representation
property :mcm_id, as: 'mcmId' property :mcm_id, as: 'mcmId'

View File

@ -26,7 +26,7 @@ module Google
# @see https://cloud.google.com/iot # @see https://cloud.google.com/iot
module CloudiotV1 module CloudiotV1
VERSION = 'V1' VERSION = 'V1'
REVISION = '20180118' REVISION = '20180131'
# View and manage your data across Google Cloud Platform services # View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -450,6 +450,11 @@ module Google
# @return [String] # @return [String]
attr_accessor :pubsub_topic_name attr_accessor :pubsub_topic_name
#
# Corresponds to the JSON property `subfolderMatches`
# @return [String]
attr_accessor :subfolder_matches
def initialize(**args) def initialize(**args)
update!(**args) update!(**args)
end end
@ -457,6 +462,7 @@ module Google
# Update properties of this object # Update properties of this object
def update!(**args) def update!(**args)
@pubsub_topic_name = args[:pubsub_topic_name] if args.key?(:pubsub_topic_name) @pubsub_topic_name = args[:pubsub_topic_name] if args.key?(:pubsub_topic_name)
@subfolder_matches = args[:subfolder_matches] if args.key?(:subfolder_matches)
end end
end end

View File

@ -274,6 +274,7 @@ module Google
# @private # @private
class Representation < Google::Apis::Core::JsonRepresentation class Representation < Google::Apis::Core::JsonRepresentation
property :pubsub_topic_name, as: 'pubsubTopicName' property :pubsub_topic_name, as: 'pubsubTopicName'
property :subfolder_matches, as: 'subfolderMatches'
end end
end end

View File

@ -26,7 +26,7 @@ module Google
# @see https://cloud.google.com/kms/ # @see https://cloud.google.com/kms/
module CloudkmsV1 module CloudkmsV1
VERSION = 'V1' VERSION = 'V1'
REVISION = '20180117' REVISION = '20180205'
# View and manage your data across Google Cloud Platform services # View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform' AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -29,7 +29,7 @@ module Google
# If there are AuditConfigs for both `allServices` and a specific service, # If there are AuditConfigs for both `allServices` and a specific service,
# the union of the two AuditConfigs is used for that service: the log_types # the union of the two AuditConfigs is used for that service: the log_types
# specified in each AuditConfig are enabled, and the exempted_members in each # specified in each AuditConfig are enabled, and the exempted_members in each
# AuditConfig are exempted. # AuditLogConfig are exempted.
# Example Policy with multiple AuditConfigs: # Example Policy with multiple AuditConfigs:
# ` # `
# "audit_configs": [ # "audit_configs": [

View File

@ -25,7 +25,7 @@ module Google
# @see https://developers.google.com/webmaster-tools/ # @see https://developers.google.com/webmaster-tools/
module WebmastersV3 module WebmastersV3
VERSION = 'V3' VERSION = 'V3'
REVISION = '20170528' REVISION = '20180125'
# View and manage Search Console data for your verified sites # View and manage Search Console data for your verified sites
AUTH_WEBMASTERS = 'https://www.googleapis.com/auth/webmasters' AUTH_WEBMASTERS = 'https://www.googleapis.com/auth/webmasters'

View File

@ -283,7 +283,8 @@ module Google
# Removes a site from the set of the user's Search Console sites. # Removes a site from the set of the user's Search Console sites.
# @param [String] site_url # @param [String] site_url
# The URI of the property as defined in Search Console. Examples: http://www. # The URI of the property as defined in Search Console. Examples: http://www.
# example.com/ or android-app://com.example/ # example.com/ or android-app://com.example/ Note: for property-sets, use the
# URI that starts with sc-set: which is used in Search Console URLs.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user
@ -317,7 +318,8 @@ module Google
# Retrieves information about specific site. # Retrieves information about specific site.
# @param [String] site_url # @param [String] site_url
# The URI of the property as defined in Search Console. Examples: http://www. # The URI of the property as defined in Search Console. Examples: http://www.
# example.com/ or android-app://com.example/ # example.com/ or android-app://com.example/ Note: for property-sets, use the
# URI that starts with sc-set: which is used in Search Console URLs.
# @param [String] fields # @param [String] fields
# Selector specifying which fields to include in a partial response. # Selector specifying which fields to include in a partial response.
# @param [String] quota_user # @param [String] quota_user