CodeTransparencyClient.CreateEntryV09 Method

Definition

Overloads

Name Description
CreateEntryV09(RequestContent, Nullable<Boolean>, RequestContext)

[Protocol Method] Post an entry to be registered on the CodeTransparency instance, mandatory in IETF SCITT draft

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
CreateEntryV09(BinaryData, Nullable<Boolean>, CancellationToken)

Post an entry to be registered on the CodeTransparency instance, mandatory in IETF SCITT draft.

CreateEntryV09(RequestContent, Nullable<Boolean>, RequestContext)

Source:
CodeTransparencyClient.cs

[Protocol Method] Post an entry to be registered on the CodeTransparency instance, mandatory in IETF SCITT draft

  • This protocol method allows explicit creation of the request and processing of the response for advanced scenarios.
public virtual Azure.Response CreateEntryV09(Azure.Core.RequestContent content, bool? waitForCommit = default, Azure.RequestContext context = default);
abstract member CreateEntryV09 : Azure.Core.RequestContent * Nullable<bool> * Azure.RequestContext -> Azure.Response
override this.CreateEntryV09 : Azure.Core.RequestContent * Nullable<bool> * Azure.RequestContext -> Azure.Response
Public Overridable Function CreateEntryV09 (content As RequestContent, Optional waitForCommit As Nullable(Of Boolean) = Nothing, Optional context As RequestContext = Nothing) As Response

Parameters

content
RequestContent

The content to send as the body of the request.

waitForCommit
Nullable<Boolean>

If true, waits for the entry to be committed before returning. Returns 201 with receipt or 503 on rollback.

context
RequestContext

The request options, which can override default behaviors of the client pipeline on a per-call basis.

Returns

The response returned from the service.

Exceptions

content is null.

Service returned a non-success status code.

Applies to

CreateEntryV09(BinaryData, Nullable<Boolean>, CancellationToken)

Source:
CodeTransparencyClient.cs

Post an entry to be registered on the CodeTransparency instance, mandatory in IETF SCITT draft.

public virtual Azure.Response<BinaryData> CreateEntryV09(BinaryData body, bool? waitForCommit = default, System.Threading.CancellationToken cancellationToken = default);
abstract member CreateEntryV09 : BinaryData * Nullable<bool> * System.Threading.CancellationToken -> Azure.Response<BinaryData>
override this.CreateEntryV09 : BinaryData * Nullable<bool> * System.Threading.CancellationToken -> Azure.Response<BinaryData>
Public Overridable Function CreateEntryV09 (body As BinaryData, Optional waitForCommit As Nullable(Of Boolean) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Response(Of BinaryData)

Parameters

body
BinaryData

CoseSign1 signature envelope.

waitForCommit
Nullable<Boolean>

If true, waits for the entry to be committed before returning. Returns 201 with receipt or 503 on rollback.

cancellationToken
CancellationToken

The cancellation token that can be used to cancel the operation.

Returns

Exceptions

body is null.

Service returned a non-success status code.

Applies to