Class: Google::Apis::BigquerydatatransferV1::DataSourceParameter
- Inherits:
-
Object
- Object
- Google::Apis::BigquerydatatransferV1::DataSourceParameter
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/bigquerydatatransfer_v1/classes.rb,
generated/google/apis/bigquerydatatransfer_v1/representations.rb,
generated/google/apis/bigquerydatatransfer_v1/representations.rb
Overview
Represents a data source parameter with validation rules, so that parameters can be rendered in the UI. These parameters are given to us by supported data sources, and include all needed information for rendering and validation. Thus, whoever uses this api can decide to generate either generic ui, or custom data source specific forms.
Instance Attribute Summary collapse
-
#allowed_values ⇒ Array<String>
All possible values for the parameter.
-
#description ⇒ String
Parameter description.
-
#display_name ⇒ String
Parameter display name in the user interface.
-
#fields ⇒ Array<Google::Apis::BigquerydatatransferV1::DataSourceParameter>
Deprecated.
-
#immutable ⇒ Boolean
(also: #immutable?)
Cannot be changed after initial creation.
-
#max_value ⇒ Float
For integer and double values specifies maxminum allowed value.
-
#min_value ⇒ Float
For integer and double values specifies minimum allowed value.
-
#param_id ⇒ String
Parameter identifier.
-
#recurse ⇒ Boolean
(also: #recurse?)
Deprecated.
-
#repeated ⇒ Boolean
(also: #repeated?)
Deprecated.
-
#required ⇒ Boolean
(also: #required?)
Is parameter required.
-
#type ⇒ String
Parameter type.
-
#validation_description ⇒ String
Description of the requirements for this field, in case the user input does not fulfill the regex pattern or min/max values.
-
#validation_help_url ⇒ String
URL to a help document to further explain the naming requirements.
-
#validation_regex ⇒ String
Regular expression which can be used for parameter validation.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DataSourceParameter
constructor
A new instance of DataSourceParameter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DataSourceParameter
Returns a new instance of DataSourceParameter
291 292 293 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 291 def initialize(**args) update!(**args) end |
Instance Attribute Details
#allowed_values ⇒ Array<String>
All possible values for the parameter.
Corresponds to the JSON property allowedValues
214 215 216 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 214 def allowed_values @allowed_values end |
#description ⇒ String
Parameter description.
Corresponds to the JSON property description
219 220 221 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 219 def description @description end |
#display_name ⇒ String
Parameter display name in the user interface.
Corresponds to the JSON property displayName
224 225 226 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 224 def display_name @display_name end |
#fields ⇒ Array<Google::Apis::BigquerydatatransferV1::DataSourceParameter>
Deprecated. This field has no effect.
Corresponds to the JSON property fields
229 230 231 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 229 def fields @fields end |
#immutable ⇒ Boolean Also known as: immutable?
Cannot be changed after initial creation.
Corresponds to the JSON property immutable
234 235 236 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 234 def immutable @immutable end |
#max_value ⇒ Float
For integer and double values specifies maxminum allowed value.
Corresponds to the JSON property maxValue
240 241 242 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 240 def max_value @max_value end |
#min_value ⇒ Float
For integer and double values specifies minimum allowed value.
Corresponds to the JSON property minValue
245 246 247 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 245 def min_value @min_value end |
#param_id ⇒ String
Parameter identifier.
Corresponds to the JSON property paramId
250 251 252 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 250 def param_id @param_id end |
#recurse ⇒ Boolean Also known as: recurse?
Deprecated. This field has no effect.
Corresponds to the JSON property recurse
255 256 257 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 255 def recurse @recurse end |
#repeated ⇒ Boolean Also known as: repeated?
Deprecated. This field has no effect.
Corresponds to the JSON property repeated
261 262 263 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 261 def repeated @repeated end |
#required ⇒ Boolean Also known as: required?
Is parameter required.
Corresponds to the JSON property required
267 268 269 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 267 def required @required end |
#type ⇒ String
Parameter type.
Corresponds to the JSON property type
273 274 275 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 273 def type @type end |
#validation_description ⇒ String
Description of the requirements for this field, in case the user input does
not fulfill the regex pattern or min/max values.
Corresponds to the JSON property validationDescription
279 280 281 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 279 def validation_description @validation_description end |
#validation_help_url ⇒ String
URL to a help document to further explain the naming requirements.
Corresponds to the JSON property validationHelpUrl
284 285 286 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 284 def validation_help_url @validation_help_url end |
#validation_regex ⇒ String
Regular expression which can be used for parameter validation.
Corresponds to the JSON property validationRegex
289 290 291 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 289 def validation_regex @validation_regex end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 |
# File 'generated/google/apis/bigquerydatatransfer_v1/classes.rb', line 296 def update!(**args) @allowed_values = args[:allowed_values] if args.key?(:allowed_values) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @fields = args[:fields] if args.key?(:fields) @immutable = args[:immutable] if args.key?(:immutable) @max_value = args[:max_value] if args.key?(:max_value) @min_value = args[:min_value] if args.key?(:min_value) @param_id = args[:param_id] if args.key?(:param_id) @recurse = args[:recurse] if args.key?(:recurse) @repeated = args[:repeated] if args.key?(:repeated) @required = args[:required] if args.key?(:required) @type = args[:type] if args.key?(:type) @validation_description = args[:validation_description] if args.key?(:validation_description) @validation_help_url = args[:validation_help_url] if args.key?(:validation_help_url) @validation_regex = args[:validation_regex] if args.key?(:validation_regex) end |