Autogenerated update (2018-06-12)
Update: - androidmanagement_v1 - content_v2 - content_v2sandbox - manufacturers_v1 - pagespeedonline_v4 - slides_v1 - youtube_partner_v1
This commit is contained in:
parent
8afac79879
commit
6bdecaee68
|
@ -34807,6 +34807,7 @@
|
|||
"/content:v2/Table/rows/row": row
|
||||
"/content:v2/TestOrder": test_order
|
||||
"/content:v2/TestOrder/customer": customer
|
||||
"/content:v2/TestOrder/enableOrderinvoices": enable_orderinvoices
|
||||
"/content:v2/TestOrder/kind": kind
|
||||
"/content:v2/TestOrder/lineItems": line_items
|
||||
"/content:v2/TestOrder/lineItems/line_item": line_item
|
||||
|
@ -35690,6 +35691,7 @@
|
|||
"/content:v2sandbox/ShipmentInvoiceLineItemInvoice/unitInvoice": unit_invoice
|
||||
"/content:v2sandbox/TestOrder": test_order
|
||||
"/content:v2sandbox/TestOrder/customer": customer
|
||||
"/content:v2sandbox/TestOrder/enableOrderinvoices": enable_orderinvoices
|
||||
"/content:v2sandbox/TestOrder/kind": kind
|
||||
"/content:v2sandbox/TestOrder/lineItems": line_items
|
||||
"/content:v2sandbox/TestOrder/lineItems/line_item": line_item
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://developers.google.com/android/management
|
||||
module AndroidmanagementV1
|
||||
VERSION = 'V1'
|
||||
REVISION = '20180530'
|
||||
REVISION = '20180604'
|
||||
|
||||
# Manage Android devices and apps for your customers
|
||||
AUTH_ANDROIDMANAGEMENT = 'https://www.googleapis.com/auth/androidmanagement'
|
||||
|
|
|
@ -182,7 +182,7 @@ module Google
|
|||
# @return [Array<String>]
|
||||
attr_accessor :delegated_scopes
|
||||
|
||||
# Whether the app should be disabled, but app data is preserved.
|
||||
# Whether the app is disabled. When disabled, the app data is still preserved.
|
||||
# Corresponds to the JSON property `disabled`
|
||||
# @return [Boolean]
|
||||
attr_accessor :disabled
|
||||
|
@ -555,7 +555,10 @@ module Google
|
|||
# @return [Array<Google::Apis::AndroidmanagementV1::HardwareStatus>]
|
||||
attr_accessor :hardware_status_samples
|
||||
|
||||
# The last time the device sent a policy compliance report.
|
||||
# The last time the device sent a policy compliance report. Important: This
|
||||
# field is deprecated. The timestamp will be on last_status_report_time field,
|
||||
# and last_status_report_time will be used for both status report and compliance
|
||||
# report.
|
||||
# Corresponds to the JSON property `lastPolicyComplianceReportTime`
|
||||
# @return [String]
|
||||
attr_accessor :last_policy_compliance_report_time
|
||||
|
@ -1709,7 +1712,8 @@ module Google
|
|||
class PermissionGrant
|
||||
include Google::Apis::Core::Hashable
|
||||
|
||||
# The android permission, e.g. android.permission.READ_CALENDAR.
|
||||
# The android permission or group, e.g. android.permission.READ_CALENDAR or
|
||||
# android.permission_group.CALENDAR.
|
||||
# Corresponds to the JSON property `permission`
|
||||
# @return [String]
|
||||
attr_accessor :permission
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://developers.google.com/shopping-content
|
||||
module ContentV2
|
||||
VERSION = 'V2'
|
||||
REVISION = '20180605'
|
||||
REVISION = '20180608'
|
||||
|
||||
# Manage your product listings and accounts for Google Shopping
|
||||
AUTH_CONTENT = 'https://www.googleapis.com/auth/content'
|
||||
|
|
|
@ -9344,6 +9344,12 @@ module Google
|
|||
# @return [Google::Apis::ContentV2::TestOrderCustomer]
|
||||
attr_accessor :customer
|
||||
|
||||
# Whether the orderinvoices service should support this order.
|
||||
# Corresponds to the JSON property `enableOrderinvoices`
|
||||
# @return [Boolean]
|
||||
attr_accessor :enable_orderinvoices
|
||||
alias_method :enable_orderinvoices?, :enable_orderinvoices
|
||||
|
||||
# Identifies what kind of resource this is. Value: the fixed string "content#
|
||||
# testOrder".
|
||||
# Corresponds to the JSON property `kind`
|
||||
|
@ -9399,6 +9405,7 @@ module Google
|
|||
# Update properties of this object
|
||||
def update!(**args)
|
||||
@customer = args[:customer] if args.key?(:customer)
|
||||
@enable_orderinvoices = args[:enable_orderinvoices] if args.key?(:enable_orderinvoices)
|
||||
@kind = args[:kind] if args.key?(:kind)
|
||||
@line_items = args[:line_items] if args.key?(:line_items)
|
||||
@notification_mode = args[:notification_mode] if args.key?(:notification_mode)
|
||||
|
|
|
@ -4061,6 +4061,7 @@ module Google
|
|||
class Representation < Google::Apis::Core::JsonRepresentation
|
||||
property :customer, as: 'customer', class: Google::Apis::ContentV2::TestOrderCustomer, decorator: Google::Apis::ContentV2::TestOrderCustomer::Representation
|
||||
|
||||
property :enable_orderinvoices, as: 'enableOrderinvoices'
|
||||
property :kind, as: 'kind'
|
||||
collection :line_items, as: 'lineItems', class: Google::Apis::ContentV2::TestOrderLineItem, decorator: Google::Apis::ContentV2::TestOrderLineItem::Representation
|
||||
|
||||
|
|
|
@ -440,7 +440,8 @@ module Google
|
|||
execute_or_queue_command(command, &block)
|
||||
end
|
||||
|
||||
# Retrieves the status of a Merchant Center account.
|
||||
# Retrieves the status of a Merchant Center account. Multi-client accounts can
|
||||
# only call this method for sub-accounts.
|
||||
# @param [Fixnum] merchant_id
|
||||
# The ID of the managing account. If this parameter is not the same as accountId,
|
||||
# then this account must be a multi-client account and accountId must be the ID
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://developers.google.com/shopping-content
|
||||
module ContentV2sandbox
|
||||
VERSION = 'V2sandbox'
|
||||
REVISION = '20180529'
|
||||
REVISION = '20180608'
|
||||
|
||||
# Manage your product listings and accounts for Google Shopping
|
||||
AUTH_CONTENT = 'https://www.googleapis.com/auth/content'
|
||||
|
|
|
@ -3624,6 +3624,12 @@ module Google
|
|||
# @return [Google::Apis::ContentV2sandbox::TestOrderCustomer]
|
||||
attr_accessor :customer
|
||||
|
||||
# Whether the orderinvoices service should support this order.
|
||||
# Corresponds to the JSON property `enableOrderinvoices`
|
||||
# @return [Boolean]
|
||||
attr_accessor :enable_orderinvoices
|
||||
alias_method :enable_orderinvoices?, :enable_orderinvoices
|
||||
|
||||
# Identifies what kind of resource this is. Value: the fixed string "content#
|
||||
# testOrder".
|
||||
# Corresponds to the JSON property `kind`
|
||||
|
@ -3679,6 +3685,7 @@ module Google
|
|||
# Update properties of this object
|
||||
def update!(**args)
|
||||
@customer = args[:customer] if args.key?(:customer)
|
||||
@enable_orderinvoices = args[:enable_orderinvoices] if args.key?(:enable_orderinvoices)
|
||||
@kind = args[:kind] if args.key?(:kind)
|
||||
@line_items = args[:line_items] if args.key?(:line_items)
|
||||
@notification_mode = args[:notification_mode] if args.key?(:notification_mode)
|
||||
|
|
|
@ -1644,6 +1644,7 @@ module Google
|
|||
class Representation < Google::Apis::Core::JsonRepresentation
|
||||
property :customer, as: 'customer', class: Google::Apis::ContentV2sandbox::TestOrderCustomer, decorator: Google::Apis::ContentV2sandbox::TestOrderCustomer::Representation
|
||||
|
||||
property :enable_orderinvoices, as: 'enableOrderinvoices'
|
||||
property :kind, as: 'kind'
|
||||
collection :line_items, as: 'lineItems', class: Google::Apis::ContentV2sandbox::TestOrderLineItem, decorator: Google::Apis::ContentV2sandbox::TestOrderLineItem::Representation
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
|||
# @see https://developers.google.com/manufacturers/
|
||||
module ManufacturersV1
|
||||
VERSION = 'V1'
|
||||
REVISION = '20180404'
|
||||
REVISION = '20180605'
|
||||
|
||||
# Manage your product listings for Google Manufacturer Center
|
||||
AUTH_MANUFACTURERCENTER = 'https://www.googleapis.com/auth/manufacturercenter'
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://developers.google.com/speed/docs/insights/v4/getting-started
|
||||
module PagespeedonlineV4
|
||||
VERSION = 'V4'
|
||||
REVISION = '20180508'
|
||||
REVISION = '20180606'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
|||
# @see https://developers.google.com/slides/
|
||||
module SlidesV1
|
||||
VERSION = 'V1'
|
||||
REVISION = '20180601'
|
||||
REVISION = '20180608'
|
||||
|
||||
# View and manage the files in your Google Drive
|
||||
AUTH_DRIVE = 'https://www.googleapis.com/auth/drive'
|
||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
|||
# @see https://developers.google.com/youtube/partner/
|
||||
module YoutubePartnerV1
|
||||
VERSION = 'V1'
|
||||
REVISION = ''
|
||||
REVISION = '20180604'
|
||||
|
||||
# View and manage your assets and associated content on YouTube
|
||||
AUTH_YOUTUBEPARTNER = 'https://www.googleapis.com/auth/youtubepartner'
|
||||
|
|
Loading…
Reference in New Issue