Show / Hide Table of Contents

Class ResourceTypeImportContract

The contract guiding the import experience for the consumer and behavior of the resource provider for a single resourceType.

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

Properties

Parameters

Declaration
[Required(ErrorMessage = "Parameters is required.")]
[JsonProperty(PropertyName = "parameters")]
public List<ParameterDefinition> Parameters { get; set; }
Property Value
Type Description
List<ParameterDefinition>

A list of definitions for parameters that are required to import this package into a target instance.

Remarks

Required

ResourceType

Declaration
[Required(ErrorMessage = "ResourceType is required.")]
[JsonProperty(PropertyName = "resourceType")]
public string ResourceType { get; set; }
Property Value
Type Description
string

The type of resource to which this resourceType-specific contract applies

Remarks

Required

In this article
Back to top