Autogenerated update (2018-09-06)

Update:
- doubleclickbidmanager_v1
- genomics_v1
- genomics_v1alpha2
- genomics_v2alpha1
- iam_v1
- servicecontrol_v1
- tpu_v1
- tpu_v1alpha1
This commit is contained in:
Google APIs 2018-09-06 00:36:21 +00:00
parent be774699ef
commit 117bda55c7
20 changed files with 131 additions and 29 deletions

View File

@ -64316,6 +64316,7 @@
"/genomics:v1/ReferenceSet/sourceAccessions": source_accessions "/genomics:v1/ReferenceSet/sourceAccessions": source_accessions
"/genomics:v1/ReferenceSet/sourceAccessions/source_accession": source_accession "/genomics:v1/ReferenceSet/sourceAccessions/source_accession": source_accession
"/genomics:v1/ReferenceSet/sourceUri": source_uri "/genomics:v1/ReferenceSet/sourceUri": source_uri
"/genomics:v1/RunPipelineResponse": run_pipeline_response
"/genomics:v1/RuntimeMetadata": runtime_metadata "/genomics:v1/RuntimeMetadata": runtime_metadata
"/genomics:v1/RuntimeMetadata/computeEngine": compute_engine "/genomics:v1/RuntimeMetadata/computeEngine": compute_engine
"/genomics:v1/SearchAnnotationSetsRequest": search_annotation_sets_request "/genomics:v1/SearchAnnotationSetsRequest": search_annotation_sets_request
@ -64788,6 +64789,7 @@
"/genomics:v1alpha2/RunPipelineRequest/ephemeralPipeline": ephemeral_pipeline "/genomics:v1alpha2/RunPipelineRequest/ephemeralPipeline": ephemeral_pipeline
"/genomics:v1alpha2/RunPipelineRequest/pipelineArgs": pipeline_args "/genomics:v1alpha2/RunPipelineRequest/pipelineArgs": pipeline_args
"/genomics:v1alpha2/RunPipelineRequest/pipelineId": pipeline_id "/genomics:v1alpha2/RunPipelineRequest/pipelineId": pipeline_id
"/genomics:v1alpha2/RunPipelineResponse": run_pipeline_response
"/genomics:v1alpha2/RuntimeMetadata": runtime_metadata "/genomics:v1alpha2/RuntimeMetadata": runtime_metadata
"/genomics:v1alpha2/RuntimeMetadata/computeEngine": compute_engine "/genomics:v1alpha2/RuntimeMetadata/computeEngine": compute_engine
"/genomics:v1alpha2/ServiceAccount": service_account "/genomics:v1alpha2/ServiceAccount": service_account
@ -65012,6 +65014,7 @@
"/genomics:v2alpha1/RunPipelineRequest/labels": labels "/genomics:v2alpha1/RunPipelineRequest/labels": labels
"/genomics:v2alpha1/RunPipelineRequest/labels/label": label "/genomics:v2alpha1/RunPipelineRequest/labels/label": label
"/genomics:v2alpha1/RunPipelineRequest/pipeline": pipeline "/genomics:v2alpha1/RunPipelineRequest/pipeline": pipeline
"/genomics:v2alpha1/RunPipelineResponse": run_pipeline_response
"/genomics:v2alpha1/RuntimeMetadata": runtime_metadata "/genomics:v2alpha1/RuntimeMetadata": runtime_metadata
"/genomics:v2alpha1/RuntimeMetadata/computeEngine": compute_engine "/genomics:v2alpha1/RuntimeMetadata/computeEngine": compute_engine
"/genomics:v2alpha1/Secret": secret "/genomics:v2alpha1/Secret": secret
@ -76181,6 +76184,8 @@
"/servicecontrol:v1/ResourceLocation": resource_location "/servicecontrol:v1/ResourceLocation": resource_location
"/servicecontrol:v1/ResourceLocation/currentLocations": current_locations "/servicecontrol:v1/ResourceLocation/currentLocations": current_locations
"/servicecontrol:v1/ResourceLocation/currentLocations/current_location": current_location "/servicecontrol:v1/ResourceLocation/currentLocations/current_location": current_location
"/servicecontrol:v1/ResourceLocation/originalLocations": original_locations
"/servicecontrol:v1/ResourceLocation/originalLocations/original_location": original_location
"/servicecontrol:v1/StartReconciliationRequest": start_reconciliation_request "/servicecontrol:v1/StartReconciliationRequest": start_reconciliation_request
"/servicecontrol:v1/StartReconciliationRequest/reconciliationOperation": reconciliation_operation "/servicecontrol:v1/StartReconciliationRequest/reconciliationOperation": reconciliation_operation
"/servicecontrol:v1/StartReconciliationRequest/serviceConfigId": service_config_id "/servicecontrol:v1/StartReconciliationRequest/serviceConfigId": service_config_id

