Lingua

CodeTransparencyClient.CreateEntry Method

Definition

Overloads

Name Description
CreateEntry(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.
CreateEntry(WaitUntil, BinaryData, CancellationToken)
Obsolete.

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

CreateEntry(BinaryData, Nullable<Boolean>, CancellationToken)

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

CreateEntry(RequestContent, Nullable<Boolean>, RequestContext)

Source:
CodeTransparencyClient.cs
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 CreateEntry(Azure.Core.RequestContent content, bool? waitForCommit = default, Azure.RequestContext context = default);
abstract member CreateEntry : Azure.Core.RequestContent * Nullable<bool> * Azure.RequestContext -> Azure.Response
override this.CreateEntry : Azure.Core.RequestContent * Nullable<bool> * Azure.RequestContext -> Azure.Response
Public Overridable Function CreateEntry (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

CreateEntry(WaitUntil, BinaryData, CancellationToken)

Source:
CodeTransparencyClient.cs

Caution

Use CreateEntry(BinaryData, bool, CancellationToken) instead.

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

[System.Obsolete("Use CreateEntry(BinaryData, bool, CancellationToken) instead.")]
public virtual Azure.Operation<BinaryData> CreateEntry(Azure.WaitUntil waitUntil, BinaryData body, System.Threading.CancellationToken cancellationToken = default);
[<System.Obsolete("Use CreateEntry(BinaryData, bool, CancellationToken) instead.")>]
abstract member CreateEntry : Azure.WaitUntil * BinaryData * System.Threading.CancellationToken -> Azure.Operation<BinaryData>
override this.CreateEntry : Azure.WaitUntil * BinaryData * System.Threading.CancellationToken -> Azure.Operation<BinaryData>
Public Overridable Function CreateEntry (waitUntil As WaitUntil, body As BinaryData, Optional cancellationToken As CancellationToken = Nothing) As Operation(Of BinaryData)

Parameters

waitUntil
WaitUntil

Completed if the method should wait to return until the long-running operation has completed on the service; Started if it should return after starting the operation. For more information on long-running operations, please see Azure.Core Long-Running Operation samples.

body
BinaryData

CoseSign1 signature envelope.

cancellationToken
CancellationToken

The cancellation token to use.

Returns

Attributes

Exceptions

body is null.

Applies to

CreateEntry(BinaryData, Nullable<Boolean>, CancellationToken)

Source:
CodeTransparencyClient.cs
Source:
CodeTransparencyClient.cs

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

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

Applies to