AcceptedSentSharesClient.Reinstate Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Restabelecer um compartilhamento enviado aceito revogado.
public virtual Azure.Operation<BinaryData> Reinstate (Azure.WaitUntil waitUntil, string sentShareName, string acceptedSentShareName, Azure.Core.RequestContent content, string repeatabilityRequestId = default, Azure.RequestContext context = default);
abstract member Reinstate : Azure.WaitUntil * string * string * Azure.Core.RequestContent * string * Azure.RequestContext -> Azure.Operation<BinaryData>
override this.Reinstate : Azure.WaitUntil * string * string * Azure.Core.RequestContent * string * Azure.RequestContext -> Azure.Operation<BinaryData>
Public Overridable Function Reinstate (waitUntil As WaitUntil, sentShareName As String, acceptedSentShareName As String, content As RequestContent, Optional repeatabilityRequestId As String = Nothing, Optional context As RequestContext = Nothing) As Operation(Of BinaryData)
Parâmetros
- waitUntil
- WaitUntil
Completed se o método deve aguardar para retornar até que a operação de execução prolongada seja concluída no serviço; Started se ele deve retornar depois de iniciar a operação. Para obter mais informações sobre operações de longa execução, consulte Exemplos de operação de Long-Running do Azure.Core.
- sentShareName
- String
O nome do compartilhamento enviado.
- acceptedSentShareName
- String
O nome do compartilhamento enviado aceito.
- content
- RequestContent
O conteúdo a ser enviado como o corpo da solicitação. Os detalhes do esquema do corpo da solicitação estão na seção Comentários abaixo.
- repeatabilityRequestId
- String
Se especificado, o cliente direciona que a solicitação é repetível; ou seja, que o cliente pode fazer a solicitação várias vezes com a mesma Repeatability-Request-Id e obter uma resposta apropriada sem que o servidor execute a solicitação várias vezes. O valor de Repeatability-Request-Id é uma cadeia de caracteres opaca que representa um identificador globalmente exclusivo e gerado pelo cliente para todos os tempos para a solicitação. É recomendável usar UUIDs da versão 4 (aleatória).
- context
- RequestContext
O contexto de solicitação, que pode substituir os comportamentos padrão do pipeline do cliente por chamada.
Retornos
O Operation<T> do serviço que conterá um BinaryData objeto depois que a operação assíncrona no serviço for concluída. Os detalhes do esquema do corpo do valor final da operação estão na seção Comentários abaixo.
Exceções
sentShareName
, acceptedSentShareName
ou content
é nulo.
sentShareName
ou acceptedSentShareName
é uma cadeia de caracteres vazia e esperava-se que não estivesse vazia.
O serviço retornou um código de status sem êxito.
Exemplos
Este exemplo mostra como chamar Restabelecer com os parâmetros necessários e o conteúdo da solicitação e como analisar o resultado.
var credential = new DefaultAzureCredential();
var client = new AcceptedSentSharesClient("<https://my-service.azure.com>", credential);
var data = new {
shareKind = "InPlace",
properties = new {},
};
var operation = client.Reinstate(WaitUntil.Completed, "<sentShareName>", "<acceptedSentShareName>", RequestContent.Create(data));
BinaryData data = operation.WaitForCompletion();
JsonElement result = JsonDocument.Parse(data.ToStream()).RootElement;
Console.WriteLine(result.ToString());
Este exemplo mostra como chamar Restabelecer com todos os parâmetros e conteúdo da solicitação e como analisar o resultado.
var credential = new DefaultAzureCredential();
var client = new AcceptedSentSharesClient("<https://my-service.azure.com>", credential);
var data = new {
shareKind = "InPlace",
properties = new {
expirationDate = "<2022-05-10T14:57:31.2311892-04:00>",
},
};
var operation = client.Reinstate(WaitUntil.Completed, "<sentShareName>", "<acceptedSentShareName>", RequestContent.Create(data), "<repeatabilityRequestId>");
BinaryData data = operation.WaitForCompletion();
JsonElement result = JsonDocument.Parse(data.ToStream()).RootElement;
Console.WriteLine(result.GetProperty("id").ToString());
Console.WriteLine(result.GetProperty("name").ToString());
Console.WriteLine(result.GetProperty("type").ToString());
Console.WriteLine(result.GetProperty("shareKind").ToString());
Comentários
Restabelecer um compartilhamento enviado revogado aceito
Abaixo está o esquema JSON para os conteúdos de solicitação e resposta.
Corpo da solicitação:
InPlaceAcceptedSentShare
Esquema paraInPlaceAcceptedSentShare
:{
shareKind: InPlace, # Required. Defines the supported types for share.
id: string, # Optional. The resource id of the resource.
name: string, # Optional. Name of the resource.
type: string, # Optional. Type of the resource.
properties: {
createdAt: string (ISO 8601 Format), # Optional. created at
expirationDate: string (ISO 8601 Format), # Optional. Expiration date of the received share in UTC format
receivedShareStatus: "Active" | "Reinstating" | "Revoked" | "Revoking" | "RevokeFailed" | "ReinstateFailed" | "SourceDeleted", # Optional. received share status
receiverEmail: string, # Optional. Email of the user/receiver who received the sent share invitation and created the received share
receiverName: string, # Optional. Name of the user/receiver who received the sent share invitation and created the received share
receiverTargetObjectId: string, # Optional. Receiver's target object id
receiverTenantName: string, # Optional. Tenant name of the user/receiver who received the sent share invitation and created the received share
senderEmail: string, # Optional. Email of the sender who created the sent share invitation
senderName: string, # Optional. Name of the sender who created the sent share invitation
senderTenantName: string, # Optional. Tenant name of the sender who created the sent share invitation
sharedAt: string (ISO 8601 Format), # Optional. Shared at
}, # Required. Properties of in place accepted sent share.
}
Corpo da resposta:
InPlaceAcceptedSentShare
Esquema paraInPlaceAcceptedSentShare
:{
shareKind: InPlace, # Required. Defines the supported types for share.
id: string, # Optional. The resource id of the resource.
name: string, # Optional. Name of the resource.
type: string, # Optional. Type of the resource.
properties: {
createdAt: string (ISO 8601 Format), # Optional. created at
expirationDate: string (ISO 8601 Format), # Optional. Expiration date of the received share in UTC format
receivedShareStatus: "Active" | "Reinstating" | "Revoked" | "Revoking" | "RevokeFailed" | "ReinstateFailed" | "SourceDeleted", # Optional. received share status
receiverEmail: string, # Optional. Email of the user/receiver who received the sent share invitation and created the received share
receiverName: string, # Optional. Name of the user/receiver who received the sent share invitation and created the received share
receiverTargetObjectId: string, # Optional. Receiver's target object id
receiverTenantName: string, # Optional. Tenant name of the user/receiver who received the sent share invitation and created the received share
senderEmail: string, # Optional. Email of the sender who created the sent share invitation
senderName: string, # Optional. Name of the sender who created the sent share invitation
senderTenantName: string, # Optional. Tenant name of the sender who created the sent share invitation
sharedAt: string (ISO 8601 Format), # Optional. Shared at
}, # Required. Properties of in place accepted sent share.
}
Aplica-se a
Azure SDK for .NET