Show / Hide Table of Contents

Class ImportConfigurationFailedItemSummary

A configuration item that failed to be imported.

Inheritance
object
ImportConfigurationFailedItemSummary
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApmconfigService.Models
Assembly: OCI.DotNetSDK.Apmconfig.dll
Syntax
public class ImportConfigurationFailedItemSummary

Properties

ConfigType

Declaration
[JsonProperty(PropertyName = "configType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ConfigTypes? ConfigType { get; set; }
Property Value
Type Description
ConfigTypes?

The type of configuration item.

DisplayName

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

The name by which a configuration entity is displayed to the end user.

ErrorMessage

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

The configuration item wasn't imported due to it being a duplicate.

Id

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

The OCID of the configuration item. An OCID is generated when the item is created.

In this article
Back to top