Show / Hide Table of Contents

Class PollRestCallConfig

The REST API configuration for polling.

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

Properties

ConfigValues

Declaration
[JsonProperty(PropertyName = "configValues")]
public ConfigValues ConfigValues { get; set; }
Property Value
Type Description
ConfigValues

MethodType

Declaration
[JsonProperty(PropertyName = "methodType")]
[JsonConverter(typeof(ResponseEnumConverter))]
public PollRestCallConfig.MethodTypeEnum? MethodType { get; set; }
Property Value
Type Description
PollRestCallConfig.MethodTypeEnum?

The REST method to use.

RequestHeaders

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

The headers for the REST call.

In this article
Back to top