Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SchemaTrainingjobDefinitionTftForecastingInputsGranularity
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SchemaTrainingjobDefinitionTftForecastingInputsGranularity
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1/classes.rb,
lib/google/apis/aiplatform_v1/representations.rb,
lib/google/apis/aiplatform_v1/representations.rb
Overview
A duration of time expressed in time granularity units.
Instance Attribute Summary collapse
-
#quantity ⇒ Fixnum
The number of granularity_units between data points in the training data.
-
#unit ⇒ String
The time granularity unit of this time period.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1SchemaTrainingjobDefinitionTftForecastingInputsGranularity
constructor
A new instance of GoogleCloudAiplatformV1SchemaTrainingjobDefinitionTftForecastingInputsGranularity.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1SchemaTrainingjobDefinitionTftForecastingInputsGranularity
Returns a new instance of GoogleCloudAiplatformV1SchemaTrainingjobDefinitionTftForecastingInputsGranularity.
27882 27883 27884 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 27882 def initialize(**args) update!(**args) end |
Instance Attribute Details
#quantity ⇒ Fixnum
The number of granularity_units between data points in the training data. If
granularity_unit is minute, can be 1, 5, 10, 15, or 30. For all other
values of granularity_unit, must be 1.
Corresponds to the JSON property quantity
27874 27875 27876 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 27874 def quantity @quantity end |
#unit ⇒ String
The time granularity unit of this time period. The supported units are: * "
minute" * "hour" * "day" * "week" * "month" * "year"
Corresponds to the JSON property unit
27880 27881 27882 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 27880 def unit @unit end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
27887 27888 27889 27890 |
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 27887 def update!(**args) @quantity = args[:quantity] if args.key?(:quantity) @unit = args[:unit] if args.key?(:unit) end |