Show / Hide Table of Contents

Class OnboardConfigDetails

A configuration of the ONBOARD type, contains fields describing Onboarding customization: policies, dynamic groups, user groups.

Inheritance
object
Config
OnboardConfigDetails
Inherited Members
Config.Id
Config.CompartmentId
Config.DisplayName
Config.TimeCreated
Config.TimeUpdated
Config.LifecycleState
Config.FreeformTags
Config.DefinedTags
Config.SystemTags
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.StackmonitoringService.Models
Assembly: OCI.DotNetSDK.Stackmonitoring.dll
Syntax
public class OnboardConfigDetails : Config

Properties

AdditionalConfigurations

Declaration
[JsonProperty(PropertyName = "additionalConfigurations")]
public AdditionalConfigurationDetails AdditionalConfigurations { get; set; }
Property Value
Type Description
AdditionalConfigurationDetails

DynamicGroups

Declaration
[JsonProperty(PropertyName = "dynamicGroups")]
public List<DynamicGroupDetails> DynamicGroups { get; set; }
Property Value
Type Description
List<DynamicGroupDetails>

List of dynamic groups dedicated for Stack Monitoring.

IsManuallyOnboarded

Declaration
[Required(ErrorMessage = "IsManuallyOnboarded is required.")]
[JsonProperty(PropertyName = "isManuallyOnboarded")]
public bool? IsManuallyOnboarded { get; set; }
Property Value
Type Description
bool?

True if customer decides marks configuration as manually configured.

Remarks

Required

PolicyNames

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

List of policy names assigned for onboarding

UserGroups

Declaration
[JsonProperty(PropertyName = "userGroups")]
public List<GroupDetails> UserGroups { get; set; }
Property Value
Type Description
List<GroupDetails>

List of user groups dedicated for Stack Monitoring.

Version

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

Assigned version to given onboard configuration.

In this article
Back to top