コード例 #1
0
 internal CassandraKeyspaceGetResults(string id, string name, string type, string location, IDictionary <string, string> tags, CassandraKeyspaceGetPropertiesResource resource, CassandraKeyspaceGetPropertiesOptions options) : base(id, name, type, location, tags)
 {
     Resource = resource;
     Options  = options;
 }
        internal static CassandraKeyspaceGetResults DeserializeCassandraKeyspaceGetResults(JsonElement element)
        {
            Optional <string> id       = default;
            Optional <string> name     = default;
            Optional <string> type     = default;
            Optional <string> location = default;
            Optional <IDictionary <string, string> >          tags     = default;
            Optional <CassandraKeyspaceGetPropertiesResource> resource = default;
            Optional <CassandraKeyspaceGetPropertiesOptions>  options  = default;

            foreach (var property in element.EnumerateObject())
            {
                if (property.NameEquals("id"))
                {
                    id = property.Value.GetString();
                    continue;
                }
                if (property.NameEquals("name"))
                {
                    name = property.Value.GetString();
                    continue;
                }
                if (property.NameEquals("type"))
                {
                    type = property.Value.GetString();
                    continue;
                }
                if (property.NameEquals("location"))
                {
                    location = property.Value.GetString();
                    continue;
                }
                if (property.NameEquals("tags"))
                {
                    if (property.Value.ValueKind == JsonValueKind.Null)
                    {
                        property.ThrowNonNullablePropertyIsNull();
                        continue;
                    }
                    Dictionary <string, string> dictionary = new Dictionary <string, string>();
                    foreach (var property0 in property.Value.EnumerateObject())
                    {
                        dictionary.Add(property0.Name, property0.Value.GetString());
                    }
                    tags = dictionary;
                    continue;
                }
                if (property.NameEquals("properties"))
                {
                    if (property.Value.ValueKind == JsonValueKind.Null)
                    {
                        property.ThrowNonNullablePropertyIsNull();
                        continue;
                    }
                    foreach (var property0 in property.Value.EnumerateObject())
                    {
                        if (property0.NameEquals("resource"))
                        {
                            if (property0.Value.ValueKind == JsonValueKind.Null)
                            {
                                property0.ThrowNonNullablePropertyIsNull();
                                continue;
                            }
                            resource = CassandraKeyspaceGetPropertiesResource.DeserializeCassandraKeyspaceGetPropertiesResource(property0.Value);
                            continue;
                        }
                        if (property0.NameEquals("options"))
                        {
                            if (property0.Value.ValueKind == JsonValueKind.Null)
                            {
                                property0.ThrowNonNullablePropertyIsNull();
                                continue;
                            }
                            options = CassandraKeyspaceGetPropertiesOptions.DeserializeCassandraKeyspaceGetPropertiesOptions(property0.Value);
                            continue;
                        }
                    }
                    continue;
                }
            }
            return(new CassandraKeyspaceGetResults(id.Value, name.Value, type.Value, location.Value, Optional.ToDictionary(tags), resource.Value, options.Value));
        }