Show / Hide Table of Contents

Class SnapSummary

Provides summary information for a snap.

Inheritance
object
SnapSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OsmanagementhubService.Models
Assembly: OCI.DotNetSDK.Osmanagementhub.dll
Syntax
public class SnapSummary

Properties

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

The description of of snap.

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

The name of the snap.

Remarks

Required

Publisher

Declaration
[Required(ErrorMessage = "Publisher is required.")]
[JsonProperty(PropertyName = "publisher")]
public string Publisher { get; set; }
Property Value
Type Description
string

The publisher of the snap.

Remarks

Required

Revision

Declaration
[Required(ErrorMessage = "Revision is required.")]
[JsonProperty(PropertyName = "revision")]
public string Revision { get; set; }
Property Value
Type Description
string

The revision number of the snap channel.

Remarks

Required

StoreUrl

Declaration
[JsonProperty(PropertyName = "storeUrl")]
public string StoreUrl { get; set; }
Property Value
Type Description
string

The snap's store url.

TimeRefreshed

Declaration
[JsonProperty(PropertyName = "timeRefreshed")]
public DateTime? TimeRefreshed { get; set; }
Property Value
Type Description
DateTime?

The date and time of the snap's last refresh in RFC 3339 format.

Tracking

Declaration
[Required(ErrorMessage = "Tracking is required.")]
[JsonProperty(PropertyName = "tracking")]
public string Tracking { get; set; }
Property Value
Type Description
string

The track this snap is following.

Remarks

Required

Version

Declaration
[Required(ErrorMessage = "Version is required.")]
[JsonProperty(PropertyName = "version")]
public string Version { get; set; }
Property Value
Type Description
string

The version of the snap.

Remarks

Required

In this article
Back to top