Class: Google::Cloud::ArtifactRegistry::V1::ExportArtifactMetadata
- Inherits:
-
Object
- Object
- Google::Cloud::ArtifactRegistry::V1::ExportArtifactMetadata
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/devtools/artifactregistry/v1/export.rb
Overview
The LRO metadata for exporting an artifact.
Defined Under Namespace
Classes: ExportedFile
Instance Attribute Summary collapse
-
#exported_files ⇒ ::Array<::Google::Cloud::ArtifactRegistry::V1::ExportArtifactMetadata::ExportedFile>
The exported artifact files.
Instance Attribute Details
#exported_files ⇒ ::Array<::Google::Cloud::ArtifactRegistry::V1::ExportArtifactMetadata::ExportedFile>
Returns The exported artifact files.
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 |
# File 'proto_docs/google/devtools/artifactregistry/v1/export.rb', line 67 class ExportArtifactMetadata include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The exported artifact file. # @!attribute [rw] gcs_object_path # @return [::String] # Cloud Storage Object path of the exported file. Examples: # `dst_bucket/file1`, `dst_bucket/sub_dir/file1` # @!attribute [rw] name # @return [::String] # Name of the exported artifact file. # Format: `projects/p1/locations/us/repositories/repo1/files/file1` # @!attribute [rw] hashes # @return [::Array<::Google::Cloud::ArtifactRegistry::V1::Hash>] # The hashes of the file content. class ExportedFile include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods end end |