Show / Hide Table of Contents

Class CreateSdkDetails

Information about the new SDK.

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

Properties

ApiId

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

The OCID of API resource

Remarks

Required

DefinedTags

Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
Type Description
Dictionary<string, Dictionary<string, object>>

Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
Example: {"Operations": {"CostCenter": "42"}}

DisplayName

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

A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
Example: My new resource

FreeformTags

Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type Description
Dictionary<string, string>

Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags.
Example: {"Department": "Finance"}

Parameters

Declaration
[JsonProperty(PropertyName = "parameters")]
public Dictionary<string, string> Parameters { get; set; }
Property Value
Type Description
Dictionary<string, string>

Additional optional configurations that can be passed to generate SDK Api. The applicable parameters are listed under "parameters" when "/sdkLanguageTypes" is called.
Example: {"configName": "configValue"}

TargetLanguage

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

The string representing the target programming language for generating the SDK.

Remarks

Required

In this article
Back to top