View File

@ -25,7 +25,7 @@ module Google
# @see https://developers.google.com/bid-manager/ # @see https://developers.google.com/bid-manager/
module DoubleclickbidmanagerV1 module DoubleclickbidmanagerV1
VERSION = 'V1' VERSION = 'V1'
REVISION = '20180215' REVISION = '20180821'
# View and manage your reports in DoubleClick Bid Manager # View and manage your reports in DoubleClick Bid Manager
AUTH_DOUBLECLICKBIDMANAGER = 'https://www.googleapis.com/auth/doubleclickbidmanager' AUTH_DOUBLECLICKBIDMANAGER = 'https://www.googleapis.com/auth/doubleclickbidmanager'

View File

@ -81,31 +81,35 @@ module Google
end end
end end
# Request to fetch stored insertion orders, line items, TrueView ad groups and # Request to fetch stored campaigns, insertion orders, line items, TrueView ad
# ads. # groups and ads.
class DownloadRequest class DownloadRequest
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# File types that will be returned. # File types that will be returned.
# Acceptable values are:
# - "AD"
# - "AD_GROUP"
# - "CAMPAIGN"
# - "INSERTION_ORDER"
# - "LINE_ITEM"
# Corresponds to the JSON property `fileTypes` # Corresponds to the JSON property `fileTypes`
# @return [Array<String>] # @return [Array<String>]
attr_accessor :file_types attr_accessor :file_types
# The IDs of the specified filter type. This is used to filter entities to fetch. # The IDs of the specified filter type. This is used to filter entities to fetch.
# At least one ID must be specified. Only one ID is allowed for the # At least one ID must be specified.
# ADVERTISER_ID filter type. For INSERTION_ORDER_ID or LINE_ITEM_ID filter types,
# all IDs must be from the same Advertiser.
# Corresponds to the JSON property `filterIds` # Corresponds to the JSON property `filterIds`
# @return [Array<Fixnum>] # @return [Array<Fixnum>]
attr_accessor :filter_ids attr_accessor :filter_ids
# Filter type used to filter line items to fetch. # Filter type used to filter entities to fetch.
# Corresponds to the JSON property `filterType` # Corresponds to the JSON property `filterType`
# @return [String] # @return [String]
attr_accessor :filter_type attr_accessor :filter_type
# SDF Version (column names, types, order) in which the entities will be # SDF Version (column names, types, order) in which the entities will be
# returned. Default to 3. # returned. Default to 3.1.
# Corresponds to the JSON property `version` # Corresponds to the JSON property `version`
# @return [String] # @return [String]
attr_accessor :version attr_accessor :version

View File

@ -25,7 +25,7 @@ module Google
# @see https://cloud.google.com/genomics # @see https://cloud.google.com/genomics
module GenomicsV1 module GenomicsV1
VERSION = 'V1' VERSION = 'V1'
REVISION = '20180807' REVISION = '20180905'
# View and manage your data in Google BigQuery # View and manage your data in Google BigQuery
AUTH_BIGQUERY = 'https://www.googleapis.com/auth/bigquery' AUTH_BIGQUERY = 'https://www.googleapis.com/auth/bigquery'

