Class ImportConfigurationDetails
Array of configuration items with dependencies to import.
Inherited Members
Namespace: Oci.ApmconfigService.Models
Assembly: OCI.DotNetSDK.Apmconfig.dll
Syntax
public class ImportConfigurationDetails
Properties
ConfigurationItems
Declaration
[Required(ErrorMessage = "ConfigurationItems is required.")]
[JsonProperty(PropertyName = "configurationItems")]
public List<ExportImportConfigSummary> ConfigurationItems { get; set; }
Property Value
Type | Description |
---|---|
List<ExportImportConfigSummary> | A list of Configurations Details . |
Remarks
Required
ConfigurationMap
Declaration
[Required(ErrorMessage = "ConfigurationMap is required.")]
[JsonProperty(PropertyName = "configurationMap")]
public Dictionary<string, string> ConfigurationMap { get; set; }
Property Value
Type | Description |
---|---|
Dictionary<string, string> | Simple key-value pair that has parameters related to the import process (EnableOcidSubstitution, Skip, \u2026) and more. Example: {"parameter-key": "parameter-value"}Supported parameters: \u2014 Enable the OCIDs in instructions to be replaced, if set to "true" The Config Service replace any OCIDs it finds in the instructions, if set to true the Config Service will replace.\u2014 Compartment Id we want to import the configuration Items,if the compartment Id is not provided it will be the default destination domain compartmentId. |
Remarks
Required