Show / Hide Table of Contents

Class HttpUpdateQueryProperties

Query properties applicable to HTTP type of collection method

Inheritance
object
MetricExtensionUpdateQueryProperties
HttpUpdateQueryProperties
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.StackmonitoringService.Models
Assembly: OCI.DotNetSDK.Stackmonitoring.dll
Syntax
public class HttpUpdateQueryProperties : MetricExtensionUpdateQueryProperties

Properties

ProtocolType

Declaration
[JsonProperty(PropertyName = "protocolType")]
[JsonConverter(typeof(StringEnumConverter))]
public HttpProtocolTypes? ProtocolType { get; set; }
Property Value
Type Description
HttpProtocolTypes?

Supported protocol of resources to be associated with this metric extension. This is optional and defaults to HTTPS, which uses secure connection to the URL

ResponseContentType

Declaration
[JsonProperty(PropertyName = "responseContentType")]
[JsonConverter(typeof(StringEnumConverter))]
public HttpResponseContentTypes? ResponseContentType { get; set; }
Property Value
Type Description
HttpResponseContentTypes?

Type of content response given by the http(s) URL

ScriptDetails

Declaration
[JsonProperty(PropertyName = "scriptDetails")]
public UpdateHttpScriptFileDetails ScriptDetails { get; set; }
Property Value
Type Description
UpdateHttpScriptFileDetails

Url

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

Http(s) end point URL

In this article
Back to top