Пример #1
0
        ServerConnectionPolicyResource IOperationSource <ServerConnectionPolicyResource> .CreateResult(Response response, CancellationToken cancellationToken)
        {
            using var document = JsonDocument.Parse(response.ContentStream);
            var data = ServerConnectionPolicyData.DeserializeServerConnectionPolicyData(document.RootElement);

            return(new ServerConnectionPolicyResource(_client, data));
        }
Пример #2
0
        public async Task <Response <ServerConnectionPolicyData> > GetAsync(string subscriptionId, string resourceGroupName, string serverName, ConnectionPolicyName connectionPolicyName, CancellationToken cancellationToken = default)
        {
            if (subscriptionId == null)
            {
                throw new ArgumentNullException(nameof(subscriptionId));
            }
            if (resourceGroupName == null)
            {
                throw new ArgumentNullException(nameof(resourceGroupName));
            }
            if (serverName == null)
            {
                throw new ArgumentNullException(nameof(serverName));
            }

            using var message = CreateGetRequest(subscriptionId, resourceGroupName, serverName, connectionPolicyName);
            await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false);

            switch (message.Response.Status)
            {
            case 200:
            {
                ServerConnectionPolicyData value = default;
                using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false);

                value = ServerConnectionPolicyData.DeserializeServerConnectionPolicyData(document.RootElement);
                return(Response.FromValue(value, message.Response));
            }