Class ModuleStream
A module stream provided by a software source
Inherited Members
Namespace: Oci.OsmanagementService.Models
Assembly: OCI.DotNetSDK.Osmanagement.dll
Syntax
public class ModuleStream
Properties
Architecture
Declaration
[JsonProperty(PropertyName = "architecture")]
public string Architecture { get; set; }
Property Value
Type | Description |
---|---|
string | The architecture for which the packages in this module stream were built |
Description
Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type | Description |
---|---|
string | A description of the contents of the module stream |
IsDefault
Declaration
[JsonProperty(PropertyName = "isDefault")]
public bool? IsDefault { get; set; }
Property Value
Type | Description |
---|---|
bool? | Indicates if this stream is the default for its module. |
ModuleName
Declaration
[Required(ErrorMessage = "ModuleName is required.")]
[JsonProperty(PropertyName = "moduleName")]
public string ModuleName { get; set; }
Property Value
Type | Description |
---|---|
string | The name of the module that contains the stream |
Remarks
Required
Packages
Declaration
[JsonProperty(PropertyName = "packages")]
public List<string> Packages { get; set; }
Property Value
Type | Description |
---|---|
List<string> | A list of packages that are contained by the stream. Each element in the list is the name of a package. The name is suitable to use as an argument to other OS Management APIs that interact directly with packages. |
Profiles
Declaration
[JsonProperty(PropertyName = "profiles")]
public List<string> Profiles { get; set; }
Property Value
Type | Description |
---|---|
List<string> | A list of profiles that are part of the stream. Each element in the list is the name of a profile. The name is suitable to use as an argument to other OS Management APIs that interact directly with module stream profiles. However, it is not URL encoded. |
SoftwareSourceId
Declaration
[JsonProperty(PropertyName = "softwareSourceId")]
public string SoftwareSourceId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the software source that provides this module stream. |
StreamName
Declaration
[Required(ErrorMessage = "StreamName is required.")]
[JsonProperty(PropertyName = "streamName")]
public string StreamName { get; set; }
Property Value
Type | Description |
---|---|
string | The name of the stream |
Remarks
Required