Show / Hide Table of Contents

Class ProductConfigCategoryDetails

Product Config Category Details. Defines individual products which contribute to the applications hosting on the resources that are to be managed.

Inheritance
object
ConfigCategoryDetails
ProductConfigCategoryDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.FleetappsmanagementService.Models
Assembly: OCI.DotNetSDK.Fleetappsmanagement.dll
Syntax
public class ProductConfigCategoryDetails : ConfigCategoryDetails

Properties

CompatibleProducts

Declaration
[JsonProperty(PropertyName = "compatibleProducts")]
public List<ConfigAssociationDetails> CompatibleProducts { get; set; }
Property Value
Type Description
List<ConfigAssociationDetails>

Products compatible with this Product. Provide products from the list of other products you have created that are compatible with the present one. This property is not applicable if isSoftlink is set to true.

Components

Declaration
[JsonProperty(PropertyName = "components")]
public List<string> Components { get; set; }
Property Value
Type Description
List<string>

Various components of the Product. For Example: The administration server or node manager can be the components of the Oracle WebLogic Application server.Forms server or concurrent manager can be the components of the Oracle E-Business Suite.This property is not applicable if isSoftlink is set to true.

Credentials

Declaration
[JsonProperty(PropertyName = "credentials")]
public List<ConfigAssociationDetails> Credentials { get; set; }
Property Value
Type Description
List<ConfigAssociationDetails>

OCID for the Credential name to be associated with the Product. These are useful for target discovery or lifecycle management activities, for example, Oracle WebLogic admin credentials for Oracle WebLogic Application server. This property is not applicable if isSoftlink is set to true.

IsCompliancePolicyRequiredForSoftlink

Declaration
[JsonProperty(PropertyName = "isCompliancePolicyRequiredForSoftlink")]
public bool? IsCompliancePolicyRequiredForSoftlink { get; set; }
Property Value
Type Description
bool?

If set true ,compliance policies will be created for softlink product. This property is applicable only if isSoftlink is set to true

IsSoftlink

Declaration
[JsonProperty(PropertyName = "isSoftlink")]
public bool? IsSoftlink { get; set; }
Property Value
Type Description
bool?

Specify if the product is softlink product or not

LinkProductId

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

The OCID of the product that would be the target for the softlink. This property is applicable only if isSoftlink is set to true

PatchTypes

Declaration
[JsonProperty(PropertyName = "patchTypes")]
public List<ConfigAssociationDetails> PatchTypes { get; set; }
Property Value
Type Description
List<ConfigAssociationDetails>

Patch Types associated with this Product. This property is not applicable if isSoftlink is set to true.

Versions

Declaration
[JsonProperty(PropertyName = "versions")]
public List<string> Versions { get; set; }
Property Value
Type Description
List<string>

Versions associated with the PRODUCT. Mandatory if product is not softlink product.

In this article
Back to top