Class CreatePrivateSoftwareSourceDetails
Provides the information used to create a private software source.
Inherited Members
Namespace: Oci.OsmanagementhubService.Models
Assembly: OCI.DotNetSDK.Osmanagementhub.dll
Syntax
public class CreatePrivateSoftwareSourceDetails : CreateSoftwareSourceDetails
Properties
AdvancedRepoOptions
Declaration
[JsonProperty(PropertyName = "advancedRepoOptions")]
public string AdvancedRepoOptions { get; set; }
Property Value
Type | Description |
---|---|
string | Advanced repository options for the software source |
ArchType
Declaration
[Required(ErrorMessage = "ArchType is required.")]
[JsonProperty(PropertyName = "archType")]
[JsonConverter(typeof(StringEnumConverter))]
public ArchType? ArchType { get; set; }
Property Value
Type | Description |
---|---|
ArchType? | The architecture type supported by the private software source. |
Remarks
Required
GpgKeyUrl
Declaration
[JsonProperty(PropertyName = "gpgKeyUrl")]
public string GpgKeyUrl { get; set; }
Property Value
Type | Description |
---|---|
string | URI of the GPG key for this software source. |
IsGpgCheckEnabled
Declaration
[JsonProperty(PropertyName = "isGpgCheckEnabled")]
public bool? IsGpgCheckEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool? | Whether signature verification should be done for the software source |
IsMirrorSyncAllowed
Declaration
[JsonProperty(PropertyName = "isMirrorSyncAllowed")]
public bool? IsMirrorSyncAllowed { get; set; }
Property Value
Type | Description |
---|---|
bool? | Whether this software source can be synced to a management station |
IsSslVerifyEnabled
Declaration
[JsonProperty(PropertyName = "isSslVerifyEnabled")]
public bool? IsSslVerifyEnabled { get; set; }
Property Value
Type | Description |
---|---|
bool? | Whether SSL validation needs to be turned on |
OsFamily
Declaration
[Required(ErrorMessage = "OsFamily is required.")]
[JsonProperty(PropertyName = "osFamily")]
[JsonConverter(typeof(StringEnumConverter))]
public OsFamily? OsFamily { get; set; }
Property Value
Type | Description |
---|---|
OsFamily? | The OS family for the private software source. |
Remarks
Required
Url
Declaration
[Required(ErrorMessage = "Url is required.")]
[JsonProperty(PropertyName = "url")]
public string Url { get; set; }
Property Value
Type | Description |
---|---|
string | URL for the private software source. |
Remarks
Required