Show / Hide Table of Contents

Class TelegrafResourceNameConfigurationDetails

Resource name generation overriding configurations for telegraf resource types.

Inheritance
object
TelegrafResourceNameConfigurationDetails
Inherited Members
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 TelegrafResourceNameConfigurationDetails

Properties

ExcludeTags

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

List of tag names to be excluded.

IncludeTags

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

List of tag names to be included.

IsUseTagsOnly

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

Flag to indicate if only tags will be used for resource name generation.

In this article
Back to top