Show / Hide Table of Contents

Class ResourceTypeDefaultParameterValues

Default values needed to import a resource type for a package.

Inheritance
object
ResourceTypeDefaultParameterValues
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 ResourceTypeDefaultParameterValues

Properties

ParameterValues

Declaration
[Required(ErrorMessage = "ParameterValues is required.")]
[JsonProperty(PropertyName = "parameterValues")]
public Dictionary<string, string> ParameterValues { get; set; }
Property Value
Type Description
Dictionary<string, string>

A list of parameter values used to import the package.

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 these resourceType-specific parameter values apply

Remarks

Required

In this article
Back to top