feat: Automated regeneration of dataflow v1b3 client
This commit is contained in:
parent
5cf13c7513
commit
15bee136a4
|
@ -62272,6 +62272,9 @@
|
|||
"/dataflow:v1b3/LaunchFlexTemplateParameter/launchOptions/launch_option": launch_option
|
||||
"/dataflow:v1b3/LaunchFlexTemplateParameter/parameters": parameters
|
||||
"/dataflow:v1b3/LaunchFlexTemplateParameter/parameters/parameter": parameter
|
||||
"/dataflow:v1b3/LaunchFlexTemplateParameter/transformNameMappings": transform_name_mappings
|
||||
"/dataflow:v1b3/LaunchFlexTemplateParameter/transformNameMappings/transform_name_mapping": transform_name_mapping
|
||||
"/dataflow:v1b3/LaunchFlexTemplateParameter/update": update
|
||||
"/dataflow:v1b3/LaunchFlexTemplateRequest": launch_flex_template_request
|
||||
"/dataflow:v1b3/LaunchFlexTemplateRequest/launchParameter": launch_parameter
|
||||
"/dataflow:v1b3/LaunchFlexTemplateRequest/validateOnly": validate_only
|
||||
|
|
|
@ -25,7 +25,7 @@ module Google
|
|||
# @see https://cloud.google.com/dataflow
|
||||
module DataflowV1b3
|
||||
VERSION = 'V1b3'
|
||||
REVISION = '20201023'
|
||||
REVISION = '20201117'
|
||||
|
||||
# View and manage your data across Google Cloud Platform services
|
||||
AUTH_CLOUD_PLATFORM = 'https://www.googleapis.com/auth/cloud-platform'
|
||||
|
|
|
@ -2481,7 +2481,8 @@ module Google
|
|||
# @return [Google::Apis::DataflowV1b3::FlexTemplateRuntimeEnvironment]
|
||||
attr_accessor :environment
|
||||
|
||||
# Required. The job name to use for the created job.
|
||||
# Required. The job name to use for the created job. For update job request, job
|
||||
# name should be same as the existing running job.
|
||||
# Corresponds to the JSON property `jobName`
|
||||
# @return [String]
|
||||
attr_accessor :job_name
|
||||
|
@ -2497,6 +2498,19 @@ module Google
|
|||
# @return [Hash<String,String>]
|
||||
attr_accessor :parameters
|
||||
|
||||
# Users need to set transform_name_mappings Ex:`"oldTransformName":"
|
||||
# newTransformName",...`'
|
||||
# Corresponds to the JSON property `transformNameMappings`
|
||||
# @return [Hash<String,String>]
|
||||
attr_accessor :transform_name_mappings
|
||||
|
||||
# Set this to true if you are sending a request to update a running streaming
|
||||
# job. When set, the job name should be the same as the running job.
|
||||
# Corresponds to the JSON property `update`
|
||||
# @return [Boolean]
|
||||
attr_accessor :update
|
||||
alias_method :update?, :update
|
||||
|
||||
def initialize(**args)
|
||||
update!(**args)
|
||||
end
|
||||
|
@ -2509,6 +2523,8 @@ module Google
|
|||
@job_name = args[:job_name] if args.key?(:job_name)
|
||||
@launch_options = args[:launch_options] if args.key?(:launch_options)
|
||||
@parameters = args[:parameters] if args.key?(:parameters)
|
||||
@transform_name_mappings = args[:transform_name_mappings] if args.key?(:transform_name_mappings)
|
||||
@update = args[:update] if args.key?(:update)
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -1714,6 +1714,8 @@ module Google
|
|||
property :job_name, as: 'jobName'
|
||||
hash :launch_options, as: 'launchOptions'
|
||||
hash :parameters, as: 'parameters'
|
||||
hash :transform_name_mappings, as: 'transformNameMappings'
|
||||
property :update, as: 'update'
|
||||
end
|
||||
end
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
"git": {
|
||||
"name": ".",
|
||||
"remote": "https://github.com/googleapis/google-api-ruby-client.git",
|
||||
"sha": "455198a94f1c155381cefdf548adcba65b5384a2"
|
||||
"sha": "5cf13c7513f641f61fc53c7b2adda475ab7ba41a"
|
||||
}
|
||||
}
|
||||
]
|
||||
|
|
Loading…
Reference in New Issue