DdosProtectionPlan IOperationSource <DdosProtectionPlan> .CreateResult(Response response, CancellationToken cancellationToken)
        {
            using var document = JsonDocument.Parse(response.ContentStream);
            var data = DdosProtectionPlanData.DeserializeDdosProtectionPlanData(document.RootElement);

            return(new DdosProtectionPlan(_client, data));
        }
示例#2
0
        public async Task <Response <DdosProtectionPlanData> > GetAsync(string subscriptionId, string resourceGroupName, string ddosProtectionPlanName, CancellationToken cancellationToken = default)
        {
            if (subscriptionId == null)
            {
                throw new ArgumentNullException(nameof(subscriptionId));
            }
            if (resourceGroupName == null)
            {
                throw new ArgumentNullException(nameof(resourceGroupName));
            }
            if (ddosProtectionPlanName == null)
            {
                throw new ArgumentNullException(nameof(ddosProtectionPlanName));
            }

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

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

                value = DdosProtectionPlanData.DeserializeDdosProtectionPlanData(document.RootElement);
                return(Response.FromValue(value, message.Response));
            }