Autogenerated update (2019-01-04)

Update:
- cloudscheduler_v1beta1
- dlp_v2
- servicecontrol_v1
- testing_v1
This commit is contained in:
Google APIs 2019-01-04 00:36:35 +00:00
parent 756a973d62
commit 4ccc4ed71b
10 changed files with 21 additions and 10 deletions

View File

@ -92388,6 +92388,7 @@
"/testing:v1/IosVersion/tags": tags
"/testing:v1/IosVersion/tags/tag": tag
"/testing:v1/IosXcTest": ios_xc_test
"/testing:v1/IosXcTest/appBundleId": app_bundle_id
"/testing:v1/IosXcTest/testsZip": tests_zip
"/testing:v1/IosXcTest/xcodeVersion": xcode_version
"/testing:v1/IosXcTest/xctestrun": xctestrun

View File

@ -25,7 +25,7 @@ module Google
# @see https://cloud.google.com/scheduler/
module CloudschedulerV1beta1
VERSION = 'V1beta1'
REVISION = '20181120'
REVISION = '20181228'
# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -66,6 +66,7 @@ module Google
# This header can be modified, but Cloud Scheduler will append
# `"AppEngine-Google; (+http://code.google.com/appengine)"` to the
# modified `User-Agent`.
# * `X-CloudScheduler`: This header will be set to true.
# If the job has an body, Cloud Scheduler sets the
# following headers:
# * `Content-Type`: By default, the `Content-Type` header is set to
@ -77,13 +78,9 @@ module Google
# output only. It cannot be changed.
# The headers below are output only. They cannot be set or overridden:
# * `X-Google-*`: For Google internal use only.
# * `X-AppEngine-*`: For Google internal use only. See
# [Reading request headers](https://cloud.google.com/appengine/docs/python/
# taskqueue/push/creating-handlers#reading_request_headers).
# * `X-AppEngine-*`: For Google internal use only.
# In addition, some App Engine headers, which contain
# job-specific information, are also be sent to the job handler; see
# [request headers](https://cloud.google.comappengine/docs/standard/python/
# config/cron#securing_urls_for_cron).
# job-specific information, are also be sent to the job handler.
# Corresponds to the JSON property `headers`
# @return [Hash<String,String>]
attr_accessor :headers

View File

@ -27,7 +27,7 @@ module Google
# @see https://cloud.google.com/dlp/docs/
module DlpV2
VERSION = 'V2'
REVISION = '20181218'
REVISION = '20181229'
# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -1164,6 +1164,7 @@ module Google
# Outputs a base64 encoded representation of the hashed output
# (for example, L7k0BHmF1ha5U3NfGykjro4xWi1MPVQPjhMAZbSV9mM=).
# Currently, only string and integer values can be hashed.
# See https://cloud.google.com/dlp/docs/pseudonymization to learn more.
class GooglePrivacyDlpV2CryptoHashConfig
include Google::Apis::Core::Hashable
@ -4074,6 +4075,7 @@ module Google
# Outputs a base64 encoded representation of the hashed output
# (for example, L7k0BHmF1ha5U3NfGykjro4xWi1MPVQPjhMAZbSV9mM=).
# Currently, only string and integer values can be hashed.
# See https://cloud.google.com/dlp/docs/pseudonymization to learn more.
# Corresponds to the JSON property `cryptoHashConfig`
# @return [Google::Apis::DlpV2::GooglePrivacyDlpV2CryptoHashConfig]
attr_accessor :crypto_hash_config

View File

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

View File

@ -2059,6 +2059,8 @@ module Google
include Google::Apis::Core::Hashable
# The locations of a resource after the execution of the operation.
# Requests to create or delete a location based resource must populate
# the 'current_locations' field and not the 'original_locations' field.
# For example:
# "europe-west1-a"
# "us-east1"
@ -2068,6 +2070,8 @@ module Google
attr_accessor :current_locations
# The locations of a resource prior to the execution of the operation.
# Requests that mutate the resource's location must populate both the
# 'original_locations' as well as the 'current_locations' fields.
# For example:
# "europe-west1-a"
# "us-east1"

View File

@ -26,7 +26,7 @@ module Google
# @see https://developers.google.com/cloud-test-lab/
module TestingV1
VERSION = 'V1'
REVISION = '20181211'
REVISION = '20181231'
# View and manage your data across Google Cloud Platform services
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'

View File

@ -1349,6 +1349,11 @@ module Google
class IosXcTest
include Google::Apis::Core::Hashable
# Output only. The bundle id for the application under test.
# Corresponds to the JSON property `appBundleId`
# @return [String]
attr_accessor :app_bundle_id
# A reference to a file, used for user inputs.
# Corresponds to the JSON property `testsZip`
# @return [Google::Apis::TestingV1::FileReference]
@ -1372,6 +1377,7 @@ module Google
# Update properties of this object
def update!(**args)
@app_bundle_id = args[:app_bundle_id] if args.key?(:app_bundle_id)
@tests_zip = args[:tests_zip] if args.key?(:tests_zip)
@xcode_version = args[:xcode_version] if args.key?(:xcode_version)
@xctestrun = args[:xctestrun] if args.key?(:xctestrun)

View File

@ -755,6 +755,7 @@ module Google
class IosXcTest
# @private
class Representation < Google::Apis::Core::JsonRepresentation
property :app_bundle_id, as: 'appBundleId'
property :tests_zip, as: 'testsZip', class: Google::Apis::TestingV1::FileReference, decorator: Google::Apis::TestingV1::FileReference::Representation
property :xcode_version, as: 'xcodeVersion'