View File

@ -2386,6 +2386,20 @@ module Google
end end
end end
# The response to the RunPipeline method, returned in the operation's result
# field on success.
class RunPipelineResponse
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# Runtime metadata that will be populated in the # Runtime metadata that will be populated in the
# runtimeMetadata # runtimeMetadata
# field of the Operation associated with a RunPipeline execution. # field of the Operation associated with a RunPipeline execution.

View File

@ -340,6 +340,12 @@ module Google
include Google::Apis::Core::JsonObjectSupport include Google::Apis::Core::JsonObjectSupport
end end
class RunPipelineResponse
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class RuntimeMetadata class RuntimeMetadata
class Representation < Google::Apis::Core::JsonRepresentation; end class Representation < Google::Apis::Core::JsonRepresentation; end
@ -1101,6 +1107,12 @@ module Google
end end
end end
class RunPipelineResponse
# @private
class Representation < Google::Apis::Core::JsonRepresentation
end
end
class RuntimeMetadata class RuntimeMetadata
# @private # @private
class Representation < Google::Apis::Core::JsonRepresentation class Representation < Google::Apis::Core::JsonRepresentation

View File

@ -25,7 +25,7 @@ module Google
# @see https://cloud.google.com/genomics # @see https://cloud.google.com/genomics
module GenomicsV1alpha2 module GenomicsV1alpha2
VERSION = 'V1alpha2' VERSION = 'V1alpha2'
REVISION = '20180807' REVISION = '20180905'
# 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

@ -1250,6 +1250,20 @@ module Google
end end
end end
# The response to the RunPipeline method, returned in the operation's result
# field on success.
class RunPipelineResponse
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# Runtime metadata that will be populated in the # Runtime metadata that will be populated in the
# runtimeMetadata # runtimeMetadata
# field of the Operation associated with a RunPipeline execution. # field of the Operation associated with a RunPipeline execution.

View File

@ -196,6 +196,12 @@ module Google
include Google::Apis::Core::JsonObjectSupport include Google::Apis::Core::JsonObjectSupport
end end
class RunPipelineResponse
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class RuntimeMetadata class RuntimeMetadata
class Representation < Google::Apis::Core::JsonRepresentation; end class Representation < Google::Apis::Core::JsonRepresentation; end
@ -532,6 +538,12 @@ module Google
end end
end end
class RunPipelineResponse
# @private
class Representation < Google::Apis::Core::JsonRepresentation
end
end
class RuntimeMetadata class RuntimeMetadata
# @private # @private
class Representation < Google::Apis::Core::JsonRepresentation class Representation < Google::Apis::Core::JsonRepresentation

View File

@ -25,7 +25,7 @@ module Google
# @see https://cloud.google.com/genomics # @see https://cloud.google.com/genomics
module GenomicsV2alpha1 module GenomicsV2alpha1
VERSION = 'V2alpha1' VERSION = 'V2alpha1'
REVISION = '20180807' REVISION = '20180905'
# 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

@ -1158,6 +1158,20 @@ module Google
end end
end end
# The response to the RunPipeline method, returned in the operation's result
# field on success.
class RunPipelineResponse
include Google::Apis::Core::Hashable
def initialize(**args)
update!(**args)
end
# Update properties of this object
def update!(**args)
end
end
# Runtime metadata that will be populated in the # Runtime metadata that will be populated in the
# runtimeMetadata # runtimeMetadata
# field of the Operation associated with a RunPipeline execution. # field of the Operation associated with a RunPipeline execution.
@ -1185,7 +1199,8 @@ module Google
class Secret class Secret
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# The value of the cipherText response from the `encrypt` method. # The value of the cipherText response from the `encrypt` method. This field
# is intentionally unaudited.
# Corresponds to the JSON property `cipherText` # Corresponds to the JSON property `cipherText`
# @return [String] # @return [String]
attr_accessor :cipher_text attr_accessor :cipher_text

