Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ service ArtifactRegistry {
};
}

// Exports an artifact.
// Exports an artifact to a Cloud Storage bucket.
rpc ExportArtifact(ExportArtifactRequest)
returns (google.longrunning.Operation) {
option (google.api.http) = {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ package google.devtools.artifactregistry.v1;

import "google/api/field_behavior.proto";
import "google/api/resource.proto";
import "google/devtools/artifactregistry/v1/file.proto";
import "google/devtools/artifactregistry/v1/tag.proto";
import "google/protobuf/field_mask.proto";
import "google/protobuf/struct.proto";
Expand Down Expand Up @@ -83,6 +84,11 @@ message Version {

// Optional. Client specified annotations.
map<string, string> annotations = 9 [(google.api.field_behavior) = OPTIONAL];

// Output only. Immutable reference for the version, calculated based on the
// version's content. Currently we only support dirsum_sha256 hash algorithm.
// Additional hash algorithms may be added in the future.
repeated Hash fingerprints = 10 [(google.api.field_behavior) = OUTPUT_ONLY];
}

// The request to list versions.
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

47 changes: 46 additions & 1 deletion packages/google-devtools-artifactregistry/protos/protos.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -2215,7 +2215,7 @@
"regionTag": "artifactregistry_v1_generated_ArtifactRegistry_ExportArtifact_async",
"title": "ArtifactRegistry exportArtifact Sample",
"origin": "API_DEFINITION",
"description": " Exports an artifact.",
"description": " Exports an artifact to a Cloud Storage bucket.",
"canonical": true,
"file": "artifact_registry.export_artifact.js",
"language": "JAVASCRIPT",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4337,7 +4337,7 @@ export class ArtifactRegistryClient {
return decodeOperation as LROperation<protos.google.protobuf.Empty, protos.google.devtools.artifactregistry.v1.OperationMetadata>;
}
/**
* Exports an artifact.
* Exports an artifact to a Cloud Storage bucket.
*
* @param {Object} request
* The request object that will be sent.
Expand Down