Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

MavenArtifact

import type { MavenArtifact } from "https://googleapis.deno.dev/v1/artifactregistry:v1.ts";

MavenArtifact represents a maven artifact.

interface MavenArtifact {
artifactId?: string;
readonly createTime?: Date;
groupId?: string;
name?: string;
pomUri?: string;
readonly updateTime?: Date;
version?: string;
}

§Properties

§
artifactId?: string
[src]

Artifact ID for the artifact.

§
readonly createTime?: Date
[src]

Output only. Time the artifact was created.

§
groupId?: string
[src]

Group ID for the artifact. Example: com.google.guava

§
name?: string
[src]

Required. registry_location, project_id, repository_name and maven_artifact forms a unique artifact For example, "projects/test-project/locations/us-west4/repositories/test-repo/mavenArtifacts/ com.google.guava:guava:31.0-jre", where "us-west4" is the registry_location, "test-project" is the project_id, "test-repo" is the repository_name and "com.google.guava:guava:31.0-jre" is the maven artifact.

§
pomUri?: string
[src]

Required. URL to access the pom file of the artifact. Example: us-west4-maven.pkg.dev/test-project/test-repo/com/google/guava/guava/31.0/guava-31.0.pom

§
readonly updateTime?: Date
[src]

Output only. Time the artifact was updated.

§
version?: string
[src]

Version of this artifact.