Share via


RequestReportRecordContract Constructors

Definition

Overloads

RequestReportRecordContract()

Initializes a new instance of the RequestReportRecordContract class.

RequestReportRecordContract(String, String, String, String, String, String, String, String, Nullable<Int32>, Nullable<Int32>, Nullable<DateTime>, String, Nullable<Double>, Nullable<Double>, String, String, String, Nullable<Int32>)

Initializes a new instance of the RequestReportRecordContract class.

RequestReportRecordContract()

Initializes a new instance of the RequestReportRecordContract class.

public RequestReportRecordContract ();
Public Sub New ()

Applies to

RequestReportRecordContract(String, String, String, String, String, String, String, String, Nullable<Int32>, Nullable<Int32>, Nullable<DateTime>, String, Nullable<Double>, Nullable<Double>, String, String, String, Nullable<Int32>)

Initializes a new instance of the RequestReportRecordContract class.

public RequestReportRecordContract (string apiId = default, string operationId = default, string productId = default, string userId = default, string method = default, string url = default, string ipAddress = default, string backendResponseCode = default, int? responseCode = default, int? responseSize = default, DateTime? timestamp = default, string cache = default, double? apiTime = default, double? serviceTime = default, string apiRegion = default, string subscriptionId = default, string requestId = default, int? requestSize = default);
new Microsoft.Azure.Management.ApiManagement.Models.RequestReportRecordContract : string * string * string * string * string * string * string * string * Nullable<int> * Nullable<int> * Nullable<DateTime> * string * Nullable<double> * Nullable<double> * string * string * string * Nullable<int> -> Microsoft.Azure.Management.ApiManagement.Models.RequestReportRecordContract
Public Sub New (Optional apiId As String = Nothing, Optional operationId As String = Nothing, Optional productId As String = Nothing, Optional userId As String = Nothing, Optional method As String = Nothing, Optional url As String = Nothing, Optional ipAddress As String = Nothing, Optional backendResponseCode As String = Nothing, Optional responseCode As Nullable(Of Integer) = Nothing, Optional responseSize As Nullable(Of Integer) = Nothing, Optional timestamp As Nullable(Of DateTime) = Nothing, Optional cache As String = Nothing, Optional apiTime As Nullable(Of Double) = Nothing, Optional serviceTime As Nullable(Of Double) = Nothing, Optional apiRegion As String = Nothing, Optional subscriptionId As String = Nothing, Optional requestId As String = Nothing, Optional requestSize As Nullable(Of Integer) = Nothing)

Parameters

apiId
String

API identifier path. /apis/{apiId}

operationId
String

Operation identifier path. /apis/{apiId}/operations/{operationId}

productId
String

Product identifier path. /products/{productId}

userId
String

User identifier path. /users/{userId}

method
String

The HTTP method associated with this request..

url
String

The full URL associated with this request.

ipAddress
String

The client IP address associated with this request.

backendResponseCode
String

The HTTP status code received by the gateway as a result of forwarding this request to the backend.

responseCode
Nullable<Int32>

The HTTP status code returned by the gateway.

responseSize
Nullable<Int32>

The size of the response returned by the gateway.

timestamp
Nullable<DateTime>

The date and time when this request was received by the gateway in ISO 8601 format.

cache
String

Specifies if response cache was involved in generating the response. If the value is none, the cache was not used. If the value is hit, cached response was returned. If the value is miss, the cache was used but lookup resulted in a miss and request was fulfilled by the backend.

apiTime
Nullable<Double>

The total time it took to process this request.

serviceTime
Nullable<Double>

he time it took to forward this request to the backend and get the response back.

apiRegion
String

Azure region where the gateway that processed this request is located.

subscriptionId
String

Subscription identifier path. /subscriptions/{subscriptionId}

requestId
String

Request Identifier.

requestSize
Nullable<Int32>

The size of this request..

Applies to