Show / Hide Table of Contents

Class UpdateOnboardConfigDetails

Update configuration object, contains fields describing Onboarding customization: policies, dynamic groups, user groups.

Inheritance
object
UpdateConfigDetails
UpdateOnboardConfigDetails
Inherited Members
UpdateConfigDetails.DisplayName
UpdateConfigDetails.FreeformTags
UpdateConfigDetails.DefinedTags
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 UpdateOnboardConfigDetails : UpdateConfigDetails

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
[JsonProperty(PropertyName = "isManuallyOnboarded")]
public bool? IsManuallyOnboarded { get; set; }
Property Value
Type Description
bool?

True if customer decides marks configuration as manually configured.

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