Class: Google::Cloud::ArtifactRegistry::V1::AptArtifact
- Inherits:
-
Object
- Object
- Google::Cloud::ArtifactRegistry::V1::AptArtifact
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/devtools/artifactregistry/v1/apt_artifact.rb
Overview
A detailed representation of an Apt artifact. Information in the record is derived from the archive's control file. See https://www.debian.org/doc/debian-policy/ch-controlfields.html
Defined Under Namespace
Modules: PackageType
Instance Attribute Summary collapse
-
#architecture ⇒ ::String
readonly
Output only.
-
#component ⇒ ::String
readonly
Output only.
-
#control_file ⇒ ::String
readonly
Output only.
-
#name ⇒ ::String
readonly
Output only.
-
#package_name ⇒ ::String
readonly
Output only.
-
#package_type ⇒ ::Google::Cloud::ArtifactRegistry::V1::AptArtifact::PackageType
readonly
Output only.
Instance Attribute Details
#architecture ⇒ ::String (readonly)
Returns Output only. Operating system architecture of the artifact.
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'proto_docs/google/devtools/artifactregistry/v1/apt_artifact.rb', line 45 class AptArtifact 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. BINARY = 1 # Source package. SOURCE = 2 end end |
#component ⇒ ::String (readonly)
Returns Output only. Repository component of the artifact.
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'proto_docs/google/devtools/artifactregistry/v1/apt_artifact.rb', line 45 class AptArtifact 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. BINARY = 1 # Source package. SOURCE = 2 end end |
#control_file ⇒ ::String (readonly)
Returns Output only. Contents of the artifact's control metadata file.
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'proto_docs/google/devtools/artifactregistry/v1/apt_artifact.rb', line 45 class AptArtifact 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. BINARY = 1 # Source package. SOURCE = 2 end end |
#name ⇒ ::String (readonly)
Returns Output only. The Artifact Registry resource name of the artifact.
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'proto_docs/google/devtools/artifactregistry/v1/apt_artifact.rb', line 45 class AptArtifact 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. BINARY = 1 # Source package. SOURCE = 2 end end |
#package_name ⇒ ::String (readonly)
Returns Output only. The Apt package name of the artifact.
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'proto_docs/google/devtools/artifactregistry/v1/apt_artifact.rb', line 45 class AptArtifact 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. BINARY = 1 # Source package. SOURCE = 2 end end |
#package_type ⇒ ::Google::Cloud::ArtifactRegistry::V1::AptArtifact::PackageType (readonly)
Returns Output only. An artifact is a binary or source package.
45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 |
# File 'proto_docs/google/devtools/artifactregistry/v1/apt_artifact.rb', line 45 class AptArtifact 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. BINARY = 1 # Source package. SOURCE = 2 end end |