Show / Hide Table of Contents

Class Distribution

This represents a particular channel of distribution for a given package. E.g., Debian's jessie-backports dpkg mirror.

Inheritance
System.Object
Distribution
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.ContainerAnalysis.v1beta1.Data
Assembly: Google.Apis.ContainerAnalysis.v1beta1.dll
Syntax
public class Distribution : IDirectResponseSchema

Properties

Architecture

The CPU architecture for which packages in this distribution channel were built.

Declaration
[JsonProperty("architecture")]
public virtual string Architecture { get; set; }
Property Value
Type Description
System.String

CpeUri

Required. The cpe_uri in CPE format denoting the package manager version distributing a package.

Declaration
[JsonProperty("cpeUri")]
public virtual string CpeUri { get; set; }
Property Value
Type Description
System.String

Description

The distribution channel-specific description of this package.

Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

LatestVersion

The latest available version of this package in this distribution channel.

Declaration
[JsonProperty("latestVersion")]
public virtual Version LatestVersion { get; set; }
Property Value
Type Description
Version

Maintainer

A freeform string denoting the maintainer of this package.

Declaration
[JsonProperty("maintainer")]
public virtual string Maintainer { get; set; }
Property Value
Type Description
System.String

Url

The distribution channel-specific homepage for this package.

Declaration
[JsonProperty("url")]
public virtual string Url { get; set; }
Property Value
Type Description
System.String

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top