Class: Google::Cloud::ArtifactRegistry::V1::YumArtifact
- Inherits:
-
Object
- Object
- Google::Cloud::ArtifactRegistry::V1::YumArtifact
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/devtools/artifactregistry/v1/yum_artifact.rb
Overview
A detailed representation of a Yum artifact.
Defined Under Namespace
Modules: PackageType
Instance Attribute Summary collapse
-
#architecture ⇒ ::String
readonly
Output only.
-
#name ⇒ ::String
readonly
Output only.
-
#package_name ⇒ ::String
readonly
Output only.
-
#package_type ⇒ ::Google::Cloud::ArtifactRegistry::V1::YumArtifact::PackageType
readonly
Output only.
Instance Attribute Details
#architecture ⇒ ::String (readonly)
Returns Output only. Operating system architecture of the artifact.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'proto_docs/google/devtools/artifactregistry/v1/yum_artifact.rb', line 37 class YumArtifact include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Package type is either binary or source. module PackageType # Package type is not specified. PACKAGE_TYPE_UNSPECIFIED = 0 # Binary package (.rpm). BINARY = 1 # Source package (.srpm). SOURCE = 2 end end |
#name ⇒ ::String (readonly)
Returns Output only. The Artifact Registry resource name of the artifact.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'proto_docs/google/devtools/artifactregistry/v1/yum_artifact.rb', line 37 class YumArtifact include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Package type is either binary or source. module PackageType # Package type is not specified. PACKAGE_TYPE_UNSPECIFIED = 0 # Binary package (.rpm). BINARY = 1 # Source package (.srpm). SOURCE = 2 end end |
#package_name ⇒ ::String (readonly)
Returns Output only. The yum package name of the artifact.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'proto_docs/google/devtools/artifactregistry/v1/yum_artifact.rb', line 37 class YumArtifact include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Package type is either binary or source. module PackageType # Package type is not specified. PACKAGE_TYPE_UNSPECIFIED = 0 # Binary package (.rpm). BINARY = 1 # Source package (.srpm). SOURCE = 2 end end |
#package_type ⇒ ::Google::Cloud::ArtifactRegistry::V1::YumArtifact::PackageType (readonly)
Returns Output only. An artifact is a binary or source package.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 |
# File 'proto_docs/google/devtools/artifactregistry/v1/yum_artifact.rb', line 37 class YumArtifact include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # Package type is either binary or source. module PackageType # Package type is not specified. PACKAGE_TYPE_UNSPECIFIED = 0 # Binary package (.rpm). BINARY = 1 # Source package (.srpm). SOURCE = 2 end end |