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:
parent
be774699ef
commit
117bda55c7
|
@ -64316,6 +64316,7 @@
|
|||
"/genomics:v1/ReferenceSet/sourceAccessions": source_accessions
|
||||
"/genomics:v1/ReferenceSet/sourceAccessions/source_accession": source_accession
|
||||
"/genomics:v1/ReferenceSet/sourceUri": source_uri
|
||||
"/genomics:v1/RunPipelineResponse": run_pipeline_response
|
||||
"/genomics:v1/RuntimeMetadata": runtime_metadata
|
||||
"/genomics:v1/RuntimeMetadata/computeEngine": compute_engine
|
||||
"/genomics:v1/SearchAnnotationSetsRequest": search_annotation_sets_request
|
||||
|
@ -64788,6 +64789,7 @@
|
|||
"/genomics:v1alpha2/RunPipelineRequest/ephemeralPipeline": ephemeral_pipeline
|
||||
"/genomics:v1alpha2/RunPipelineRequest/pipelineArgs": pipeline_args
|
||||
"/genomics:v1alpha2/RunPipelineRequest/pipelineId": pipeline_id
|
||||
"/genomics:v1alpha2/RunPipelineResponse": run_pipeline_response
|
||||
"/genomics:v1alpha2/RuntimeMetadata": runtime_metadata
|
||||
"/genomics:v1alpha2/RuntimeMetadata/computeEngine": compute_engine
|
||||
"/genomics:v1alpha2/ServiceAccount": service_account
|
||||
|
@ -65012,6 +65014,7 @@
|
|||
"/genomics:v2alpha1/RunPipelineRequest/labels": labels
|
||||
"/genomics:v2alpha1/RunPipelineRequest/labels/label": label
|
||||
"/genomics:v2alpha1/RunPipelineRequest/pipeline": pipeline
|
||||
"/genomics:v2alpha1/RunPipelineResponse": run_pipeline_response
|
||||
"/genomics:v2alpha1/RuntimeMetadata": runtime_metadata
|
||||
"/genomics:v2alpha1/RuntimeMetadata/computeEngine": compute_engine
|
||||
"/genomics:v2alpha1/Secret": secret
|
||||
|
@ -76181,6 +76184,8 @@
|
|||
"/servicecontrol:v1/ResourceLocation": resource_location
|
||||
"/servicecontrol:v1/ResourceLocation/currentLocations": current_locations
|
||||
"/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/reconciliationOperation": reconciliation_operation
|
||||
"/servicecontrol:v1/StartReconciliationRequest/serviceConfigId": service_config_id
|
||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
|||
# @see https://developers.google.com/bid-manager/
|
||||
module DoubleclickbidmanagerV1
|
||||
VERSION = 'V1'
|
||||
REVISION = '20180215'
|
||||
REVISION = '20180821'
|
||||
|
||||
# View and manage your reports in DoubleClick Bid Manager
|
||||
AUTH_DOUBLECLICKBIDMANAGER = 'https://www.googleapis.com/auth/doubleclickbidmanager'
|
||||
|
|
|
@ -81,31 +81,35 @@ module Google
|
|||
end
|
||||
end
|
||||
|
||||
# Request to fetch stored insertion orders, line items, TrueView ad groups and
|
||||
# ads.
|
||||
# Request to fetch stored campaigns, insertion orders, line items, TrueView ad
|
||||
# groups and ads.
|
||||
class DownloadRequest
|
||||
include Google::Apis::Core::Hashable
|
||||
|
||||
# File types that will be returned.
|
||||
# Acceptable values are:
|
||||
# - "AD"
|
||||
# - "AD_GROUP"
|
||||
# - "CAMPAIGN"
|
||||
# - "INSERTION_ORDER"
|
||||
# - "LINE_ITEM"
|
||||
# Corresponds to the JSON property `fileTypes`
|
||||
# @return [Array<String>]
|
||||
attr_accessor :file_types
|
||||
|
||||
# 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
|
||||
# ADVERTISER_ID filter type. For INSERTION_ORDER_ID or LINE_ITEM_ID filter types,
|
||||
# all IDs must be from the same Advertiser.
|
||||
# At least one ID must be specified.
|
||||
# Corresponds to the JSON property `filterIds`
|
||||
# @return [Array<Fixnum>]
|
||||
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`
|
||||
# @return [String]
|
||||
attr_accessor :filter_type
|
||||
|
||||
# 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`
|
||||
# @return [String]
|
||||
attr_accessor :version
|
||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
|||
# @see https://cloud.google.com/genomics
|
||||
module GenomicsV1
|
||||
VERSION = 'V1'
|
||||
REVISION = '20180807'
|
||||
REVISION = '20180905'
|
||||
|
||||
# View and manage your data in Google BigQuery
|
||||
AUTH_BIGQUERY = 'https://www.googleapis.com/auth/bigquery'
|
||||
|
|
|
@ -2386,6 +2386,20 @@ module Google
|
|||
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
|
||||
# runtimeMetadata
|
||||
# field of the Operation associated with a RunPipeline execution.
|
||||
|
|
|
@ -340,6 +340,12 @@ module Google
|
|||
include Google::Apis::Core::JsonObjectSupport
|
||||
end
|
||||
|
||||
class RunPipelineResponse
|
||||
class Representation < Google::Apis::Core::JsonRepresentation; end
|
||||
|
||||
include Google::Apis::Core::JsonObjectSupport
|
||||
end
|
||||
|
||||
class RuntimeMetadata
|
||||
class Representation < Google::Apis::Core::JsonRepresentation; end
|
||||
|
||||
|
@ -1101,6 +1107,12 @@ module Google
|
|||
end
|
||||
end
|
||||
|
||||
class RunPipelineResponse
|
||||
# @private
|
||||
class Representation < Google::Apis::Core::JsonRepresentation
|
||||
end
|
||||
end
|
||||
|
||||
class RuntimeMetadata
|
||||
# @private
|
||||
class Representation < Google::Apis::Core::JsonRepresentation
|
||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
|||
# @see https://cloud.google.com/genomics
|
||||
module GenomicsV1alpha2
|
||||
VERSION = 'V1alpha2'
|
||||
REVISION = '20180807'
|
||||
REVISION = '20180905'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
|
@ -1250,6 +1250,20 @@ module Google
|
|||
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
|
||||
# runtimeMetadata
|
||||
# field of the Operation associated with a RunPipeline execution.
|
||||
|
|
|
@ -196,6 +196,12 @@ module Google
|
|||
include Google::Apis::Core::JsonObjectSupport
|
||||
end
|
||||
|
||||
class RunPipelineResponse
|
||||
class Representation < Google::Apis::Core::JsonRepresentation; end
|
||||
|
||||
include Google::Apis::Core::JsonObjectSupport
|
||||
end
|
||||
|
||||
class RuntimeMetadata
|
||||
class Representation < Google::Apis::Core::JsonRepresentation; end
|
||||
|
||||
|
@ -532,6 +538,12 @@ module Google
|
|||
end
|
||||
end
|
||||
|
||||
class RunPipelineResponse
|
||||
# @private
|
||||
class Representation < Google::Apis::Core::JsonRepresentation
|
||||
end
|
||||
end
|
||||
|
||||
class RuntimeMetadata
|
||||
# @private
|
||||
class Representation < Google::Apis::Core::JsonRepresentation
|
||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
|||
# @see https://cloud.google.com/genomics
|
||||
module GenomicsV2alpha1
|
||||
VERSION = 'V2alpha1'
|
||||
REVISION = '20180807'
|
||||
REVISION = '20180905'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
|
@ -1158,6 +1158,20 @@ module Google
|
|||
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
|
||||
# runtimeMetadata
|
||||
# field of the Operation associated with a RunPipeline execution.
|
||||
|
@ -1185,7 +1199,8 @@ module Google
|
|||
class Secret
|
||||
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`
|
||||
# @return [String]
|
||||
attr_accessor :cipher_text
|
||||
|
|
|
@ -196,6 +196,12 @@ module Google
|
|||
include Google::Apis::Core::JsonObjectSupport
|
||||
end
|
||||
|
||||
class RunPipelineResponse
|
||||
class Representation < Google::Apis::Core::JsonRepresentation; end
|
||||
|
||||
include Google::Apis::Core::JsonObjectSupport
|
||||
end
|
||||
|
||||
class RuntimeMetadata
|
||||
class Representation < Google::Apis::Core::JsonRepresentation; end
|
||||
|
||||
|
@ -527,6 +533,12 @@ module Google
|
|||
end
|
||||
end
|
||||
|
||||
class RunPipelineResponse
|
||||
# @private
|
||||
class Representation < Google::Apis::Core::JsonRepresentation
|
||||
end
|
||||
end
|
||||
|
||||
class RuntimeMetadata
|
||||
# @private
|
||||
class Representation < Google::Apis::Core::JsonRepresentation
|
||||
|
|
|
@ -27,7 +27,7 @@ module Google
|
|||
# @see https://cloud.google.com/iam/
|
||||
module IamV1
|
||||
VERSION = 'V1'
|
||||
REVISION = '20180809'
|
||||
REVISION = '20180830'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
|
@ -571,13 +571,13 @@ module Google
|
|||
# @return [String]
|
||||
attr_accessor :debug_message
|
||||
|
||||
# The name of the field for which this lint result is about, relative to the
|
||||
# input object to lint in the request.
|
||||
# The name of the field for which this lint result is about.
|
||||
# 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
|
||||
# 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
|
||||
# instance bindings in a policy).
|
||||
# Corresponds to the JSON property `fieldName`
|
||||
|
@ -1104,8 +1104,8 @@ module Google
|
|||
class ServiceAccount
|
||||
include Google::Apis::Core::Hashable
|
||||
|
||||
# Optional. A user-specified name for the service account. Must be
|
||||
# less than or equal to 100 UTF-8 bytes.
|
||||
# Optional. A user-specified description of the service account. Must be
|
||||
# fewer than 100 UTF-8 bytes.
|
||||
# Corresponds to the JSON property `displayName`
|
||||
# @return [String]
|
||||
attr_accessor :display_name
|
||||
|
@ -1115,7 +1115,7 @@ module Google
|
|||
# @return [String]
|
||||
attr_accessor :email
|
||||
|
||||
# Optional. Not currently used.
|
||||
# Used to perform a consistent read-modify-write.
|
||||
# Corresponds to the JSON property `etag`
|
||||
# NOTE: Values are automatically base64 encoded/decoded in the client library.
|
||||
# @return [String]
|
||||
|
@ -1172,9 +1172,11 @@ module Google
|
|||
# responsible for rotating these keys periodically to ensure security of
|
||||
# their service accounts. Users retain the private key of these key-pairs,
|
||||
# and Google retains ONLY the public key.
|
||||
# System-managed key-pairs are managed automatically by Google, and rotated
|
||||
# daily without user intervention. The private key never leaves Google's
|
||||
# servers to maximize security.
|
||||
# System-managed keys are automatically rotated by Google, and are used for
|
||||
# signing for a maximum of two weeks. The rotation process is probabilistic,
|
||||
# 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
|
||||
# Service Account API.
|
||||
class ServiceAccountKey
|
||||
|
|
|
@ -941,7 +941,8 @@ module Google
|
|||
|
||||
# Updates a ServiceAccount.
|
||||
# Currently, only the following fields are updatable:
|
||||
# `display_name`, `description`.
|
||||
# `display_name` .
|
||||
# The `etag` is mandatory.
|
||||
# @param [String] name
|
||||
# The resource name of the service account in the following format:
|
||||
# `projects/`PROJECT_ID`/serviceAccounts/`ACCOUNT``.
|
||||
|
|
|
@ -26,7 +26,7 @@ module Google
|
|||
# @see https://cloud.google.com/service-control/
|
||||
module ServicecontrolV1
|
||||
VERSION = 'V1'
|
||||
REVISION = '20180825'
|
||||
REVISION = '20180901'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
|
@ -2060,8 +2060,8 @@ module Google
|
|||
# The request was made by the Google API client for Python.
|
||||
# + `Cloud SDK Command Line Tool apitools-client/1.0 gcloud/0.9.62`:
|
||||
# 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.
|
||||
# NOLINT
|
||||
# Corresponds to the JSON property `callerSuppliedUserAgent`
|
||||
|
@ -2199,6 +2199,15 @@ module Google
|
|||
# @return [Array<String>]
|
||||
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)
|
||||
update!(**args)
|
||||
end
|
||||
|
@ -2206,6 +2215,7 @@ module Google
|
|||
# Update properties of this object
|
||||
def update!(**args)
|
||||
@current_locations = args[:current_locations] if args.key?(:current_locations)
|
||||
@original_locations = args[:original_locations] if args.key?(:original_locations)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -760,6 +760,7 @@ module Google
|
|||
# @private
|
||||
class Representation < Google::Apis::Core::JsonRepresentation
|
||||
collection :current_locations, as: 'currentLocations'
|
||||
collection :original_locations, as: 'originalLocations'
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
|||
# @see https://cloud.google.com/tpu/
|
||||
module TpuV1
|
||||
VERSION = 'V1'
|
||||
REVISION = '20180807'
|
||||
REVISION = '20180902'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
|||
# @see https://cloud.google.com/tpu/
|
||||
module TpuV1alpha1
|
||||
VERSION = 'V1alpha1'
|
||||
REVISION = '20180807'
|
||||
REVISION = '20180902'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
Loading…
Reference in New Issue