View File

@ -196,6 +196,12 @@ module Google
include Google::Apis::Core::JsonObjectSupport include Google::Apis::Core::JsonObjectSupport
end end
class RunPipelineResponse
class Representation < Google::Apis::Core::JsonRepresentation; end
include Google::Apis::Core::JsonObjectSupport
end
class RuntimeMetadata class RuntimeMetadata
class Representation < Google::Apis::Core::JsonRepresentation; end class Representation < Google::Apis::Core::JsonRepresentation; end
@ -527,6 +533,12 @@ module Google
end end
end end
class RunPipelineResponse
# @private
class Representation < Google::Apis::Core::JsonRepresentation
end
end
class RuntimeMetadata class RuntimeMetadata
# @private # @private
class Representation < Google::Apis::Core::JsonRepresentation class Representation < Google::Apis::Core::JsonRepresentation

View File

@ -27,7 +27,7 @@ module Google
# @see https://cloud.google.com/iam/ # @see https://cloud.google.com/iam/
module IamV1 module IamV1
VERSION = 'V1' VERSION = 'V1'
REVISION = '20180809' REVISION = '20180830'
# 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

@ -571,13 +571,13 @@ module Google
# @return [String] # @return [String]
attr_accessor :debug_message attr_accessor :debug_message
# The name of the field for which this lint result is about, relative to the # The name of the field for which this lint result is about.
# input object to lint in the request.
# For nested messages, `field_name` consists of names of the embedded fields # For nested messages, `field_name` consists of names of the embedded fields
# separated by period character. For instance, if the lint request is on a # separated by period character. The top-level qualifier is the input object
# to lint in the request. For instance, if the lint request is on a
# google.iam.v1.Policy and this lint result is about a condition # google.iam.v1.Policy and this lint result is about a condition
# expression of one of the input policy bindings, the field would be # expression of one of the input policy bindings, the field would be
# populated as `bindings.condition.expression`. # populated as `policy.bindings.condition.expression`.
# This field does not identify the ordinality of the repetitive fields (for # This field does not identify the ordinality of the repetitive fields (for
# instance bindings in a policy). # instance bindings in a policy).
# Corresponds to the JSON property `fieldName` # Corresponds to the JSON property `fieldName`
@ -1104,8 +1104,8 @@ module Google
class ServiceAccount class ServiceAccount
include Google::Apis::Core::Hashable include Google::Apis::Core::Hashable
# Optional. A user-specified name for the service account. Must be # Optional. A user-specified description of the service account. Must be
# less than or equal to 100 UTF-8 bytes. # fewer than 100 UTF-8 bytes.
# Corresponds to the JSON property `displayName` # Corresponds to the JSON property `displayName`
# @return [String] # @return [String]
attr_accessor :display_name attr_accessor :display_name
@ -1115,7 +1115,7 @@ module Google
# @return [String] # @return [String]
attr_accessor :email attr_accessor :email
# Optional. Not currently used. # Used to perform a consistent read-modify-write.
# Corresponds to the JSON property `etag` # Corresponds to the JSON property `etag`
# NOTE: Values are automatically base64 encoded/decoded in the client library. # NOTE: Values are automatically base64 encoded/decoded in the client library.
# @return [String] # @return [String]
@ -1172,9 +1172,11 @@ module Google
# responsible for rotating these keys periodically to ensure security of # responsible for rotating these keys periodically to ensure security of
# their service accounts. Users retain the private key of these key-pairs, # their service accounts. Users retain the private key of these key-pairs,
# and Google retains ONLY the public key. # and Google retains ONLY the public key.
# System-managed key-pairs are managed automatically by Google, and rotated # System-managed keys are automatically rotated by Google, and are used for
# daily without user intervention. The private key never leaves Google's # signing for a maximum of two weeks. The rotation process is probabilistic,
# servers to maximize security. # and usage of the new key will gradually ramp up and down over the key's
# lifetime. We recommend caching the public key set for a service account for
# no more than 24 hours to ensure you have access to the latest keys.
# Public keys for all service accounts are also published at the OAuth2 # Public keys for all service accounts are also published at the OAuth2
# Service Account API. # Service Account API.
class ServiceAccountKey class ServiceAccountKey

