Apigee Registry v1 API - Class Artifact (1.0.0-beta06)

public sealed class Artifact : IMessage<Artifact>, IEquatable<Artifact>, IDeepCloneable<Artifact>, IBufferMessage, IMessage

Reference documentation and code samples for the Apigee Registry v1 API class Artifact.

Artifacts of resources. Artifacts are unique (single-value) per resource and are used to store metadata that is too large or numerous to be stored directly on the resource. Since artifacts are stored separately from parent resources, they should generally be used for metadata that is needed infrequently, i.e., not for display in primary views of the resource but perhaps displayed or downloaded upon request. The ListArtifacts method allows artifacts to be quickly enumerated and checked for presence without downloading their (potentially-large) contents.

Inheritance

object > Artifact

Namespace

Google.Cloud.ApigeeRegistry.V1

Assembly

Google.Cloud.ApigeeRegistry.V1.dll

Constructors

Artifact()

public Artifact()

Artifact(Artifact)

public Artifact(Artifact other)
Parameter
NameDescription
otherArtifact

Properties

ArtifactName

public ArtifactName ArtifactName { get; set; }

ArtifactName-typed view over the Name resource name property.

Property Value
TypeDescription
ArtifactName

Contents

public ByteString Contents { get; set; }

Input only. The contents of the artifact. Provided by API callers when artifacts are created or replaced. To access the contents of an artifact, use GetArtifactContents.

Property Value
TypeDescription
ByteString

CreateTime

public Timestamp CreateTime { get; set; }

Output only. Creation timestamp.

Property Value
TypeDescription
Timestamp

Hash

public string Hash { get; set; }

Output only. A SHA-256 hash of the artifact's contents. If the artifact is gzipped, this is the hash of the uncompressed artifact.

Property Value
TypeDescription
string

MimeType

public string MimeType { get; set; }

A content type specifier for the artifact. Content type specifiers are Media Types (https://en.wikipedia.org/wiki/Media_type) with a possible "schema" parameter that specifies a schema for the stored information. Content types can specify compression. Currently only GZip compression is supported (indicated with "+gzip").

Property Value
TypeDescription
string

Name

public string Name { get; set; }

Resource name.

Property Value
TypeDescription
string

SizeBytes

public int SizeBytes { get; set; }

Output only. The size of the artifact in bytes. If the artifact is gzipped, this is the size of the uncompressed artifact.

Property Value
TypeDescription
int

UpdateTime

public Timestamp UpdateTime { get; set; }

Output only. Last update timestamp.

Property Value
TypeDescription
Timestamp