コード例 #1
0
        private GetAccountResult(
            string accountId,

            string id,

            string location,

            string name,

            string provisioningState,

            Outputs.SystemDataResponse systemData,

            ImmutableDictionary <string, string>?tags,

            string type)
        {
            AccountId         = accountId;
            Id                = id;
            Location          = location;
            Name              = name;
            ProvisioningState = provisioningState;
            SystemData        = systemData;
            Tags              = tags;
            Type              = type;
        }
コード例 #2
0
        private GetDataPoolResult(
            string dataPoolId,

            string id,

            ImmutableArray <Outputs.DataPoolLocationResponse> locations,

            string name,

            string provisioningState,

            Outputs.SystemDataResponse systemData,

            string type)
        {
            DataPoolId        = dataPoolId;
            Id                = id;
            Locations         = locations;
            Name              = name;
            ProvisioningState = provisioningState;
            SystemData        = systemData;
            Type              = type;
        }