コード例 #1
0
        private GetSqlDatabaseResult(
            string?collation,

            string databaseGuid,

            string location,

            int?maxSizeBytes,

            string name,

            string status,

            Outputs.SystemDataResponse systemData,

            ImmutableDictionary <string, string>?tags,

            string type)
        {
            Collation    = collation;
            DatabaseGuid = databaseGuid;
            Location     = location;
            MaxSizeBytes = maxSizeBytes;
            Name         = name;
            Status       = status;
            SystemData   = systemData;
            Tags         = tags;
            Type         = type;
        }
コード例 #2
0
        private GetSqlPoolsV3Result(
            string currentServiceObjectiveName,

            string kind,

            string location,

            string name,

            string requestedServiceObjectiveName,

            Outputs.SkuResponse?sku,

            string sqlPoolGuid,

            string status,

            Outputs.SystemDataResponse systemData,

            ImmutableDictionary <string, string>?tags,

            string type)
        {
            CurrentServiceObjectiveName = currentServiceObjectiveName;
            Kind     = kind;
            Location = location;
            Name     = name;
            RequestedServiceObjectiveName = requestedServiceObjectiveName;
            Sku         = sku;
            SqlPoolGuid = sqlPoolGuid;
            Status      = status;
            SystemData  = systemData;
            Tags        = tags;
            Type        = type;
        }