Exemplo n.º 1
0
 internal DatastorePropertiesResource(string id, string name, string type, DatastoreProperties properties, SystemData systemData)
 {
     Id         = id;
     Name       = name;
     Type       = type;
     Properties = properties;
     SystemData = systemData;
 }
Exemplo n.º 2
0
        public DatastorePropertiesResource(DatastoreProperties properties)
        {
            if (properties == null)
            {
                throw new ArgumentNullException(nameof(properties));
            }

            Properties = properties;
        }
Exemplo n.º 3
0
        internal static DatastorePropertiesResource DeserializeDatastorePropertiesResource(JsonElement element)
        {
            Optional <string>     id         = default;
            Optional <string>     name       = default;
            Optional <string>     type       = default;
            DatastoreProperties   properties = default;
            Optional <SystemData> systemData = 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("properties"))
                {
                    properties = DatastoreProperties.DeserializeDatastoreProperties(property.Value);
                    continue;
                }
                if (property.NameEquals("systemData"))
                {
                    if (property.Value.ValueKind == JsonValueKind.Null)
                    {
                        property.ThrowNonNullablePropertyIsNull();
                        continue;
                    }
                    systemData = SystemData.DeserializeSystemData(property.Value);
                    continue;
                }
            }
            return(new DatastorePropertiesResource(id.Value, name.Value, type.Value, properties, systemData.Value));
        }