Class: Google::Cloud::DataFusion::V1::Version
- Inherits:
-
Object
- Object
- Google::Cloud::DataFusion::V1::Version
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/datafusion/v1/datafusion.rb
Overview
The Data Fusion version. This proto message stores information about certain Data Fusion version, which is used for Data Fusion version upgrade.
Defined Under Namespace
Modules: Type
Instance Attribute Summary collapse
-
#available_features ⇒ ::Array<::String>
Represents a list of available feature names for a given version.
-
#default_version ⇒ ::Boolean
Whether this is currently the default version for Cloud Data Fusion.
-
#type ⇒ ::Google::Cloud::DataFusion::V1::Version::Type
Type represents the release availability of the version.
-
#version_number ⇒ ::String
The version number of the Data Fusion instance, such as '6.0.1.0'.
Instance Attribute Details
#available_features ⇒ ::Array<::String>
Returns Represents a list of available feature names for a given version.
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'proto_docs/google/cloud/datafusion/v1/datafusion.rb', line 60 class Version include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Each type represents the release availability of a CDF version module Type # Version does not have availability yet TYPE_UNSPECIFIED = 0 # Version is under development and not considered stable TYPE_PREVIEW = 1 # Version is available for public use TYPE_GENERAL_AVAILABILITY = 2 end end |
#default_version ⇒ ::Boolean
Returns Whether this is currently the default version for Cloud Data Fusion.
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'proto_docs/google/cloud/datafusion/v1/datafusion.rb', line 60 class Version include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Each type represents the release availability of a CDF version module Type # Version does not have availability yet TYPE_UNSPECIFIED = 0 # Version is under development and not considered stable TYPE_PREVIEW = 1 # Version is available for public use TYPE_GENERAL_AVAILABILITY = 2 end end |
#type ⇒ ::Google::Cloud::DataFusion::V1::Version::Type
Returns Type represents the release availability of the version.
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'proto_docs/google/cloud/datafusion/v1/datafusion.rb', line 60 class Version include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Each type represents the release availability of a CDF version module Type # Version does not have availability yet TYPE_UNSPECIFIED = 0 # Version is under development and not considered stable TYPE_PREVIEW = 1 # Version is available for public use TYPE_GENERAL_AVAILABILITY = 2 end end |
#version_number ⇒ ::String
Returns The version number of the Data Fusion instance, such as '6.0.1.0'.
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'proto_docs/google/cloud/datafusion/v1/datafusion.rb', line 60 class Version include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Each type represents the release availability of a CDF version module Type # Version does not have availability yet TYPE_UNSPECIFIED = 0 # Version is under development and not considered stable TYPE_PREVIEW = 1 # Version is available for public use TYPE_GENERAL_AVAILABILITY = 2 end end |