View File

@ -941,7 +941,8 @@ module Google
# Updates a ServiceAccount. # Updates a ServiceAccount.
# Currently, only the following fields are updatable: # Currently, only the following fields are updatable:
# `display_name`, `description`. # `display_name` .
# The `etag` is mandatory.
# @param [String] name # @param [String] name
# The resource name of the service account in the following format: # The resource name of the service account in the following format:
# `projects/`PROJECT_ID`/serviceAccounts/`ACCOUNT``. # `projects/`PROJECT_ID`/serviceAccounts/`ACCOUNT``.

View File

@ -26,7 +26,7 @@ module Google
# @see https://cloud.google.com/service-control/ # @see https://cloud.google.com/service-control/
module ServicecontrolV1 module ServicecontrolV1
VERSION = 'V1' VERSION = 'V1'
REVISION = '20180825' REVISION = '20180901'
# 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

@ -2060,8 +2060,8 @@ module Google
# The request was made by the Google API client for Python. # The request was made by the Google API client for Python.
# + `Cloud SDK Command Line Tool apitools-client/1.0 gcloud/0.9.62`: # + `Cloud SDK Command Line Tool apitools-client/1.0 gcloud/0.9.62`:
# The request was made by the Google Cloud SDK CLI (gcloud). # The request was made by the Google Cloud SDK CLI (gcloud).
# + `AppEngine-Google; (+http://code.google.com/appengine; appid: s~my-project` # + `AppEngine-Google; (+http://code.google.com/appengine; appid:
# : # s~my-project`:
# The request was made from the `my-project` App Engine app. # The request was made from the `my-project` App Engine app.
# NOLINT # NOLINT
# Corresponds to the JSON property `callerSuppliedUserAgent` # Corresponds to the JSON property `callerSuppliedUserAgent`
@ -2199,6 +2199,15 @@ module Google
# @return [Array<String>] # @return [Array<String>]
attr_accessor :current_locations attr_accessor :current_locations
# The locations of a resource prior to the execution of the operation.
# For example:
# "europe-west1-a"
# "us-east1"
# "nam3"
# Corresponds to the JSON property `originalLocations`
# @return [Array<String>]
attr_accessor :original_locations
def initialize(**args) def initialize(**args)
update!(**args) update!(**args)
end end
@ -2206,6 +2215,7 @@ module Google
# Update properties of this object # Update properties of this object
def update!(**args) def update!(**args)
@current_locations = args[:current_locations] if args.key?(:current_locations) @current_locations = args[:current_locations] if args.key?(:current_locations)
@original_locations = args[:original_locations] if args.key?(:original_locations)
end end
end end

View File

@ -760,6 +760,7 @@ module Google
# @private # @private
class Representation < Google::Apis::Core::JsonRepresentation class Representation < Google::Apis::Core::JsonRepresentation
collection :current_locations, as: 'currentLocations' collection :current_locations, as: 'currentLocations'
collection :original_locations, as: 'originalLocations'
end end
end end

View File

@ -25,7 +25,7 @@ module Google
# @see https://cloud.google.com/tpu/ # @see https://cloud.google.com/tpu/
module TpuV1 module TpuV1
VERSION = 'V1' VERSION = 'V1'
REVISION = '20180807' REVISION = '20180902'
# 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

@ -25,7 +25,7 @@ module Google
# @see https://cloud.google.com/tpu/ # @see https://cloud.google.com/tpu/
module TpuV1alpha1 module TpuV1alpha1
VERSION = 'V1alpha1' VERSION = 'V1alpha1'
REVISION = '20180807' REVISION = '20180902'
# 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'